diff --git a/app/assets/javascripts/application.js.erb b/app/assets/javascripts/application.js.erb index fe1faa9ecb..34806b7e97 100644 --- a/app/assets/javascripts/application.js.erb +++ b/app/assets/javascripts/application.js.erb @@ -35,7 +35,6 @@ //= require breadcrumb //= require findDomElement //= require settings -//= require tab_handling //= require openproject_plugins //= require versions //= require forums diff --git a/app/assets/javascripts/tab_handling.js b/app/assets/javascripts/tab_handling.js deleted file mode 100644 index 73ffb8f3b6..0000000000 --- a/app/assets/javascripts/tab_handling.js +++ /dev/null @@ -1,103 +0,0 @@ -//-- copyright -// OpenProject is an open source project management software. -// Copyright (C) 2012-2020 the OpenProject GmbH -// -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License version 3. -// -// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -// Copyright (C) 2006-2017 Jean-Philippe Lang -// Copyright (C) 2010-2013 the ChiliProject Team -// -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -// -// See docs/COPYRIGHT.rdoc for more details. -//++ - -/* - This module is responsible to manage tabed views in OpenProject, - which you can observe, for example, in the settings page. - Used by view/common/_tabs.html.erb in inline javascript. -*/ - -/* - There are hidden buttons in the common/_tabs.html.erb view, - which shall allow the user to scrolls through the tab captions. - Those buttons are only visible if there is not enough room to - display all tab captions at once. -*/ - -// Check if there is enough room to display all tab captions -// and show/hide the tabButtons accordingly. -function displayTabsButtons() { - var lis; - var tabsWidth = 0; - var el; - jQuery('div.tabs').each(function() { - el = jQuery(this); - lis = el.find('ul').children(); - lis.each(function(){ - if (jQuery(this).is(':visible')) { - tabsWidth += jQuery(this).width() + 6; - } - }); - if ((tabsWidth < el.width() - 60) && (lis.first().is(':visible'))) { - el.find('div.tabs-buttons').hide(); - } else { - el.find('div.tabs-buttons').show(); - } - }); -} - -// scroll the tab caption list right -function moveTabRight() { - var el = jQuery(this); - var lis = el.parents('div.tabs').first().find('ul').children(); - var tabsWidth = 0; - var i = 0; - lis.each(function() { - if (jQuery(this).is(':visible')) { - tabsWidth += jQuery(this).width() + 6; - } - }); - if (tabsWidth < jQuery(el).parents('div.tabs').first().width() - 60) { return; } - while (i 0) { - lis.eq(i-1).show(); - } -} - -jQuery(function($) { - if (jQuery('div.tabs').length === 0) { - return; - } - - // Show tabs - displayTabsButtons(); - $(window).resize(function() { displayTabsButtons(); }); - - $('.tab-left').click(moveTabLeft); - $('.tab-right').click(moveTabRight); -}); - diff --git a/app/assets/stylesheets/content/_index.sass b/app/assets/stylesheets/content/_index.sass index 5c856debf1..ba4924c4ec 100644 --- a/app/assets/stylesheets/content/_index.sass +++ b/app/assets/stylesheets/content/_index.sass @@ -53,7 +53,6 @@ @import content/ajax_indicator @import content/tooltips @import content/tabs -@import content/old_tabs @import content/autocomplete @import content/diff @import content/projects_list diff --git a/app/assets/stylesheets/content/_old_tabs.sass b/app/assets/stylesheets/content/_old_tabs.sass deleted file mode 100644 index c1d4f61542..0000000000 --- a/app/assets/stylesheets/content/_old_tabs.sass +++ /dev/null @@ -1,94 +0,0 @@ -//-- copyright -// OpenProject is an open source project management software. -// Copyright (C) 2012-2020 the OpenProject GmbH -// -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License version 3. -// -// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -// Copyright (C) 2006-2017 Jean-Philippe Lang -// Copyright (C) 2010-2013 the ChiliProject Team -// -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -// -// See docs/COPYRIGHT.rdoc for more details. -//++ - -/***** Tabs **** - -#content .tabs, -.tabs--container - position: relative - height: 2.6em - margin-bottom: 1.2em - z-index: 1 - overflow: hidden - // necessary to overwrite foundations styling of .tabs - display: block - - ul - position: relative - white-space: nowrap - margin-top: 0.75rem - margin-left: 0 - bottom: 0 - padding-left: 1em - border-bottom: 1px solid #bbbbbb - overflow: hidden - li - display: inline-block - list-style-type: none - white-space: nowrap - margin-right: 4px - background: #fff - margin-bottom: -1px - a - display: block - font-size: 0.9em - text-decoration: none - line-height: 1.3em - padding: 4px 6px 4px 6px - border: 1px solid #ccc - background-color: #eeeeee - color: #333 - font-weight: bold - &:hover - background-color: #ffffdd - text-decoration: none - &.selected - background-color: #fff - &.-disabled - color: #999 - -div.tabs-buttons - position: absolute - right: 0 - bottom: 4px - -button - &.tab-left, &.tab-right - font-size: 0.9em - cursor: pointer - height: 24px - border: 1px solid #ccc - border-bottom: 1px solid #bbbbbb - position: absolute - padding: 4px - width: 20px - bottom: -1px - &.tab-left - right: 20px - &.tab-right - right: 0 diff --git a/app/assets/stylesheets/content/_search.sass b/app/assets/stylesheets/content/_search.sass index 99e3b9c7d1..1bd110a85d 100644 --- a/app/assets/stylesheets/content/_search.sass +++ b/app/assets/stylesheets/content/_search.sass @@ -36,6 +36,3 @@ div#search-results-counts .top-menu-search--wrapper float: left - -.global-search--tabs - margin-bottom: 1rem diff --git a/app/assets/stylesheets/content/_tabs.lsg b/app/assets/stylesheets/content/_tabs.lsg new file mode 100644 index 0000000000..ae839fe282 --- /dev/null +++ b/app/assets/stylesheets/content/_tabs.lsg @@ -0,0 +1,24 @@ +# Scrollable tabs + +``` +
+ + + +
+``` diff --git a/app/assets/stylesheets/content/_tabs.sass b/app/assets/stylesheets/content/_tabs.sass index 32dbec4c6a..346f043aa6 100644 --- a/app/assets/stylesheets/content/_tabs.sass +++ b/app/assets/stylesheets/content/_tabs.sass @@ -69,12 +69,11 @@ box-sizing: content-box height: 40px border-bottom: 1px solid #DDDDDD + margin-bottom: 1rem .tabrow display: block overflow-x: auto white-space: nowrap - // Padding for hiding the scroll bar - padding-bottom: 17px height: 57px li display: inline-block @@ -102,3 +101,7 @@ &:hover @include varprop(color, content-link-color) cursor: pointer + +.tab-content + .form--section + padding: 0 diff --git a/app/controllers/custom_fields_controller.rb b/app/controllers/custom_fields_controller.rb index 0c1acf62f0..b3cdbaa343 100644 --- a/app/controllers/custom_fields_controller.rb +++ b/app/controllers/custom_fields_controller.rb @@ -31,6 +31,8 @@ class CustomFieldsController < ApplicationController layout 'admin' + helper_method :gon + before_action :require_admin before_action :find_custom_field, only: %i(edit update destroy move delete_option) before_action :prepare_custom_option_position, only: %i(update create) diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb index 66e5a29f44..4288ebf65e 100644 --- a/app/controllers/groups_controller.rb +++ b/app/controllers/groups_controller.rb @@ -31,6 +31,8 @@ class GroupsController < ApplicationController include GroupsHelper layout 'admin' + helper_method :gon + before_action :require_admin before_action :find_group, only: [:destroy, :show, :create_memberships, :destroy_membership, diff --git a/app/controllers/settings_controller.rb b/app/controllers/settings_controller.rb index 25b7f2d0e8..5d8d3d7eb5 100644 --- a/app/controllers/settings_controller.rb +++ b/app/controllers/settings_controller.rb @@ -30,6 +30,8 @@ class SettingsController < ApplicationController layout 'admin' + helper_method :gon + before_action :require_admin current_menu_item [:index, :edit] do diff --git a/app/controllers/time_entries/reports_controller.rb b/app/controllers/time_entries/reports_controller.rb index 22ead31413..f3b3283d4c 100644 --- a/app/controllers/time_entries/reports_controller.rb +++ b/app/controllers/time_entries/reports_controller.rb @@ -28,6 +28,8 @@ #++ class TimeEntries::ReportsController < ApplicationController + helper_method :gon + menu_item :issues before_action :find_optional_project before_action :load_available_criterias @@ -39,6 +41,9 @@ class TimeEntries::ReportsController < ApplicationController menu_item :time_entries def show + # Set tab param to recognize correct selected tab + params[:tab] = params[:tab] || 'report' + @criterias = params[:criterias] || [] @criterias = @criterias.select { |criteria| @available_criterias.has_key? criteria } @criterias.uniq! diff --git a/app/controllers/timelog_controller.rb b/app/controllers/timelog_controller.rb index db3e0a0fe1..883f24ab8f 100644 --- a/app/controllers/timelog_controller.rb +++ b/app/controllers/timelog_controller.rb @@ -29,6 +29,8 @@ #++ class TimelogController < ApplicationController + helper_method :gon + before_action :find_work_package, only: %i[new create] before_action :find_project, only: %i[new create] before_action :find_time_entry, only: %i[show edit update destroy] @@ -44,6 +46,9 @@ class TimelogController < ApplicationController menu_item :time_entries def index + # Set tab param to recognize correct selected tab + params[:tab] = params[:tab] || 'details' + sort_init 'spent_on', 'desc' sort_update 'spent_on' => 'spent_on', 'user' => 'user_id', diff --git a/app/controllers/types_controller.rb b/app/controllers/types_controller.rb index 16f88ffb83..b1d20e6149 100644 --- a/app/controllers/types_controller.rb +++ b/app/controllers/types_controller.rb @@ -34,6 +34,7 @@ class TypesController < ApplicationController layout 'admin' before_action :require_admin + helper_method :gon def index @types = ::Type.page(page_param).per_page(per_page_param) diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb index a78236f606..96d5982db5 100644 --- a/app/helpers/custom_fields_helper.rb +++ b/app/helpers/custom_fields_helper.rb @@ -31,14 +31,54 @@ module CustomFieldsHelper def custom_fields_tabs [ - { name: 'WorkPackageCustomField', partial: 'custom_fields/tab', label: :label_work_package_plural }, - { name: 'TimeEntryCustomField', partial: 'custom_fields/tab', label: :label_spent_time }, - { name: 'ProjectCustomField', partial: 'custom_fields/tab', label: :label_project_plural }, - { name: 'VersionCustomField', partial: 'custom_fields/tab', label: :label_version_plural }, - { name: 'UserCustomField', partial: 'custom_fields/tab', label: :label_user_plural }, - { name: 'GroupCustomField', partial: 'custom_fields/tab', label: :label_group_plural }, - { name: 'TimeEntryActivityCustomField', partial: 'custom_fields/tab', label: TimeEntryActivity::OptionName }, - { name: 'IssuePriorityCustomField', partial: 'custom_fields/tab', label: IssuePriority::OptionName } + { + name: 'WorkPackageCustomField', + partial: 'custom_fields/tab', + path: custom_fields_path(tab: :WorkPackageCustomField), + label: :label_work_package_plural + }, + { + name: 'TimeEntryCustomField', + partial: 'custom_fields/tab', + path: custom_fields_path(tab: :TimeEntryCustomField), + label: :label_spent_time + }, + { + name: 'ProjectCustomField', + partial: 'custom_fields/tab', + path: custom_fields_path(tab: :ProjectCustomField), + label: :label_project_plural + }, + { + name: 'VersionCustomField', + partial: 'custom_fields/tab', + path: custom_fields_path(tab: :VersionCustomField), + label: :label_version_plural + }, + { + name: 'UserCustomField', + partial: 'custom_fields/tab', + path: custom_fields_path(tab: :UserCustomField), + label: :label_user_plural + }, + { + name: 'GroupCustomField', + partial: 'custom_fields/tab', + path: custom_fields_path(tab: :GroupCustomField), + label: :label_group_plural + }, + { + name: 'TimeEntryActivityCustomField', + partial: 'custom_fields/tab', + path: custom_fields_path(tab: :TimeEntryActivityCustomField), + label: TimeEntryActivity::OptionName + }, + { + name: 'IssuePriorityCustomField', + partial: 'custom_fields/tab', + path: custom_fields_path(tab: :IssuePriorityCustomField), + label: IssuePriority::OptionName + } ] end diff --git a/app/helpers/groups_helper.rb b/app/helpers/groups_helper.rb index 0064cf9ad3..3244a4605c 100644 --- a/app/helpers/groups_helper.rb +++ b/app/helpers/groups_helper.rb @@ -29,9 +29,25 @@ module GroupsHelper def group_settings_tabs - [{ name: 'general', partial: 'groups/general', label: :label_general }, - { name: 'users', partial: 'groups/users', label: :label_user_plural }, - { name: 'memberships', partial: 'groups/memberships', label: :label_project_plural } + [ + { + name: 'general', + partial: 'groups/general', + path: edit_group_path(@group), + label: :label_general + }, + { + name: 'users', + partial: 'groups/users', + path: edit_group_path(@group, tab: :users), + label: :label_user_plural + }, + { + name: 'memberships', + partial: 'groups/memberships', + path: edit_group_path(@group, tab: :memberships), + label: :label_project_plural + } ] end diff --git a/app/helpers/settings_helper.rb b/app/helpers/settings_helper.rb index b6c2fbc71a..0ca213c487 100644 --- a/app/helpers/settings_helper.rb +++ b/app/helpers/settings_helper.rb @@ -34,12 +34,42 @@ module SettingsHelper def administration_settings_tabs [ - { name: 'general', partial: 'settings/general', label: :label_general }, - { name: 'display', partial: 'settings/display', label: :label_display }, - { name: 'projects', partial: 'settings/projects', label: :label_project_plural }, - { name: 'notifications', partial: 'settings/notifications', label: Proc.new { User.human_attribute_name(:mail_notification) } }, - { name: 'mail_handler', partial: 'settings/mail_handler', label: :label_incoming_emails }, - { name: 'repositories', partial: 'settings/repositories', label: :label_repository_plural } + { + name: 'general', + partial: 'settings/general', + path: settings_path, + label: :label_general + }, + { + name: 'display', + partial: 'settings/display', + path: settings_path(tab: :display), + label: :label_display + }, + { + name: 'projects', + partial: 'settings/projects', + path: settings_path(tab: :projects), + label: :label_project_plural + }, + { + name: 'notifications', + partial: 'settings/notifications', + path: settings_path(tab: :notifications), + label: :label_mail_notification + }, + { + name: 'mail_handler', + partial: 'settings/mail_handler', + path: settings_path(tab: :mail_handler), + label: :label_incoming_emails + }, + { + name: 'repositories', + partial: 'settings/repositories', + path: settings_path(tab: :repositories), + label: :label_repository_plural + } ] end diff --git a/app/helpers/tabs_helper.rb b/app/helpers/tabs_helper.rb index 0d063a9b4f..3b9018fe34 100644 --- a/app/helpers/tabs_helper.rb +++ b/app/helpers/tabs_helper.rb @@ -29,18 +29,21 @@ module TabsHelper # Renders tabs and their content - def render_tabs(tabs) + def render_tabs(tabs, form = nil) if tabs.any? selected_tab = tabs.detect { |t| t[:name] == params[:tab] } if params[:tab].present? - render partial: 'common/tabs', locals: { tabs: tabs, selected_tab: selected_tab || tabs.first } + render partial: 'common/tabs', locals: { f: form, tabs: tabs, selected_tab: selected_tab || tabs.first } else content_tag 'p', l(:label_no_data), class: 'nodata' end end # Render tabs from the ui/extensible tabs manager - def render_extensible_tabs(key) - tabs = ::OpenProject::Ui::ExtensibleTabs.enabled_tabs(key) + def render_extensible_tabs(key, params = {}) + tabs = ::OpenProject::Ui::ExtensibleTabs.enabled_tabs(key).map do |tab| + path = tab[:path].respond_to?(:call) ? instance_exec(params, &tab[:path]) : tab[:path] + tab.dup.merge path: path + end render_tabs(tabs) end end diff --git a/app/helpers/timelog_helper.rb b/app/helpers/timelog_helper.rb index 0fa49e08b1..fe528bed46 100644 --- a/app/helpers/timelog_helper.rb +++ b/app/helpers/timelog_helper.rb @@ -30,6 +30,23 @@ module TimelogHelper include ApplicationHelper + def time_entry_tabs + [ + { + name: 'details', + partial: 'timelog/time_entry_tab', + path: polymorphic_time_entries_path(@issue || @project), + label: :label_details + }, + { + name: 'report', + partial: 'time_entries/reports/reports_tab', + path: polymorphic_time_entries_report_path(@issue || @project), + label: :label_report + } + ] + end + # Returns a collection of activities for a select field. time_entry # is optional and will be used to check if the selected TimeEntryActivity # is active. diff --git a/app/helpers/types_helper.rb b/app/helpers/types_helper.rb index b1ed1b11d0..2723981592 100644 --- a/app/helpers/types_helper.rb +++ b/app/helpers/types_helper.rb @@ -28,6 +28,29 @@ #++ module ::TypesHelper + def types_tabs + [ + { + name: 'settings', + partial: 'types/form/settings', + path: edit_type_tab_path(id: @type.id, tab: :settings), + label: 'types.edit.settings' + }, + { + name: 'form_configuration', + partial: 'types/form/form_configuration', + path: edit_type_tab_path(id: @type.id, tab: :form_configuration), + label: 'types.edit.form_configuration' + }, + { + name: 'projects', + partial: 'types/form/projects', + path: edit_type_tab_path(id: @type.id, tab: :projects), + label: 'types.edit.projects' + } + ] + end + def icon_for_type(type) return unless type diff --git a/app/views/common/_tabs.html.erb b/app/views/common/_tabs.html.erb index c8c14bf4f0..2d2d2aa290 100644 --- a/app/views/common/_tabs.html.erb +++ b/app/views/common/_tabs.html.erb @@ -26,30 +26,14 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See docs/COPYRIGHT.rdoc for more details. ++#%> -
- - -
+<% gon.contentTabs = { tabs: tabs.to_json.html_safe, selected: selected_tab.to_json.html_safe } %> +<%= nonced_javascript_tag do %> + <%= include_gon(need_tag: false) -%> +<% end %> + + <%= content_tag 'div', - render(partial: selected_tab[:partial], locals: { tab: selected_tab } ), + render(partial: selected_tab[:partial], locals: { f: f, tab: selected_tab } ), id: "tab-content-#{selected_tab[:name]}", class: 'tab-content' %> diff --git a/app/views/time_entries/reports/_reports_tab.html.erb b/app/views/time_entries/reports/_reports_tab.html.erb new file mode 100644 index 0000000000..8ddfba68f7 --- /dev/null +++ b/app/views/time_entries/reports/_reports_tab.html.erb @@ -0,0 +1,140 @@ +<%#-- copyright +OpenProject is an open source project management software. +Copyright (C) 2012-2020 the OpenProject GmbH + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License version 3. + +OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +Copyright (C) 2006-2017 Jean-Philippe Lang +Copyright (C) 2010-2013 the ChiliProject Team + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +See docs/COPYRIGHT.rdoc for more details. + +++#%> + +<%= styled_form_tag(polymorphic_time_entries_report_path(@issue || @project), method: :get, id: 'query_form', class: '-vertical') do %> + <% @criterias.each do |criteria| %> + <%= hidden_field_tag 'criterias[]', criteria, id: nil %> + <% end %> + +
+
+ +
+ <%= styled_label_tag :columns, "#{t(:label_details)}:" %> + <%= styled_select_tag 'columns', options_for_select([[l(:label_year), 'year'], + [l(:label_month), 'month'], + [l(:label_week), 'week'], + [l(:label_day_plural).titleize, 'day']], @columns), + container_class: '-slim' %> +
+ +
+ <%= styled_label_tag :criterias, "#{t(:button_add)}:" %> + <% available_criterias = [[]] + (@available_criterias.keys - @criterias).collect{ |k| + [l_or_humanize(@available_criterias[k][:label]), k] + } + %> + <%= styled_select_tag('criterias[]', options_for_select(available_criterias), + id: "criterias", + disabled: (@criterias.length >= 3), + container_class: '-slim') %> +
+
+
+ <%= submit_tag t(:button_apply), class: 'button -highlight' %> + <%= link_to t(:button_clear), {project_id: @project, issue_id: @issue, period_type: params[:period_type], period: params[:period], from: @from, to: @to, columns: @columns}, class: 'button' %> +
+
+<% end %> +<% unless @criterias.empty? %> +
+

<%= t(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %>

+
+ + <% unless @hours.empty? %> +
+
+ + + <% @criterias.each do |criteria| %> + + <% end %> + <% @periods.each do |period| %> + + <% end %> + + + + + <% @criterias.each do |criteria| %> + + <% end %> + <% @periods.each do |period| %> + + <% end %> + + + + + <%= render partial: 'report_criteria', locals: {criterias: @criterias, hours: @hours, level: 0} %> + + + <%= ('' * (@criterias.size - 1)).html_safe %> + <% total = 0 -%> + <% @periods.each do |period| -%> + <% sum = sum_hours(select_hours(@hours, @columns, period.to_s)); total += sum -%> + + <% end -%> + + + +
+
+
+ + <%= l_or_humanize(@available_criterias[criteria][:label]) %> + +
+
+
+
+
+ + <%= period %> + +
+
+
+
+
+ + <%= t(:label_total) %> + +
+
+
<%= t(:label_total) %><%= html_hours("%.2f" % sum) if sum > 0 %><%= html_hours("%.2f" % total) if total > 0 %>
+ +
+
+ + <%= other_formats_links do |f| %> + <%= f.link_to 'CSV', url: permitted_params.timelog.to_h %> + <% end %> + <% end %> +<% end %> diff --git a/app/views/time_entries/reports/show.html.erb b/app/views/time_entries/reports/show.html.erb index b127bbed43..26a0410b78 100644 --- a/app/views/time_entries/reports/show.html.erb +++ b/app/views/time_entries/reports/show.html.erb @@ -38,118 +38,8 @@ See docs/COPYRIGHT.rdoc for more details. <% end %> <% end %> -<%= styled_form_tag(polymorphic_time_entries_report_path(@issue || @project), method: :get, id: 'query_form', class: '-vertical') do %> - <% @criterias.each do |criteria| %> - <%= hidden_field_tag 'criterias[]', criteria, id: nil %> - <% end %> - <%= render partial: 'timelog/date_range' %> - <%= render 'timelog/time_entry_tabs' %> - -
-
- -
- <%= styled_label_tag :columns, "#{t(:label_details)}:" %> - <%= styled_select_tag 'columns', options_for_select([[l(:label_year), 'year'], - [l(:label_month), 'month'], - [l(:label_week), 'week'], - [l(:label_day_plural).titleize, 'day']], @columns), - container_class: '-slim' %> -
- -
- <%= styled_label_tag :criterias, "#{t(:button_add)}:" %> - <% available_criterias = [[]] + (@available_criterias.keys - @criterias).collect{ |k| - [l_or_humanize(@available_criterias[k][:label]), k] - } - %> - <%= styled_select_tag('criterias[]', options_for_select(available_criterias), - id: "criterias", - disabled: (@criterias.length >= 3), - container_class: '-slim') %> -
-
-
- <%= submit_tag t(:button_apply), class: 'button -highlight' %> - <%= link_to t(:button_clear), {project_id: @project, issue_id: @issue, period_type: params[:period_type], period: params[:period], from: @from, to: @to, columns: @columns}, class: 'button' %> -
-
-<% end %> -<% unless @criterias.empty? %> -
-

<%= t(:label_total) %>: <%= html_hours(l_hours(@total_hours)) %>

-
+<%= render partial: 'timelog/date_range' %> - <% unless @hours.empty? %> -
-
- - - <% @criterias.each do |criteria| %> - - <% end %> - <% @periods.each do |period| %> - - <% end %> - - - - - <% @criterias.each do |criteria| %> - - <% end %> - <% @periods.each do |period| %> - - <% end %> - - - - - <%= render partial: 'report_criteria', locals: {criterias: @criterias, hours: @hours, level: 0} %> - - - <%= ('' * (@criterias.size - 1)).html_safe %> - <% total = 0 -%> - <% @periods.each do |period| -%> - <% sum = sum_hours(select_hours(@hours, @columns, period.to_s)); total += sum -%> - - <% end -%> - - - -
-
-
- - <%= l_or_humanize(@available_criterias[criteria][:label]) %> - -
-
-
-
-
- - <%= period %> - -
-
-
-
-
- - <%= t(:label_total) %> - -
-
-
<%= t(:label_total) %><%= html_hours("%.2f" % sum) if sum > 0 %><%= html_hours("%.2f" % total) if total > 0 %>
- -
-
- - <%= other_formats_links do |f| %> - <%= f.link_to 'CSV', url: permitted_params.timelog.to_h %> - <% end %> - <% end %> -<% end %> +<%= render_tabs time_entry_tabs %> <% html_title t(:label_spent_time), t(:label_report) %> diff --git a/app/views/timelog/_time_entry_tab.html.erb b/app/views/timelog/_time_entry_tab.html.erb index 9d1b4baf4f..61afead2d3 100644 --- a/app/views/timelog/_time_entry_tab.html.erb +++ b/app/views/timelog/_time_entry_tab.html.erb @@ -26,9 +26,15 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. See docs/COPYRIGHT.rdoc for more details. ++#%> -
  • - <%= link_to(tab_path, class: (tab_selected ? 'selected' : nil)) do %> - <%= tab_selected ? you_are_here_info : nil %> - <%= tab_title %> + +
    + +
    + <%= t('deprecations.time_entries') %> +
    +
    +
    + <%= other_formats_links do |f| %> + <%= f.link_to 'CSV', url: permitted_params.timelog.to_h %> <% end %> -
  • + diff --git a/app/views/timelog/_time_entry_tabs.html.erb b/app/views/timelog/_time_entry_tabs.html.erb deleted file mode 100644 index 4af71227fb..0000000000 --- a/app/views/timelog/_time_entry_tabs.html.erb +++ /dev/null @@ -1,39 +0,0 @@ -<%#-- copyright -OpenProject is an open source project management software. -Copyright (C) 2012-2020 the OpenProject GmbH - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License version 3. - -OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -Copyright (C) 2006-2017 Jean-Philippe Lang -Copyright (C) 2010-2013 the ChiliProject Team - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation; either version 2 -of the License, or (at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program; if not, write to the Free Software -Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -See docs/COPYRIGHT.rdoc for more details. - -++#%> - -
    - -
    diff --git a/app/views/timelog/index.html.erb b/app/views/timelog/index.html.erb index 891de7ab29..a054f3e564 100644 --- a/app/views/timelog/index.html.erb +++ b/app/views/timelog/index.html.erb @@ -42,17 +42,6 @@ See docs/COPYRIGHT.rdoc for more details. <%= render partial: 'date_range' %> <% end %> -<%= render 'time_entry_tabs' %> - -
    - -
    - <%= t('deprecations.time_entries') %> -
    -
    -
    - <%= other_formats_links do |f| %> - <%= f.link_to 'CSV', url: permitted_params.timelog.to_h %> - <% end %> -
    +<%= render_tabs time_entry_tabs %> + <% html_title l(:label_spent_time) %> diff --git a/app/views/types/edit.html.erb b/app/views/types/edit.html.erb index 425e86513c..b6ae85f8c4 100644 --- a/app/views/types/edit.html.erb +++ b/app/views/types/edit.html.erb @@ -36,31 +36,12 @@ See docs/COPYRIGHT.rdoc for more details. <%= breadcrumb_toolbar @type.name %> -
    - -
    - -<%= error_messages_for 'type' %> - <%= form_for @type, - url: update_type_tab_path(id: @type.id, tab: @tab), - builder: TabularFormBuilder, - lang: current_language do |f| %> - <%= render partial: "types/form/#{@tab}", locals: { f: f } %> + url: update_type_tab_path(id: @type.id, tab: @tab), + builder: TabularFormBuilder, + lang: current_language do |f| %> + + <%= render_tabs types_tabs, f %> <% end %> + +<%= error_messages_for 'type' %> diff --git a/app/views/users/edit.html.erb b/app/views/users/edit.html.erb index 6b9306e97e..282675bc65 100644 --- a/app/views/users/edit.html.erb +++ b/app/views/users/edit.html.erb @@ -33,4 +33,4 @@ See docs/COPYRIGHT.rdoc for more details. <% local_assigns[:additional_breadcrumb] = @user.name %> <%= render partial: 'toolbar', locals: { new_user: false } %> -<%= render_extensible_tabs :user %> +<%= render_extensible_tabs :user, user: @user %> diff --git a/config/locales/crowdin/ar.yml b/config/locales/crowdin/ar.yml index ed3c6b1756..b7c20eedb8 100644 --- a/config/locales/crowdin/ar.yml +++ b/config/locales/crowdin/ar.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/bg.yml b/config/locales/crowdin/bg.yml index c78df7e35f..563fc57faa 100644 --- a/config/locales/crowdin/bg.yml +++ b/config/locales/crowdin/bg.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ca.yml b/config/locales/crowdin/ca.yml index 50ad99ef53..8d64bf70c0 100644 --- a/config/locales/crowdin/ca.yml +++ b/config/locales/crowdin/ca.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/cs.yml b/config/locales/crowdin/cs.yml index 78a92f9d52..1f73bb96d4 100644 --- a/config/locales/crowdin/cs.yml +++ b/config/locales/crowdin/cs.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/da.yml b/config/locales/crowdin/da.yml index 7f774bfefd..d65eb30beb 100644 --- a/config/locales/crowdin/da.yml +++ b/config/locales/crowdin/da.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/de.yml b/config/locales/crowdin/de.yml index c3d5f42dd1..fd2901309f 100644 --- a/config/locales/crowdin/de.yml +++ b/config/locales/crowdin/de.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -67,20 +67,20 @@ de: no_results_content_text: Erstellen Sie einen neuen Authentifizierungsmodus ldap_auth_sources: technical_warning_html: | - This LDAP form requires technical knowledge of your LDAP / Active Directory setup. + Dieses LDAP-Formular erfordert technische Kenntnisse ihres LDAP-/Active Directory Setups.
    - Please visit our documentation for detailed instructions. + Bitte besuchen Sie unsere Dokumentation für detaillierte Anweisungen. attribute_texts: - name: Arbitrary name of the LDAP connection - host: LDAP host name or IP address - login_map: The attribute key in LDAP that is used to identify the unique user login. Usually, this will be `uid` or `samAccountName`. - generic_map: The attribute key in LDAP that is mapped to the OpenProject `%{attribute}` attribute - admin_map_html: "Optional: The attribute key in LDAP that if present marks the OpenProject user an admin. Leave empty when in doubt." + name: Beliebiger Name der LDAP-Verbindung + host: LDAP Hostname oder IP-Adresse + login_map: Der Attributschlüssel in LDAP, der benutzt wird, um die eindeutige Benutzeranmeldung zu identifizieren. Normalerweise wird dies `uid` oder `samAccountName` sein. + generic_map: Der Attributschlüssel in LDAP, der dem OpenProject `%{attribute}` Attribut zugeordnet ist + admin_map_html: "Optional: Der Attributenschlüssel in LDAP der, falls vorhanden, den OpenProject Nutzer als einen Administrator makiert. \nIm Zweifel leer lassen." system_user_dn_html: | - Enter the DN of the system user used for read-only access. + Geben Sie den DN des Systembenutzers ein, der für schreibgeschützten Zugriff verwendet wird.
    - Example: uid=openproject,ou=system,dc=example,dc=com - system_user_password: Enter the bind password of the system user + Beispiel: uid=openproject,ou=system,dc=example,dc=com + system_user_password: Geben Sie das Bind-Passwort des Systembenutzers ein base_dn: | Enter the Base DN of the subtree in LDAP you want OpenProject to look for users and groups. OpenProject will filter for provided usernames in this subtree only. diff --git a/config/locales/crowdin/el.yml b/config/locales/crowdin/el.yml index baee734203..892cf3d59b 100644 --- a/config/locales/crowdin/el.yml +++ b/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -73,29 +73,28 @@ el: attribute_texts: name: Αυθαίρετο όνομα της σύνδεσης LDAP host: Όνομα εξυπηρετητή LDAP ή διεύθυνση IP - login_map: The attribute key in LDAP that is used to identify the unique user login. Usually, this will be `uid` or `samAccountName`. + login_map: Το κλειδί χαρακτηριστικού στο LDAP που χρησιμοποιείται για να αναγνωριστεί η μοναδική σύνδεση χρήστη. Συνήθως, αυτό θα είναι το `uid` ή το `samAccountName`. generic_map: Το κλειδί χαρακτηριστικού στο LDAP είναι χαρτογραφημένο στο χαρακτηριστικό του OpenProject `%{attribute}` admin_map_html: "Προαιρετικό: Το κλειδί χαρακτηριστικού στο LDAP που αν υπάρχει επισημαίνει τον χρήστη OpenProject ως διαχειριστή. Αφήστε το κενό αν αμφιβάλλετε." system_user_dn_html: | - Enter the DN of the system user used for read-only access. + Εισάγετε το DN του χρήστη που χρησιμοποιείται για πρόσβαση μόνο με δικαιώματα ανάγνωσης.
    - Example: uid=openproject,ou=system,dc=example,dc=com - system_user_password: Enter the bind password of the system user + Παράδειγμα: uid=openproject,ou=system,dc=example,dc=com + system_user_password: Εισάγετε τον δεσμευτικό κωδικό πρόσβασης του χρήστη συστήματος base_dn: | - Enter the Base DN of the subtree in LDAP you want OpenProject to look for users and groups. - OpenProject will filter for provided usernames in this subtree only. - Example: ou=users,dc=example,dc=com + Εισάγετε το Base DN του υποδέντρου στο LDAP που θέλετε το OpenProject να αναζητήσει χρήστες και ομάδες. + Το OpenProject θα φιλτράρει τα δοθέντα ονόματα χρηστών μόνο σε αυτό το υποδέντρο. + Παράδειγμα: ou=users,dc=example,dc=com onthefly_register: | - If you check this box, OpenProject will automatically create new users from their LDAP entries - when they first authenticate with OpenProject. - Leave this unchecked to only allow existing accounts in OpenProject to authenticate through LDAP! + Αν επιλέξετε αυτό το κουτί, το OpenProject θα δημιουργεί αυτόματα καινούργιους χρήστες από τις καταχωρήσεις του LDAP όταν ταυτοποιούνται για πρώτη φορά στο OpenProject. + Αφήστε το μη επιλεγμένο για να επιτρέψετε μόνο στους υπάρχοντες λογαριασμούς στο OpenProject να ταυτοποιηθούν μέσω LDAP! connection_encryption: 'Κρυπτογράφηση σύνδεσης' system_account: 'Λογαριασμός συστήματος' system_account_legend: | - OpenProject requires read-only access through a system account to lookup users and groups in your LDAP tree. - Please specify the bind credentials for that system user in the following section. + Το OpenProject απαιτεί πρόσβαση ανάγνωσης-μόνο μέσω ενός λογαριασμού συστήματος για να αναζητά χρήστες και ομάδες στο LDAP δέντρο σας. + Παρακαλούμε προσδιορίστε τα διαπιστευτήρια δέσμευσης για αυτόν τον χρήστη συστήματος στην παρακάτω ενότητα. ldap_details: 'Λεπτομέρειες LDAP' - user_settings: 'Attribute mapping' + user_settings: 'Χαρτογράφηση χαρακτηριστικού' user_settings_legend: | Τα ακόλουθα πεδία σχετίζονται με το πως οι χρήστες δημιουργούνται στο OpenProject από τις καταχωρήσεις LDAP και ποια χαρακτηριστικά LDAP χρησιμοποιούνται για να ορίσουν τα χαρακτηριστικά ενός χρήστη OpenProject (χαρτογράφηση χαρακτηριστικού). tls_mode: @@ -142,7 +141,7 @@ el: concatenation: single: 'ή' deprecations: - time_entries: "Αυτή η προβολή εγγραφών χρόνου αντικαθίσταται από την ενότητα \"Αναφορές κόστους\". Αυτή η προβολή υποστηρίζει τώρα μόνο την εξαγωγή πληροφοριών χρόνου σε csv. Για διαλογικό φιλτράρισμα, ενεργοποιήστε την ενότητα \"Αναφορές κόστους\" στις ρυθμίσεις του έργου." + time_entries: "Αυτή η προβολή καταχωρήσεων χρόνου αντικαθίσταται από την ενότητα \"Αναφορές κόστους\". Αυτή η προβολή τώρα υποστηρίζει μόνο την εξαγωγή πληροφοριών καταχωρήσεων χρόνου σε csv. Για διαδραστικό φιλτράρισμα, ενεργοποιήστε την ενότητα \"Αναφορές κόστους\" στις ρυθμίσεις του έργου." global_search: overwritten_tabs: wiki_pages: "Wiki" @@ -174,7 +173,7 @@ el: no_results_title_text: Προς το παρόν δεν υπάρχουν διαθέσιμες δραστηριότητες. forums: no_results_title_text: Προς το παρόν δεν υπάρχουν φόρουμ για το έργο. - no_results_content_text: Δημιουργία νέου forum + no_results_content_text: Δημιουργία νέου φόρουμ categories: no_results_title_text: Αυτήν τη στιγμή δεν υπάρχουν κατηγορίες πακέτων εργασίας. no_results_content_text: Δημιουργήστε μια νέα κατηγορία πακέτου εργασίας @@ -382,9 +381,9 @@ el: code: 'Κατάσταση' explanation: 'Περιγραφή κατάστασης' codes: - on_track: 'On track' - at_risk: 'At risk' - off_track: 'Off track' + on_track: 'Eντός πορείας' + at_risk: 'Σε κίνδυνο' + off_track: 'Eκτός πορείας' query: column_names: "Στήλες" relations_to_type_column: "Συσχετίσεις με %{type}" @@ -471,12 +470,12 @@ el: before: "πρέπει να είναι πριν από %{date}." before_or_equal_to: "πρέπει να είναι πριν ή ίσο με %{date}." blank: "δεν πρέπει να είναι κενό." - cant_link_a_work_package_with_a_descendant: "Ένα πακέτο εργασίας δεν μπορεί να συνδεθεί με ένα από τα υποκαθήκοντα του." + cant_link_a_work_package_with_a_descendant: "Ένα πακέτο εργασίας δεν μπορεί να συνδεθεί με μια από τις υποεργασίες του." circular_dependency: "Αυτή η σχέση θα δημιουργήσει κυκλική εξάρτηση." confirmation: "δεν ταιριάζει με %{attribute}." could_not_be_copied: "δεν ήταν δυνατή η (πλήρης) αντιγραφή." does_not_exist: "δεν υπάρχει." - error_unauthorized: "may not be accessed." + error_unauthorized: "ενδέχεται να μην έχετε πρόσβαση." error_readonly: "επιχειρήθηκε να εγγραφεί αλλά δεν ήταν εγγράψιμο." empty: "δεν μπορεί να είναι κενό." even: "πρέπει να είναι άρτιος." @@ -521,7 +520,7 @@ el: doorkeeper/application: attributes: redirect_uri: - fragment_present: 'δεν μπορεί να περιέχει ένα κομμάτι.' + fragment_present: 'δεν μπορεί να περιέχει ένα τμήμα (fragment).' invalid_uri: 'πρέπει να είναι έγκυρο URI.' relative_uri: 'πρέπει να είναι απόλυτο URI.' secured_uri: 'πρέπει να είναι HTTPS/SSL URI.' @@ -542,7 +541,7 @@ el: id_filter_required: "Απαιτείται ένα φίλτρο 'Ταυτότητα'." project: archived_ancestor: 'Το έργο έχει έναν αρχειοθετημένο πρόγονο.' - foreign_wps_reference_version: 'Work packages in non descendant projects reference versions of the project or its descendants.' + foreign_wps_reference_version: 'Πακέτα εργασίας σε εκδόσεις αναφοράς του έργου ή των απογόνων του έργου που δεν προέρχονται απο απογόνους.' attributes: types: in_use_by_work_packages: "χρησιμοποιείται ακόμη από τα πακέτα εργασίας: %{types}" @@ -714,7 +713,7 @@ el: priority: "Προτεραιότητα" project: "Έργο" public: "Δημόσιο" - responsible: "Accountable" + responsible: "Υπόλογος" role: "Ρόλος" roles: "Ρόλοι" start_date: "Ημερομηνία έναρξης" @@ -967,7 +966,7 @@ el: default_type_feature: "Λειτουργία" default_type_milestone: "Ορόσημο" default_type_phase: "Φάση" - default_type_task: "Καθήκον" + default_type_task: "Εργασία" default_type_user_story: "Ιστορία χρήστη" description_active: "Ενεργό;" description_attachment_toggle: "Εμφάνιση/Απόκρυψη συνημμένων" @@ -1014,7 +1013,7 @@ el: enumeration_work_package_priorities: "Προτεραιότητες πακέτου εργασίας" enumeration_reported_project_statuses: "Αναφερόμενη κατάσταση έργου" error_auth_source_sso_failed: "Το Single Sign-On (SSO) για το χρήση '%{value}' απέτυχε" - error_can_not_archive_project: "This project cannot be archived: %{errors}" + error_can_not_archive_project: "Αυτό το έργο δεν μπορεί να αρχειοθετηθεί: %{errors}" error_can_not_delete_entry: "Δεν είναι δυνατή η διαγραφή καταχώρησης" error_can_not_delete_custom_field: "Δεν είναι δυνατή η διαγραφή του προσαρμοσμένου πεδίου" error_can_not_delete_type: "Αυτός ο τύπος περιέχει πακέτα εργασίας που δεν μπορούν να διαγραφούν." @@ -1154,17 +1153,17 @@ el: label_add_columns: "Προσθέστε τις επιλεγμένες στήλες" label_add_note: "Προσθήκη σημείωσης" label_add_related_work_packages: "Προσθέστε σχετιζόμενα πακέτα εργασίας" - label_add_subtask: "Προσθήκη υποκαθήκοντος" + label_add_subtask: "Προσθήκη υποεργασίας" label_added: "προστέθηκε" label_added_time_by: "Προστέθηκε από τον %{author} πριν από %{age}" - label_additional_workflow_transitions_for_assignee: "Additional transitions allowed when the user is the assignee" + label_additional_workflow_transitions_for_assignee: "Επιτρέπονται επιπλέον μεταβάσεις όταν ο χρήστης είναι το άτομο που του έχει ανατεθεί" label_additional_workflow_transitions_for_author: "Επιτρέπονται επιπλέον μεταβάσεις όταν ο χρήστης είναι ο συγγραφέας" label_administration: "Διαχείριση" label_advanced_settings: "Προηγμένες ρυθμίσεις" label_age: "Ηλικία" label_ago: "ημέρες πριν" label_all: "όλα" - label_all_time: "all time" + label_all_time: "πάντα" label_all_words: "Όλες οι λέξεις" label_all_open_wps: "Όλα τα ανοιχτά" label_always_visible: "Προβολή πάντα" @@ -1466,7 +1465,7 @@ el: label_planning: "Σχεδιασμός" label_please_login: "Παρακαλούμε συνδεθείτε" label_plugins: "Πρόσθετα" - label_modules_and_plugins: "Πρόσθετα και Υπηρεσίες" + label_modules_and_plugins: "Ενότητες και Πρόσθετα" label_precedes: "προηγείται" label_preferences: "Προτιμήσεις" label_preview: "Προεπισκόπηση" @@ -1565,7 +1564,7 @@ el: label_subproject: "Υποέργο" label_subproject_new: "Νέο υποέργο" label_subproject_plural: "Υποέργα" - label_subtask_plural: "Υποκαθήκοντα" + label_subtask_plural: "Υποεργασίες" label_summary: "Περίληψη" label_system: "Σύστημα" label_system_storage: "Πληροφορίες αποθήκευσης" @@ -1589,7 +1588,7 @@ el: label_updated_time: "Ενημερώθηκε πριν από %{value}" label_updated_time_at: "%{author} %{age}" label_updated_time_by: "Ενημερώθηκε από τον %{author} πριν από %{age}" - label_upgrade_guides: 'Οδηγίες αναβάθμισης' + label_upgrade_guides: 'Οδηγοί αναβάθμισης' label_used_by: "Χρησιμοποιείται από" label_used_by_types: "Χρησιμοποιείται από τύπους" label_used_in_projects: "Χρησιμοποιείται σε έργα" @@ -1625,7 +1624,7 @@ el: label_wiki_content_added: "Η σελίδα Wiki προστέθηκε" label_wiki_content_updated: "Η σελίδα Wiki ενημερώθηκε" label_wiki_toc: "Πίνακας Περιεχομένων" - label_wiki_toc_empty: "Ο πίνακας περιεχομένων είναι κενός, καθώς δεν υπάρχουν επικεφαλίδες." + label_wiki_toc_empty: "Ο Πίνακας Περιεχομένων είναι κενός, καθώς δεν υπάρχουν επικεφαλίδες." label_wiki_dont_show_menu_item: "Να μην εμφανίζεται αυτή η σελίδα wiki στην πλοήγηση του έργου" label_wiki_edit: "Επεξεργασία wiki" label_wiki_edit_plural: "Επεξεργασίες wiki" @@ -1695,7 +1694,7 @@ el: label_keyboard_shortcut_new_work_package: "Δημιουργήστε νέο πακέτο εργασίας" label_keyboard_shortcut_details_package: "Εμφανίστε το πλαίσιο λεπτομερειών των πακέτων εργασίας" label_keyboard_shortcut_go_edit: "Πηγαίνετε στην επεξεργασία του τρέχοντος αντικειμένου (μόνο στη σελίδα λεπτομερειών)" - label_keyboard_shortcut_open_more_menu: "Open more-menu (on detail pages only)" + label_keyboard_shortcut_open_more_menu: "Εμφάνιση μενού-περισσότερων (στη σελίδα λεπτομερειών μόνο)" label_keyboard_shortcut_go_preview: "Μετάβαση στην προεπισκόπηση της τρέχουσας επεξεργασίας (μόνο στη σελίδα επεξεργασίας)" label_keyboard_shortcut_focus_previous_item: "Εστίαση στο προηγούμενο στοιχείο της λίστας (μόνο σε κάποιες λίστες)" label_keyboard_shortcut_focus_next_item: "Εστίαση στο επόμενο στοιχείο της λίστας (μόνο σε κάποιες λίστες)" @@ -1712,7 +1711,7 @@ el: legacy_warning: timeline: 'Αυτή η ξεπερασμένη μακροεντολή χρονοδιαγράμματος έχει αφαιρεθεί και δεν είναι πια διαθέσιμη. Μπορείτε να αντικαταστήσετε την λειτουργικότητα της με μια ενσωματωμένη μακροεντολή πίνακα.' include_wiki_page: - removed: 'Η συντόμευση δεν υπάρχει πια.' + removed: 'Η μακροεντολή δεν υπάρχει πια.' wiki_child_pages: errors: page_not_found: "Δεν ήταν δυνατή η εύρεση της σελίδας wiki '%{name}'." @@ -1883,7 +1882,7 @@ el: permission_manage_project_activities: "Διαχείριση δραστηριοτήτων έργου" permission_manage_public_queries: "Διαχείριση δημόσιων προβολών" permission_manage_repository: "Διαχείριση αποθετηρίου" - permission_manage_subtasks: "Διαχείριση υποκαθηκόντων" + permission_manage_subtasks: "Διαχείριση υποεργασιών" permission_manage_versions: "Διαχείριση εκδόσεων" permission_manage_wiki: "Διαχείριση wiki" permission_manage_wiki_menu: "Διαχείριση μενού wiki" @@ -1912,7 +1911,7 @@ el: confirmation: "Αν συνεχίσετε, το έργο %{identifier} και όλα τα σχετικά δεδομένα θα διαγραφούν μονίμως." info: "Η διαγραφή του έργου είναι μια μη αναστρέψιμη ενέργεια." project_verification: "Εισάγετε το όνομα του έργου %{name} για να επιβεβαιώσετε τη διαγραφή." - subprojects_confirmation: "Το υποέργο του: %{value} θα διαγραφεί." + subprojects_confirmation: "Το(-α) υποέργο(-α) του: %{value} θα διαγραφεί(-ουν)." title: "Διαγραφή του έργου %{name}" identifier: warning_one: Τα μέλη του έργου θα πρέπει να μεταφέρουν τα αποθετήρια του έργου. @@ -1936,9 +1935,9 @@ el: #which are not attributes of an AR-Model. query_fields: active_or_archived: "Ενεργό ή αρχειοθετημένο" - assigned_to_role: "Assignee's role" - member_of_group: "Assignee's group" - assignee_or_group: "Assignee or belonging group" + assigned_to_role: "Ρόλος ανάθεσης" + member_of_group: "Ομάδα ανάθεσης" + assignee_or_group: "Ανάθεση ή ομάδα" subproject_id: "Υποέργο" name_or_identifier: "Όνομα ή αναγνωριστικό" repositories: @@ -1952,7 +1951,7 @@ el: none: 'Δεν υπάρχει πρόσβαση ολοκλήρωσης παραγγελίας, μπορείτε να δείτε το αποθετήριο μόνο μέσω της εφαρμογής.' access_permission: 'Τα δικαιώματα σας σε αυτό το αποθετήριο' url: "URL ολοκλήρωσης παραγγελίας" - base_url_text: "The base URL to use for generating checkout URLs (e.g., https://myserver.example.org/repos/).\nNote: The base URL is only used for rewriting checkout URLs in managed repositories. Other repositories are not altered." + base_url_text: "Το βασικό URL για χρήση στη δημιουργία URL ολοκλήρωσης παραγγελίας (π.χ., https://myserver.example.org/repos/).\nΣημείωση: Το βασικό URL χρησιμοποιείται μόνο για επανεγγραφή των URL ολοκλήρωσης παραγγελίας στα διαχειριζόμενα αποθετήρια. Τα άλλα αποθετήρια δεν θα αλλαχθούν." default_instructions: git: |- Τα δεδομένα που περιέχονται σε αυτό το αποθετήριο μπορούν να ληφθούν στον υπολογιστή σας με το Git. @@ -1985,7 +1984,7 @@ el: empty_repository: "Το αποθετήριο υπάρχει, αλλά είναι άδειο. Δεν περιέχει αναθεωρήσεις ακόμα." exists_on_filesystem: "Ο κατάλογος του αποθετηρίου υπάρχει ήδη στο σύστημα αρχείων." filesystem_access_failed: "Υπήρξε σφάλμα κατά την πρόσβαση του αποθετηρίου στο σύστημα αρχείων: %{message}" - not_manageable: "This repository vendor cannot be managed by OpenProject." + not_manageable: "Ο προμηθευτής αποθετηρίου δεν είναι δυνατό να διαχειριστεί από το OpenProject." path_permission_failed: "Παρουσιάστηκε σφάλμα κατά την προσπάθεια δημιουργίας του ακόλουθου μονοπατιού: %{path}. Παρακαλούμε σιγουρευτείτε ότι το OpenProject έχει δικαιώματα εγγραφής στον φάκελο." unauthorized: "Δεν έχει εξουσιοδότηση για πρόσβαση στο αποθετήριο ή τα στοιχεία σύνδεσης δεν είναι έγκυρα." unavailable: "Το αποθετήριο δεν είναι διαθέσιμο." @@ -1997,9 +1996,9 @@ el: remote_save_failed: "Could not save the repository with the parameters retrieved from the remote." git: instructions: - managed_url: "This is the URL of the managed (local) Git repository." + managed_url: "Αυτό είναι το URL του διαχειριζόμενου (τοπικού) αποθετηρίου Git." path: >- - Specify the path to your local Git repository ( e.g., %{example_path} ). You can also use remote repositories which are cloned to a local copy by using a value starting with http(s):// or file://. + Ορίστε το μονοπάτι του τοπικού σας αποθετηρίου Git (π.χ., %{example_path} ). Μπορείτε να χρησιμοποιείτε απομακρυσμένα αποθετήρια τα οποία έχουν κλωνοποιηθεί σε ένα τοπικό αντίγραφο χρησιμοποιώντας μια τιμή που ξεκινάει με http(s):// ή file://. path_encoding: "Override Git path encoding (Default: UTF-8)" local_title: "Σύνδεση με υπάρχον τοπικό αποθετήριο Git" local_url: "Τοπικό URL" @@ -2025,7 +2024,7 @@ el: managed: "Δημιουργία νέου αποθετηρίου στο OpenProject" storage: not_available: "Η κατανάλωση χώρου από τον δίσκο δεν είναι δυνατή σε αυτό το αποθετήριο." - update_timeout: "Keep the last required disk space information for a repository for N minutes.\nAs counting the required disk space of a repository may be costly, increase this value to reduce performance impact." + update_timeout: "Διατήρηση των τελευταίων πληροφοριών απαιτούμενου χώρου δίσκου για ένα αποθετήριο για Ν λεπτά.\nΚαθώς η μέτρηση του απαιτούμενου χώρου δίσκου για ένα αποθετήριο μπορεί να κοστίζει, αυξήστε αυτή την τιμή για να μειώσετε την επίπτωση στην επίδοση." subversion: existing_title: "Υπάρχον αποθετήριο Subversion" existing_introduction: "Αν έχετε ένα υπάρχον αποθετήριο Subversion, μπορείτε να το συνδέσετε με το OpenProject για να αποκτήσετε πρόσβαση σε αυτό μέσα από την εφαρμογή." @@ -2038,7 +2037,7 @@ el: managed_url: "Διαχειριζόμενο URL" password: "Κωδικός Αποθετηρίου" username: "Όνομα χρήστη αποθετηρίου" - truncated: "Sorry, we had to truncate this directory to %{limit} files. %{truncated} entries were omitted from the list." + truncated: "Συγνώμη, έπρεπε να περικόψουμε αυτό το ευρετήριο σε %{limit} αρχεία. %{truncated} καταχωρήσεις παραλήφθηκαν από τη λίστα." named_repository: "%{vendor_name} αποθετήριο" update_settings_successful: "Οι ρυθμίσεις αποθηκεύτηκαν επιτυχώς." url: "URL σε αποθετήριο" @@ -2059,14 +2058,14 @@ el: setting_app_subtitle: "Υπότιτλος εφαρμογής" setting_app_title: "Τίτλος εφαρμογής" setting_attachment_max_size: "Μέγιστο μέγεθος συνημμένων" - setting_autofetch_changesets: "Autofetch repository changes" + setting_autofetch_changesets: "Αυτόματη ανάκτηση αλλαγών αποθετηρίου" setting_autologin: "Αυτόματη σύνδεση" setting_available_languages: "Διαθέσιμες γλώσσες" setting_bcc_recipients: "Blind carbon copy recipients (bcc)" - setting_brute_force_block_after_failed_logins: "Block user after this number of failed login attempts" + setting_brute_force_block_after_failed_logins: "Αποκλεισμός χρήστη μετά από τον αριθμό από αποτυχημένες προσπάθειες σύνδεσης" setting_brute_force_block_minutes: "Χρόνος αποκλεισμού του χρήστη" setting_cache_formatted_text: "Μορφοποιημένο κείμενο cache" - setting_use_wysiwyg_description: "Select to enable CKEditor5 WYSIWYG editor for all users by default. CKEditor has limited functionality for GFM Markdown." + setting_use_wysiwyg_description: "Επιλέξτε για να ενεργοποιήσετε τον συντάκτη CKEditor5 WYSIWYG για όλους τους χρήστες από προεπιλογή. Ο CKEditor έχει περιορισμένη λειτουργικότητα για GFM Markdown." setting_column_options: "Προσαρμόστε την εμφάνιση των λιστών πακέτων εργασίας" setting_commit_fix_keywords: "Επιδιόρθωση λέξεων-κλειδιά" setting_commit_logs_encoding: "Κωδικοποίηση μηνυμάτων δέσμευσης" @@ -2093,7 +2092,7 @@ el: setting_feeds_limit: "Όριο συγκατάθεσης τροφοδοσίας" setting_file_max_size_displayed: "Μέγιστο μέγεθος αρχείων κειμένου που εμφανίζονται inline" setting_host_name: "Όνομα εξυπηρετητή" - setting_invitation_expiration_days: "Το μήνυμα ενεργοποίησης λήγει μετά" + setting_invitation_expiration_days: "Το μήνυμα ενεργοποίησης λήγει μετά από" setting_work_package_done_ratio: "Υπολογίστε την αναλογία των ολοκληρωμένων πακέτων εργασίας με" setting_work_package_done_ratio_field: "Χρήση του πεδίου πακέτου εργασίας" setting_work_package_done_ratio_status: "Χρήση της κατάστασης πακέτου εργασίας" @@ -2103,13 +2102,13 @@ el: setting_work_package_properties: "Ιδιότητες πακέτου εργασίας" setting_work_package_startdate_is_adddate: "Χρήση σημερινής ημερομηνίας ως ημερομηνία έναρξης για νέα πακέτα εργασίας" setting_work_packages_export_limit: "Όριο εξαγωγών πακέτων εργασίας" - setting_journal_aggregation_time_minutes: "Display journals as aggregated within" + setting_journal_aggregation_time_minutes: "Εμφάνιση ημερολογίων συναθροισμένα μέσα σε" setting_log_requesting_user: "Καταγραφή των στοιχείων εισόδου, του ονόματος και της διεύθυνσης email του χρήστη για όλα τα αιτήματα" setting_login_required: "Απαιτείται ταυτοποίηση" - setting_mail_from: "Emission email address" + setting_mail_from: "Διεύθυνση email μετάδοσης" setting_mail_handler_api_key: "Κλειδί API" - setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" - setting_mail_handler_body_delimiter_regex: "Truncate emails matching this regex" + setting_mail_handler_body_delimiters: "Περικοπή των email μετά από μια από αυτές τις γραμμές" + setting_mail_handler_body_delimiter_regex: "Περικοπή των email που ταιριάζουμε με αυτό το regex" setting_mail_handler_ignore_filenames: "Συνημμένα mail που αγνοήθηκαν" setting_new_project_user_role_id: "Ο ρόλος δόθηκε σε μη-διαχειριστή χρήστη ο οποίος δημιουργεί ένα έργο" setting_password_active_rules: "Ενεργές κλάσεις χαρακτήρων" @@ -2122,7 +2121,7 @@ el: setting_protocol: "Πρωτόκολλο" setting_security_badge_displayed: "Εμφάνιση πληροφοριών ασφαλείας" setting_registration_footer: "Υποσέλιδο εγγραφής" - setting_repositories_automatic_managed_vendor: "Automatic repository vendor type" + setting_repositories_automatic_managed_vendor: "Αυτόματος τύπος προμηθευτή αποθετηρίου" setting_repositories_encodings: "Κωδικοποιήσεις αποθετηρίων" setting_repository_authentication_caching_enabled: "Ενεργοποίηση caching για αιτήματα ταυτοποίησης του λογισμικού ελέγχου εκδόσεων" setting_repository_storage_cache_minutes: "Μέγεθος cache του αποθετηρίου στο δίσκο" @@ -2227,8 +2226,8 @@ el: text_work_package_category_destroy_question: "Κάποια πακέτα εργασίας (%{count}) έχουν ανατεθεί σε αυτή την κατηγορία. Τι θέλετε να κάνετε;" text_work_package_category_reassign_to: "Επανεκχώρηση πακέτων εργασίας σε αυτή την κατηγορία" text_work_package_updated: "Το πακέτο εργασίας %{id} έχει ενημερωθεί από τον(-ην) %{author}." - text_work_package_watcher_added: "You have been added as a watcher to Work package %{id} by %{watcher_changer}." - text_work_package_watcher_removed: "You have been removed from watchers of Work package %{id} by %{watcher_changer}." + text_work_package_watcher_added: "Έχετε προστεθεί ως παρατηρητής για το Πακέτο εργασίας %{id} από τον χρήστη %{watcher_changer}." + text_work_package_watcher_removed: "Έχετε αφαιρεθεί από παρατηρητής για το Πακέτο εργασίας %{id} από τον χρήστη %{watcher_changer}." text_work_packages_destroy_confirmation: "Είστε βέβαιοι ότι θέλετε να διαγράψετε το(-α) επιλεγμένο(-α) πακέτο(-α) εργασίας;" text_work_packages_ref_in_commit_messages: "Αναφορά και επιδιόρθωση πακέτων εργασίας σε μηνύματα δέσμευσης" text_journal_added: "%{label} %{value} προστέθηκε" @@ -2373,11 +2372,11 @@ el: hide_chart: "Απόκρυψη διαγράμματος" noneElement: "(κανένα)" noneSelection: "(κανένα)" - outline: "Initial outline expansion" + outline: "Αρχική επέκταση περιγράμματος" parent: "Εμφάνιση υποέργων του" work_package_filters: "Φιλτράρισμα πακέτων εργασίας" - work_package_responsible: "Show work packages with accountable" - work_package_assignee: "Show work packages with assignee" + work_package_responsible: "Εμφάνιση πακέτων εργασίας για τα οποία είμαι υπόλογος" + work_package_assignee: "Εμφάνιση πακέτων εργασίας που έχουν ανατεθεί" types: "Εμφάνιση τύπων" status: "Εμφάνιση κατάστασης" project_time_filter: "Έργα με πακέτο εργασίας συγκεκριμένου τύπου σε ένα συγκεκριμένο χρονικό πλαίσιο" @@ -2387,7 +2386,7 @@ el: project_time_filter_historical: "%{start_label} %{startdate} %{end_label} %{enddate}" project_time_filter_relative: "%{start_label} %{startspan}%{startspanunit} πριν, %{end_label} %{endspan}%{endspanunit} από τώρα" project_filters: "Φιλτράρισμα έργων" - project_responsible: "Show projects with accountable" + project_responsible: "Εμφάνιση έργων για τα οποία είμαι υπόλογος" project_status: "Εμφάνιση κατάστασης έργου" timeframe: "Εμφάνιση χρονικού πλαισίου" timeframe_end: "έως" @@ -2587,7 +2586,7 @@ el: #Access token errors invalid_client: 'Client authentication failed due to unknown client, no client authentication included, or unsupported authentication method.' invalid_grant: 'The provided authorization grant is invalid, expired, revoked, does not match the redirection URI used in the authorization request, or was issued to another client.' - unsupported_grant_type: 'The authorization grant type is not supported by the authorization server.' + unsupported_grant_type: 'Ο τύπος χορήγησης ταυτοποίησης δεν υποστηρίζεται από τον εξυπηρετητή ταυτοποίησης.' invalid_token: revoked: "Το token πρόσβασης ανακλήθηκε" expired: "Το token πρόσβασης έληξε" @@ -2607,15 +2606,15 @@ el: instructions: name: "Το όνομα τις εφαρμογής. Αυτό θα εμφανίζεται στους υπόλοιπους χρήστες μόλις γίνει η εξουσιοδότηση." redirect_uri_html: > - The allowed URLs authorized users can be redirected to. One entry per line.
    If you're registering a desktop application, use the following URL. + Τα επιτρεπόμενα URLs στα οποία ανακατευθύνονται οι ταυτοποιημένοι χρήστες.
    Αν εγγράφεστε από την εφαρμογή υπολογιστή, χρησιμοποιείστε το ακόλουθο URL. confidential: "Check if the application will be used where the client secret can be kept confidential. Native mobile apps and Single Page Apps are assumed non-confidential." scopes: "Επιλέξτε τα φυσικά αντικείμενα στα οποία θέλετε να δώσει πρόσβαση η εφαρμογή. Αν δεν επιλεγεί κανένα φυσικό αντικείμενο, θα υποτεθεί api_v3." - client_credential_user_id: "Optional user ID to impersonate when clients use this application. Leave empty to allow public access only" - register_intro: "If you are developing an OAuth API client application for OpenProject, you can register it using this form for all users to use." + client_credential_user_id: "Προαιρετική ταυτότητα χρήστη για να υποδυθεί όταν οι πελάτες χρησιμοποιούν αυτή την εφαρμογή. Αφήστε το κενό για να επιτρέψετε μόνο δημόσια πρόσβαση" + register_intro: "Αν αναπτύσσετε μια εφαρμογή πελάτη OAuth API για το OpenProject, μπορείτε να την καταχωρήσετε χρησιμοποιώντας αυτή τη φόρμα για να μπορούν να τη χρησιμοποιήσουν όλοι οι χρήστες." default_scopes: "" client_id: "Ταυτότητα Πελάτη" client_secret_notice: > - This is the only time we can print the client secret, please note it down and keep it secure. It should be treated as a password and cannot be retrieved by OpenProject at a later time. + Αυτή είναι η μόνη φορά που μπορούμε να εκτυπώσουμε το μυστικό πελάτη, παρακαλούμε σημειώστε το και κρατήστε το ασφαλές. Θα πρέπει να το χειρίζεστε ως κωδικό πρόσβασης και δεν μπορεί να ανακτηθεί από το OpenProject αργότερα. authorization_dialog: authorize: "Εξουσιοδότηση" cancel: "Ακύρωση και απόρριψη εξουσιοδότησης." diff --git a/config/locales/crowdin/es.yml b/config/locales/crowdin/es.yml index 301e62504a..dc38058389 100644 --- a/config/locales/crowdin/es.yml +++ b/config/locales/crowdin/es.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/fi.yml b/config/locales/crowdin/fi.yml index b2c7c0b35a..e30986208f 100644 --- a/config/locales/crowdin/fi.yml +++ b/config/locales/crowdin/fi.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/fil.yml b/config/locales/crowdin/fil.yml index dbd29ca62d..61de2df053 100644 --- a/config/locales/crowdin/fil.yml +++ b/config/locales/crowdin/fil.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/fr.yml b/config/locales/crowdin/fr.yml index a437822ba8..d131619da4 100644 --- a/config/locales/crowdin/fr.yml +++ b/config/locales/crowdin/fr.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/hr.yml b/config/locales/crowdin/hr.yml index 8ab27c573c..98820eb8f8 100644 --- a/config/locales/crowdin/hr.yml +++ b/config/locales/crowdin/hr.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/hu.yml b/config/locales/crowdin/hu.yml index dda8a91beb..0a6fcd27ae 100644 --- a/config/locales/crowdin/hu.yml +++ b/config/locales/crowdin/hu.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/id.yml b/config/locales/crowdin/id.yml index 162deb8a42..e4329d15f4 100644 --- a/config/locales/crowdin/id.yml +++ b/config/locales/crowdin/id.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/it.yml b/config/locales/crowdin/it.yml index 573675c887..bdbabb5d20 100644 --- a/config/locales/crowdin/it.yml +++ b/config/locales/crowdin/it.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ja.yml b/config/locales/crowdin/ja.yml index 1e03e67af9..5afcc72c93 100644 --- a/config/locales/crowdin/ja.yml +++ b/config/locales/crowdin/ja.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/js-ar.yml b/config/locales/crowdin/js-ar.yml index fdf223e065..cea2d87be4 100644 --- a/config/locales/crowdin/js-ar.yml +++ b/config/locales/crowdin/js-ar.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ ar: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "تاريخ السعر" clipboard: browser_error: "لا يدعم المتصفح الخاص بك النسخ إلى الحافظة, من فضلك انسخ النص المختار يدوياً." copied_successful: "تم النسخ بنجاح إلى الحافظة!" @@ -171,6 +172,9 @@ ar: cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "الأنشطة (تتبع الوقت)" + enumeration_doc_categories: "فئات الوثائق" + enumeration_work_package_priorities: "أولويات مجموعة العمل" filter: description: text_open_filter: "فتح هذا المرشح باستخدام 'ALT' و مفاتيح الأسهم." @@ -192,6 +196,7 @@ ar: general_text_yes: "نعم" general_text_No: "لا" general_text_Yes: "نعم" + global_roles: الأدوار العالمية hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ ar: label_and: "و" label_ascending: "ترتيب تصاعدي" label_author: "الكاتب%{user}" + label_avatar: "Avatar" label_between: "بين" label_board: "Board" label_board_locked: "مقفل" @@ -235,6 +241,8 @@ ar: label_deactivate: "تعطيل" label_descending: "ترتيب تنازلي" label_description: "الوصف" + label_details: "تفاصيل" + label_display: "عرض" label_cancel_comment: "ألغي التعليق" label_closed_work_packages: "مغلق" label_collapse: "مطوي" @@ -255,22 +263,29 @@ ar: label_export: "تصدير" label_filename: "ملف" label_filesize: "حجم" + label_general: "عام" label_greater_or_equal: "=<" label_group: 'مجموعة' label_group_by: "مجموعة من" + label_group_plural: "المجموعات" label_hide_attributes: "أظهِر أقل" label_hide_column: "إخفاء العمود" label_hide_project_menu: "Collapse project menu" label_in: "في" label_in_less_than: "في أقل من" label_in_more_than: "في أكثر من" + label_incoming_emails: "رسائل البريد الالكتروني الواردة" + label_information_plural: "معلومات" label_import: "Import" label_latest_activity: "Latest activity" label_last_updated_on: "تاريخ آخر تحديث" label_less_or_equal: "=>" label_less_than_ago: "أقل من أيام" label_loading: "جاري التحميل..." + label_mail_notification: "إشعارات البريد الإلكتروني" label_me: "لي" + label_meeting_agenda: "جدول الأعمال" + label_meeting_minutes: "محضر الجلسة" label_menu_collapse: "طي" label_menu_expand: "وسّع" label_more_than_ago: "منذ أكثر من أيام" @@ -291,12 +306,15 @@ ar: label_previous: "السابق" label_per_page: "لكل صفحة:" label_please_wait: "الرجاء الانتظار" + label_project_plural: "المشاريع" label_visibility_settings: "Visibility settings" label_quote_comment: "أقتبس هذا التعليق" label_reset: "إعادة تعيين" label_remove_column: "Remove column" label_remove_columns: "إزالة الأعمدة المختارة" label_remove_row: "Remove row" + label_report: "تقرير" + label_repository_plural: "مستودعات البيانات" label_save_as: "احفظ بشكل" label_select_watcher: "اختر مراقبًا..." label_selected_filter_list: "عوامل التصفية المٌختارة" @@ -307,6 +325,7 @@ ar: label_sort_higher: "تحريك للأعلى" label_sort_lower: "تحريك للأسفل" label_sorting: "جاري الترتيب" + label_spent_time: "الوقت المستهلك" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "عام" @@ -315,7 +334,9 @@ ar: label_subject: "الموضوع" label_this_week: "هذا الأسبوع" label_today: "اليوم" + label_time_entry_plural: "الوقت المستهلك" label_up: "الأعلى" + label_user_plural: "المستخدمين" label_activity_show_only_comments: "Show activities with comments only" label_activity_show_all: "Show all activities" label_total_progress: "%{percent} من التقدم الكلي" @@ -357,6 +378,7 @@ ar: label_wait: "الرجاء الانتظار للتكوين..." label_upload_counter: "%{done} من%{count} ملف انهيت" label_validation_error: "تعذر حفظ حزمة العمل نتيجة للأخطاء التالية:" + label_version_plural: "الإصدارات" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Show attribute help text entry' @@ -436,10 +458,16 @@ ar: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "المشاريع" + settings: "إعدادات" time_entry: activity: 'النشاط' comment: 'تعليق' hours: 'الساعات' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' watchers: label_loading: تحميل مشاهدين... label_error_loading: حدث خطأ خلال تحميل المشاهدين diff --git a/config/locales/crowdin/js-bg.yml b/config/locales/crowdin/js-bg.yml index 4b3eed38f2..4c289c50ed 100644 --- a/config/locales/crowdin/js-bg.yml +++ b/config/locales/crowdin/js-bg.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ bg: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Rate history" clipboard: browser_error: "Вашият браузър не поддържа копиране в клипборд. Моля копирайте избрания текст ръчно." copied_successful: "Копирането в клипборд е успешно!" @@ -171,6 +172,9 @@ bg: cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "Дейности (проследяване по време)" + enumeration_doc_categories: "Document categories" + enumeration_work_package_priorities: "Приоритети на работни пакети" filter: description: text_open_filter: "Отворете този филтър с клавишите \"ALT\" и клавишите за стрелки." @@ -192,6 +196,7 @@ bg: general_text_yes: "Да" general_text_No: "Не" general_text_Yes: "Да" + global_roles: Global Roles hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ bg: label_and: "и" label_ascending: "Възходящо" label_author: "Автор: %{user}" + label_avatar: "Аватар" label_between: "between" label_board: "Board" label_board_locked: "Заключен" @@ -235,6 +241,8 @@ bg: label_deactivate: "Деактивирай" label_descending: "Низходящо" label_description: "Описание" + label_details: "Подробности" + label_display: "Покажи" label_cancel_comment: "Отказване от коментар" label_closed_work_packages: "затворен" label_collapse: "Свий" @@ -255,22 +263,29 @@ bg: label_export: "Експортиране" label_filename: "Файл" label_filesize: "Размер" + label_general: "Общ" label_greater_or_equal: ">=" label_group: 'Група' label_group_by: "Групиране по" + label_group_plural: "Групи" label_hide_attributes: "Скрии детайли" label_hide_column: "Скрий колоната" label_hide_project_menu: "Collapse project menu" label_in: "в" label_in_less_than: "в по-малко от" label_in_more_than: "в повече от" + label_incoming_emails: "Входящи имейли" + label_information_plural: "Информация" label_import: "Import" label_latest_activity: "Latest activity" label_last_updated_on: "Последно актуализиран на" label_less_or_equal: "<=" label_less_than_ago: "по-скоро от няколко дни" label_loading: "Зареждане..." + label_mail_notification: "Известия по имейл" label_me: "мен" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Minutes" label_menu_collapse: "събери" label_menu_expand: "разтвори" label_more_than_ago: "повече от преди дни" @@ -291,12 +306,15 @@ bg: label_previous: "Предишен" label_per_page: "За страница:" label_please_wait: "Моля изчакайте" + label_project_plural: "Проекти" label_visibility_settings: "Visibility settings" label_quote_comment: "Цитиране на този коментар" label_reset: "Нулиране" label_remove_column: "Remove column" label_remove_columns: "Премахване на избраните колони" label_remove_row: "Remove row" + label_report: "Отчет" + label_repository_plural: "Хранилища" label_save_as: "Запиши като" label_select_watcher: "Изберете наблюдаващ..." label_selected_filter_list: "Избрани филтри" @@ -307,6 +325,7 @@ bg: label_sort_higher: "Премести нагоре" label_sort_lower: "Премести надолу" label_sorting: "Сортиране" + label_spent_time: "Отработено време" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Публичен" @@ -315,7 +334,9 @@ bg: label_subject: "Заглавие" label_this_week: "тази седмица" label_today: "днес" + label_time_entry_plural: "Отработено време" label_up: "Up" + label_user_plural: "Потребители" label_activity_show_only_comments: "Show activities with comments only" label_activity_show_all: "Show all activities" label_total_progress: "%{percent} % Общ напредък" @@ -357,6 +378,7 @@ bg: label_wait: "Моля, изчакайте за конфигурация..." label_upload_counter: "%{done} от %{count} файлове са завършени" label_validation_error: "Работния пакет не може да бъде съхранен поради следните грешки:" + label_version_plural: "Версии" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Show attribute help text entry' @@ -436,10 +458,16 @@ bg: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Проекти" + settings: "Настройки" time_entry: activity: 'Активност' comment: 'Коментар' hours: 'Часове' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' watchers: label_loading: Зареждане на наблюдаващи... label_error_loading: Възникна грешка при зареждане на наблюдатели diff --git a/config/locales/crowdin/js-ca.yml b/config/locales/crowdin/js-ca.yml index a42cb610a5..0e3489067b 100644 --- a/config/locales/crowdin/js-ca.yml +++ b/config/locales/crowdin/js-ca.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ ca: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Rate history" clipboard: browser_error: "El seu navegador no suporta copiar al porta-retalls. Si us plau, copieu el text seleccionat manualment." copied_successful: "S'ha copiat correctament al porta-retalls!" @@ -171,6 +172,9 @@ ca: cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "Activitats (seguidor de temps)" + enumeration_doc_categories: "Document categories" + enumeration_work_package_priorities: "Prioritats dels paquets de treball" filter: description: text_open_filter: "Obrir aquest filtre amb les tecles 'ALT' i cursors." @@ -192,6 +196,7 @@ ca: general_text_yes: "sí" general_text_No: "No" general_text_Yes: "Sí" + global_roles: Global Roles hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ ca: label_and: "i" label_ascending: "Ascendent" label_author: "Autor: %{user}" + label_avatar: "Avatar" label_between: "between" label_board: "Board" label_board_locked: "Bloquejat" @@ -235,6 +241,8 @@ ca: label_deactivate: "Desactivar" label_descending: "Descendent" label_description: "Descripció" + label_details: "Detalls" + label_display: "Mostrar" label_cancel_comment: "Comentari de cancel·lació" label_closed_work_packages: "tancat" label_collapse: "Replega" @@ -255,22 +263,29 @@ ca: label_export: "Exportar" label_filename: "Fitxer" label_filesize: "Mida" + label_general: "General" label_greater_or_equal: ">=" label_group: 'Grup' label_group_by: "Agrupa per" + label_group_plural: "Grups" label_hide_attributes: "Mostrar menys" label_hide_column: "Amagar columna" label_hide_project_menu: "Collapse project menu" label_in: "en" label_in_less_than: "en menys de" label_in_more_than: "en més de" + label_incoming_emails: "Correu electrònics d'entrada" + label_information_plural: "Informació" label_import: "Import" label_latest_activity: "Latest activity" label_last_updated_on: "La darrera actualització el" label_less_or_equal: "<=" label_less_than_ago: "fa menys de" label_loading: "Carregant..." + label_mail_notification: "Avisos de correu electrònic" label_me: "jo mateix" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Minutes" label_menu_collapse: "col·lapsar" label_menu_expand: "expandir" label_more_than_ago: "fa més dies" @@ -291,12 +306,15 @@ ca: label_previous: "Anterior" label_per_page: "Per pàgina:" label_please_wait: "Espereu, si us plau" + label_project_plural: "Projectes" label_visibility_settings: "Visibility settings" label_quote_comment: "Citar aquest comentari" label_reset: "Restablir" label_remove_column: "Remove column" label_remove_columns: "Treure les columnes seleccionades" label_remove_row: "Remove row" + label_report: "Informe" + label_repository_plural: "Repositoris" label_save_as: "Desa com a" label_select_watcher: "Seleccioneu un vigilant..." label_selected_filter_list: "Filtres seleccionats" @@ -307,6 +325,7 @@ ca: label_sort_higher: "Mou amunt" label_sort_lower: "Mou cap avall" label_sorting: "Ordenació" + label_spent_time: "Temps invertit" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Públic" @@ -315,7 +334,9 @@ ca: label_subject: "Assumpte" label_this_week: "aquesta setmana" label_today: "avui" + label_time_entry_plural: "Temps invertit" label_up: "Amunt" + label_user_plural: "Usuaris" label_activity_show_only_comments: "Show activities with comments only" label_activity_show_all: "Show all activities" label_total_progress: "%{percent}% Progrés total" @@ -357,6 +378,7 @@ ca: label_wait: "Si us plau esperi a la configuració..." label_upload_counter: "%{done} de %{count} arxius fets" label_validation_error: "El paquet de treball no es pot desar a causa dels següents errors:" + label_version_plural: "Versions" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Show attribute help text entry' @@ -436,10 +458,16 @@ ca: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Projectes" + settings: "Configuració" time_entry: activity: 'Activitat' comment: 'Comentari' hours: 'Hores' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' watchers: label_loading: carregant vigilants... label_error_loading: S'ha produït un error la càrrega dels vigilants diff --git a/config/locales/crowdin/js-cs.yml b/config/locales/crowdin/js-cs.yml index ce2912b308..646500d24e 100644 --- a/config/locales/crowdin/js-cs.yml +++ b/config/locales/crowdin/js-cs.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ cs: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Historie kurzů" clipboard: browser_error: "Váš prohlížeč nepodporuje, kopírování do schránky. Ručně zkopírujte vybraný text." copied_successful: "Úspešně zkopírováno do schránky!" @@ -171,6 +172,9 @@ cs: cannot_save_changes_with_message: "Nelze uložit změny kvůli následující chybě: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "Aktivity (sledování času)" + enumeration_doc_categories: "Document categories" + enumeration_work_package_priorities: "Priority pracovního balíčku" filter: description: text_open_filter: "Otevřete tento filtr \"ALT\" a šipkami." @@ -192,6 +196,7 @@ cs: general_text_yes: "ano" general_text_No: "Ne" general_text_Yes: "Ano" + global_roles: Globální role hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ cs: label_and: "a" label_ascending: "Vzestupně" label_author: "Autor: %{user}" + label_avatar: "Avatar" label_between: "mezi" label_board: "Board" label_board_locked: "Uzamčeno" @@ -235,6 +241,8 @@ cs: label_deactivate: "Deaktivovat" label_descending: "Sestupně" label_description: "Popis" + label_details: "Podrobnosti" + label_display: "Zobrazit" label_cancel_comment: "Stornovat komentář" label_closed_work_packages: "uzavřeno" label_collapse: "Sbalit" @@ -255,22 +263,29 @@ cs: label_export: "Export" label_filename: "Soubor" label_filesize: "Velikost" + label_general: "Obecné" label_greater_or_equal: ">=" label_group: 'Skupina' label_group_by: "Seskupit podle" + label_group_plural: "Skupiny" label_hide_attributes: "Zobrazit méně" label_hide_column: "Skrýt sloupec" label_hide_project_menu: "Sbalit nabídku projektu" label_in: "v" label_in_less_than: "za méně než" label_in_more_than: "za více než" + label_incoming_emails: "Příchozí e-maily" + label_information_plural: "Informace" label_import: "Import" label_latest_activity: "Poslední aktivita" label_last_updated_on: "Naposled aktualizováno" label_less_or_equal: "<=" label_less_than_ago: "před méně jak (dny)" label_loading: "Načítání..." + label_mail_notification: "E-mailová upozornění" label_me: "já" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Zápis" label_menu_collapse: "sbalit" label_menu_expand: "rozbalit" label_more_than_ago: "před více jak (dny)" @@ -291,12 +306,15 @@ cs: label_previous: "Předchozí" label_per_page: "Na stránku:" label_please_wait: "Čekejte prosím" + label_project_plural: "Projekty" label_visibility_settings: "Visibility settings" label_quote_comment: "Quote this comment" label_reset: "Obnovit" label_remove_column: "Remove column" label_remove_columns: "Odstranit vybrané sloupce" label_remove_row: "Remove row" + label_report: "Hlášení" + label_repository_plural: "Repozitáře" label_save_as: "Uložit jako" label_select_watcher: "Zvolte sledujícího..." label_selected_filter_list: "Vybrané filtry" @@ -307,6 +325,7 @@ cs: label_sort_higher: "Přesunout výš" label_sort_lower: "Přesunout níž" label_sorting: "Řazení" + label_spent_time: "Strávený čas" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Veřejné" @@ -315,7 +334,9 @@ cs: label_subject: "Předmět" label_this_week: "tento týden" label_today: "dnes" + label_time_entry_plural: "Strávený čas" label_up: "Nahoru" + label_user_plural: "Uživatelé" label_activity_show_only_comments: "Show activities with comments only" label_activity_show_all: "Show all activities" label_total_progress: "Celkový průběh %{percent}%" @@ -357,6 +378,7 @@ cs: label_wait: "Please wait for configuration..." label_upload_counter: "%{done} of %{count} files finished" label_validation_error: "The work package could not be saved due to the following errors:" + label_version_plural: "Verze" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Show attribute help text entry' @@ -436,10 +458,16 @@ cs: includes: "včetně" requires: "vyžaduje" required: "vyžadováno" + edit: + form_configuration: "Form Configuration" + projects: "Projekty" + settings: "Nastavení" time_entry: activity: 'Aktivita' comment: 'Komentář' hours: 'Hodiny' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' watchers: label_loading: loading watchers... label_error_loading: An error occurred while loading the watchers diff --git a/config/locales/crowdin/js-da.yml b/config/locales/crowdin/js-da.yml index 0bde4f4154..23ecf9c751 100644 --- a/config/locales/crowdin/js-da.yml +++ b/config/locales/crowdin/js-da.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ da: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Satshistorik" clipboard: browser_error: "Din browser understøtter ikke kopiering til Udklipsholder. Kopiér venligst den markerede tekst manuelt." copied_successful: "Kopieret til Udklipsholder!" @@ -170,6 +171,9 @@ da: cannot_save_changes_with_message: "Kan ikke gemme dine ændringer på grund af følgende fejl: %{error}" query_saving: "Visningen kunne ikke gemmes." embedded_table_loading: "Den indlejrede visning kunne ikke indlæses: %{message}" + enumeration_activities: "Aktiviteter (styring af tid)" + enumeration_doc_categories: "Dokumentkategorier" + enumeration_work_package_priorities: "Prioritering af arbejdspakker" filter: description: text_open_filter: "Åbn dette filter med 'ALT' og pile tasterne." @@ -191,6 +195,7 @@ da: general_text_yes: "ja" general_text_No: "Nej" general_text_Yes: "Ja" + global_roles: Global Roles hal: error: update_conflict_refresh: "Klik her for at opdatere til den nyeste version." @@ -221,6 +226,7 @@ da: label_and: "og" label_ascending: "Stigende" label_author: "Forfatter: %{user}" + label_avatar: "Avatar" label_between: "mellem" label_board: "Board" label_board_locked: "Låst" @@ -234,6 +240,8 @@ da: label_deactivate: "Deaktivér" label_descending: "Faldende" label_description: "Beskrivelse" + label_details: "Detaljer" + label_display: "Vis" label_cancel_comment: "Annuller kommentar" label_closed_work_packages: "lukket" label_collapse: "Fold sammen" @@ -254,22 +262,29 @@ da: label_export: "Eksportér" label_filename: "Fil" label_filesize: "Størrelse" + label_general: "Generelle" label_greater_or_equal: ">=" label_group: 'Gruppe' label_group_by: "Gruppér efter" + label_group_plural: "Grupper" label_hide_attributes: "Vis mindre" label_hide_column: "Gem kolonne" label_hide_project_menu: "Collapse project menu" label_in: "i" label_in_less_than: "på mindre end" label_in_more_than: "på mere end" + label_incoming_emails: "Indkommende e-mails" + label_information_plural: "Information" label_import: "Import" label_latest_activity: "Latest activity" label_last_updated_on: "Senest opdateret den" label_less_or_equal: "<=" label_less_than_ago: "mindre end dage siden" label_loading: "Henter..." + label_mail_notification: "E-mail-påmindelser" label_me: "mig" + label_meeting_agenda: "Dagsorden" + label_meeting_minutes: "Referat" label_menu_collapse: "Fold menu sammen" label_menu_expand: "Fold menu ud" label_more_than_ago: "mere end dage siden" @@ -290,12 +305,15 @@ da: label_previous: "Foregående" label_per_page: "Per side:" label_please_wait: "Please wait" + label_project_plural: "Projekter" label_visibility_settings: "Visibility settings" label_quote_comment: "Citér denne kommentar" label_reset: "Nulstil" label_remove_column: "Remove column" label_remove_columns: "Fjern valgte kolonner" label_remove_row: "Remove row" + label_report: "Rapport" + label_repository_plural: "Projektarkiver" label_save_as: "Gem som" label_select_watcher: "Vælg en tilsynsførende..." label_selected_filter_list: "Valgte filtre" @@ -306,6 +324,7 @@ da: label_sort_higher: "Flyt op" label_sort_lower: "Flyt ned" label_sorting: "Sorterer" + label_spent_time: "Anvendt tid" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Offentlig" @@ -314,7 +333,9 @@ da: label_subject: "Emne" label_this_week: "denne uge" label_today: "i dag" + label_time_entry_plural: "Anvendt tid" label_up: "Up" + label_user_plural: "Brugere" label_activity_show_only_comments: "Show activities with comments only" label_activity_show_all: "Show all activities" label_total_progress: "Samlet fremskridt: %{percent}%" @@ -356,6 +377,7 @@ da: label_wait: "Vent venligst på opsætning..." label_upload_counter: "%{done} af %{count} filer færdige" label_validation_error: "Arbejdspakken kunne ikke gemmes grundet følgende fejl:" + label_version_plural: "Versioner" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Vis attributten til hjælpetekst' @@ -435,10 +457,16 @@ da: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Projekter" + settings: "Indstillinger" time_entry: activity: 'Aktivivtet' comment: 'Kommentér' hours: 'Timer' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' watchers: label_loading: indlæser iagttagere... label_error_loading: En fejl opstod under indlæsning af seere diff --git a/config/locales/crowdin/js-de.yml b/config/locales/crowdin/js-de.yml index 38e8da943b..c2e5d5f12a 100644 --- a/config/locales/crowdin/js-de.yml +++ b/config/locales/crowdin/js-de.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ de: inline: 'Hervorheben neben Attribut:' entire_card_by: 'Gesamte Karte nach' remove_from_list: 'Karte aus Liste entfernen' + caption_rate_history: "Stundensatz-Historie" clipboard: browser_error: "Ihr Browser unterstützt das Kopieren in die Zwischenablage nicht nativ. Bitte selektieren und kopieren Sie den Text händisch." copied_successful: "Erfolgreich in die Zwischenablage kopiert!" @@ -170,6 +171,9 @@ de: cannot_save_changes_with_message: "Ihre Änderungen können nicht gespeichert werden. Fehler: %{error}" query_saving: "Die Ansicht konnte nicht gespeichert werden." embedded_table_loading: "Die eingebettete Ansicht konnte nicht geladen werden: %{message}" + enumeration_activities: "Aktivitäten (Zeiterfassung)" + enumeration_doc_categories: "Dokumentenkategorien" + enumeration_work_package_priorities: "Arbeitspaket-Prioritäten" filter: description: text_open_filter: "Öffnen Sie diesen Filter mittels \"Alt\" und den Pfeiltasten." @@ -191,6 +195,7 @@ de: general_text_yes: "ja" general_text_No: "Nein" general_text_Yes: "Ja" + global_roles: Globale Rollen hal: error: update_conflict_refresh: "Klicken Sie hier, um die Ressource auf die neueste Version zu aktualisieren." @@ -221,6 +226,7 @@ de: label_and: "und" label_ascending: "Aufsteigend" label_author: "Autor: %{user}" + label_avatar: "Profilbild" label_between: "zwischen" label_board: "Board" label_board_locked: "Gesperrt" @@ -234,6 +240,8 @@ de: label_deactivate: "Deaktiviere" label_descending: "Absteigend" label_description: "Beschreibung" + label_details: "Details" + label_display: "Anzeige" label_cancel_comment: "Kommentar abbrechen" label_closed_work_packages: "Geschlossen" label_collapse: "Zuklappen" @@ -254,22 +262,29 @@ de: label_export: "Exportieren" label_filename: "Datei" label_filesize: "Größe" + label_general: "Allgemein" label_greater_or_equal: ">=" label_group: 'Gruppe' label_group_by: "Gruppiere Ergebnisse" + label_group_plural: "Gruppen" label_hide_attributes: "Weniger anzeigen" label_hide_column: "Spalte ausblenden" label_hide_project_menu: "Projektmenü einklappen" label_in: "an" label_in_less_than: "in weniger als" label_in_more_than: "in mehr als" + label_incoming_emails: "Eingehende E-Mails" + label_information_plural: "Information" label_import: "Import" label_latest_activity: "Letzte Änderungen" label_last_updated_on: "Zuletzt aktualisiert am" label_less_or_equal: "<=" label_less_than_ago: "vor weniger als (Tage)" label_loading: "Lade..." + label_mail_notification: "Mailbenachrichtigung" label_me: "ich" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Protokoll" label_menu_collapse: "zusammenklappen" label_menu_expand: "ausklappen" label_more_than_ago: "vor mehr als (Tage)" @@ -290,12 +305,15 @@ de: label_previous: "Zurück" label_per_page: "Pro Seite:" label_please_wait: "Bitte warten" + label_project_plural: "Projekte" label_visibility_settings: "Sichtbarkeits-Einstellungen" label_quote_comment: "Diesen Kommentar zitieren" label_reset: "Zurücksetzen" label_remove_column: "Spalte entfernen" label_remove_columns: "Ausgewählte Spalten entfernen" label_remove_row: "Zeile entfernen" + label_report: "Report" + label_repository_plural: "Projektarchive" label_save_as: "Speichern unter" label_select_watcher: "Beobachter auswählen ..." label_selected_filter_list: "Ausgewählte Filter" @@ -306,6 +324,7 @@ de: label_sort_higher: "Eins höher" label_sort_lower: "Eins tiefer" label_sorting: "Sortierung" + label_spent_time: "Aufgewendete Zeit" label_star_query: "Favorisiert" label_press_enter_to_save: "Drücken Sie Enter zum Speichern." label_public_query: "Öffentlich" @@ -314,7 +333,9 @@ de: label_subject: "Thema" label_this_week: "aktuelle Woche" label_today: "heute" + label_time_entry_plural: "Aufgewendete Zeit" label_up: "Nach oben" + label_user_plural: "Benutzer" label_activity_show_only_comments: "Nur Aktivitäten mit Kommentaren" label_activity_show_all: "Alle Aktivitäten anzeigen" label_total_progress: "%{percent}% Gesamtfortschritt" @@ -356,6 +377,7 @@ de: label_wait: "Bitte warten Sie auf die Konfiguration..." label_upload_counter: "%{done} von %{count} Dateien fertig" label_validation_error: "Das Arbeitspaket konnte aufgrund folgender Fehler nicht gespeichert werden:" + label_version_plural: "Versionen" label_view_has_changed: "Diese Ansicht hat ungespeicherte Änderungen. Klicken, um sie zu speichern." help_texts: show_modal: 'Hilfe-Text für dieses Attribut anzeigen' @@ -435,10 +457,16 @@ de: includes: "die einschließend sind von" requires: "die erfordernd sind von" required: "die benötigt werden von" + edit: + form_configuration: "Form Configuration" + projects: "Projekte" + settings: "Einstellungen" time_entry: activity: 'Aktivität' comment: 'Kommentar' hours: 'Stunden' + two_factor_authentication: + label_two_factor_authentication: 'Zwei-Faktor-Authentifizierung' watchers: label_loading: Lade Beobachter... label_error_loading: Beim Laden der Beobachter ist ein Fehler aufgetreten diff --git a/config/locales/crowdin/js-el.yml b/config/locales/crowdin/js-el.yml index f40a15e621..4451d0b321 100644 --- a/config/locales/crowdin/js-el.yml +++ b/config/locales/crowdin/js-el.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -79,7 +79,8 @@ el: highlighting: inline: 'Επισήμανση inline:' entire_card_by: 'Ολόκληρη κάρτα με' - remove_from_list: 'Αφαίρεση από τη λίστα' + remove_from_list: 'Αφαίρεση κάρτας από τη λίστα' + caption_rate_history: "Ιστορικό αμοιβής" clipboard: browser_error: "Ο περιηγητής σας δεν υποστηρίζει αντιγραφή από το clipboard. Παρακαλούμε αντιγράψτε το επιλεγμένο κείμενο χειροκίνητα." copied_successful: "Επιτυχής αντιγραφή στο πρόχειρο!" @@ -94,10 +95,10 @@ el: pie: 'Πίτα' doughnut: 'Ντόνατ' radar: 'Ραντάρ' - polar_area: 'Polar area' + polar_area: 'Πολική περιοχή' tabs: graph_settings: 'Γενικά' - dataset: 'Dataset %{number}' + dataset: 'Σύνολο Δεδομένων %{number}' errors: could_not_load: 'Τα δεδομένα για εμφάνιση στο διάγραμμα δεν μπόρεσαν να φορτωθούν. Μπορεί να λείπουν τα απαραίτητα δικαιώματα.' description_available_columns: "Διαθέσιμες στήλες" @@ -158,7 +159,7 @@ el: drag_to_activate: "Σύρετε πεδία από εδώ για να τα ενεργοποιήσετε" add_group: "Προσθήκη ομάδας χαρακτηριστικών" add_table: "Προσθήκη πίνακα με σχετιζόμενες εργασίες" - edit_query: 'Edit query' + edit_query: 'Επεξεργασία αναζήτησης' new_group: 'Νέα ομάδα' reset_to_defaults: 'Επαναφορά στα προεπιλεγμένα' custom_actions: @@ -170,6 +171,9 @@ el: cannot_save_changes_with_message: "Δεν μπορούμε να αποθηκεύσουμε τις αλλαγές σας λόγω του ακολούθου σφάλματος: %{error}" query_saving: "Δεν ήταν δυνατή η αποθήκευση της προβολής." embedded_table_loading: "Δεν ήταν δυνατή η φόρτωση της ενσωματωμένης προβολής: %{message}" + enumeration_activities: "Δραστηριότητες (παρακολούθηση χρόνου)" + enumeration_doc_categories: "Κατηγορίες εγγράφων" + enumeration_work_package_priorities: "Προτεραιότητες πακέτου εργασίας" filter: description: text_open_filter: "Ανοίξτε αυτό το φίλτρο με το 'ALT' και τα πλήκτρα βέλους." @@ -191,6 +195,7 @@ el: general_text_yes: "ναι" general_text_No: "Όχι" general_text_Yes: "Ναι" + global_roles: Γενικοί ρόλοι hal: error: update_conflict_refresh: "Κάντε κλικ εδώ για να ανανεώσετε τον πόρο και να κάνετε ενημέρωση στην τελευταία έκδοση." @@ -202,8 +207,8 @@ el: blocks: new_features: text_new_features: "Διαβάστε για τις νέες λειτουργίες και τις ενημερώσεις προϊόντων." - current_new_feature_html: "OpenProject contains a new Overview page to display important project information and show whether the project is on track.
    You can insert various new status widgets, such as: " - learn_about: "Learn more about the new status widgets" + current_new_feature_html: "Το OpenProject περιέχει μια νέα σελίδα Επισκόπηση για να εμφανίσετε σημαντικές πληροφορίες έργου και να δείξει εάν το έργο βρίσκεται εντός χρονοδιαγράμματος.
    Μπορείτε να εισάγετε διάφορα widgets για την κατάσταση, όπως: " + learn_about: "Μάθετε περισσότερα σχετικά με τα νέα widgets" label_activate: "Ενεργοποίηση" label_add_column_after: "Προσθήκη στήλης μετά" label_add_column_before: "Προσθήκη στήλης πριν" @@ -221,6 +226,7 @@ el: label_and: "και" label_ascending: "Αύξουσα" label_author: "Συγγραφέας: %{user}" + label_avatar: "Άβαταρ" label_between: "μεταξύ" label_board: "Πίνακας" label_board_locked: "Κλειδωμένο" @@ -234,6 +240,8 @@ el: label_deactivate: "Απενεργοποίηση" label_descending: "Φθίνουσα" label_description: "Περιγραφή" + label_details: "Λεπτομέρειες" + label_display: "Εμφάνιση" label_cancel_comment: "Ακύρωση σχολίου" label_closed_work_packages: "κλειστό" label_collapse: "Σύμπτυξη" @@ -254,22 +262,29 @@ el: label_export: "Εξαγωγή" label_filename: "Aρχείο" label_filesize: "Μέγεθος" + label_general: "Γενικά" label_greater_or_equal: ">=" label_group: 'Ομάδα' label_group_by: "Ομαδοποίηση κατά" + label_group_plural: "Ομάδες" label_hide_attributes: "Εμφάνιση λιγότερων" label_hide_column: "Απόκρυψη στήλης" label_hide_project_menu: "Σύμπτυξη του μενού έργου" label_in: "σε" label_in_less_than: "σε λιγότερο από" label_in_more_than: "σε περισσότερο από" + label_incoming_emails: "Εισερχόμενα email" + label_information_plural: "Πληροφορίες" label_import: "Εισαγωγή" label_latest_activity: "Τελευταία δραστηριότητα" label_last_updated_on: "Τελευταία ενημέρωση στις" label_less_or_equal: "<=" label_less_than_ago: "σε λιγότερο από ημέρες πριν" label_loading: "Φόρτωση..." + label_mail_notification: "Ειδοποιήσεις email" label_me: "εγώ" + label_meeting_agenda: "Ατζέντα" + label_meeting_minutes: "Πρακτικά" label_menu_collapse: "σύμπτυξη" label_menu_expand: "επέκταση" label_more_than_ago: "σε περισσότερο από ημέρες πριν" @@ -290,12 +305,15 @@ el: label_previous: "Προηγούμενο" label_per_page: "Ανά σελίδα:" label_please_wait: "Παρακαλώ περιμένετε" + label_project_plural: "Έργα" label_visibility_settings: "Ρυθμίσεις ορατότητας" label_quote_comment: "Παραθέστε αυτό το σχόλιο" label_reset: "Επαναφορά" label_remove_column: "Κατάργηση στήλης" label_remove_columns: "Αφαιρέστε τις επιλεγμένες στήλες" label_remove_row: "Κατάργηση γραμμής" + label_report: "Αναφορά" + label_repository_plural: "Αποθετήρια" label_save_as: "Αποθήκευση ως" label_select_watcher: "Επιλέξτε έναν παρατηρητή..." label_selected_filter_list: "Επιλεγμένα φίλτρα" @@ -306,6 +324,7 @@ el: label_sort_higher: "Μετακίνηση προς τα πάνω" label_sort_lower: "Μετακίνηση προς τα κάτω" label_sorting: "Ταξινόμηση" + label_spent_time: "Χρόνος που δαπανήθηκε" label_star_query: "Αγαπημένο" label_press_enter_to_save: "Πατήστε enter για αποθήκευση." label_public_query: "Δημόσιο" @@ -314,7 +333,9 @@ el: label_subject: "Θέμα" label_this_week: "αυτή την εβδομάδα" label_today: "σήμερα" + label_time_entry_plural: "Χρόνος που δαπανήθηκε" label_up: "Πάνω" + label_user_plural: "Χρήστες" label_activity_show_only_comments: "Εμφάνιση μόνο δραστηριοτήτων με σχόλια" label_activity_show_all: "Εμφάνιση όλων των δραστηριοτήτων" label_total_progress: "%{percent}% Συνολική πρόοδος" @@ -356,6 +377,7 @@ el: label_wait: "Παρακαλώ περιμένετε για την διαμόρφωση..." label_upload_counter: "Ολοκληρώθηκαν %{done} από %{count} αρχεία" label_validation_error: "Δεν ήταν δυνατή η αποθήκευση του πακέτου εργασίας λόγω των ακόλουθων σφαλμάτων:" + label_version_plural: "Εκδόσεις" label_view_has_changed: "Η προβολή έχει μη αποθηκευμένες αλλαγές. Κάντε κλικ για τις αποθηκεύσετε." help_texts: show_modal: 'Εμφανίστε το χαρακτηριστικό καταχώρησης κειμένου βοήθειας' @@ -373,17 +395,17 @@ el: wiki: 'Μέσα στο Wiki μπορείτε να καταγράψετε και να μοιραστείτε γνώση μαζί με την ομάδα σας.' backlogs: overview: "Διαχειριστείτε την εργασία σας στην προβολή Backlogs.
    Στα δεξιά υπάρχει το Backlog Προϊόντων ή το Backlog Σφαλμάτων, στα αριστερά τα αντίστοιχα sprints. Εδώ μπορείτε να δημιουργήσετε epics, ιστορίες χρηστών και σφάλματα, να δώσετε προτεραιότητα μέσω drag and drop και να τα προσθέσετε σε ένα sprint." - task_board_arrow: 'Για να δείτε τον Πίνακα Καθηκόντων σας, ανοίξτε το αναπτυσσόμενο μενού Sprint...' - task_board_select: '... και επιλέξτε την καταχώρηση Πίνακας Καθηκόντων.' - task_board: "Ο Πίνακας Καθηκόντων οπτικοποιεί την διαδικασία για αυτό το sprint. Προσθέστε καινούργια καθήκοντα ή εμπόδια με το εικονίδιο + δίπλα σε μια ιστορία χρήστη. Μέσω drag'n'drop μπορείτε να ενημερώσετε την κατάσταση." + task_board_arrow: 'Για να δείτε τον Πίνακα Εργασιών σας, ανοίξτε το αναπτυσσόμενο μενού Sprint...' + task_board_select: '... και επιλέξτε την καταχώρηση Πίνακας Εργασιών.' + task_board: "Ο Πίνακας Εργασιών οπτικοποιεί την διαδικασία για αυτό το sprint. Προσθέστε καινούργιες εργασίες ή εμπόδια με το εικονίδιο + δίπλα σε μια ιστορία χρήστη. Μέσω drag'n'drop μπορείτε να ενημερώσετε την κατάσταση." boards: - overview: 'Manage your work within an intuitive Boards view.' + overview: 'Διαχειριστείτε την εργασία σας μέσα από την διαισθητική προβολή Πινάκων.' lists: 'Μπορείτε να δημιουργήσετε πολλαπλές λίστες (στήλες) μέσα σε μια προβολή Πίνακα, π.χ. να δημιουργήσετε έναν πίνακα KANBAN.' add: 'Κάντε κλικ στο + για να προσθέσετε μια νέα κάρτα στη λίστα μέσα σε ένα Πίνακα.' - drag: 'Drag & Drop your cards within a list to re-order, or to another list. A double click will open the details view.' + drag: 'Σύρετε τις κάρτες μέσα στη λίστα για να αλλάξετε την σειρά ή σε άλλη λίστα. Με διπλό κλικ μπορείτε να ανοίξετε την προβολή λεπτομερειών.' wp: toggler: "Τώρα ας ρίξουμε μια ματιά στη ενότητα Πακέτα εργασίας, η οποία δίνει μια πιο λεπτομερή ματιά της εργασίας σας." - list: 'Αυτή είναι η λίστα Πακέτων εργασίας με τις σημαντικές εργασίας για το έργο σας, όπως καθήκοντα, λειτουργίες, ορόσημα, σφάλματα και άλλα.
    Μπορείτε να δημιουργήσετε ή να επεξεργαστείτε ένα πακέτο εργασίας απευθείας από αυτή τη λίστα. Για να δείτε τις λεπτομέρειες του, μπορείτε να κάνετε διπλό κλικ σε μια από τις γραμμές.' + list: 'Αυτή είναι η λίστα Πακέτων εργασίας με τις σημαντικές εργασίες για το έργο σας, όπως εργασίες, λειτουργίες, ορόσημα, σφάλματα και άλλα.
    Μπορείτε να δημιουργήσετε ή να επεξεργαστείτε ένα πακέτο εργασίας απευθείας από αυτή τη λίστα. Για να δείτε τις λεπτομέρειες του, μπορείτε να κάνετε διπλό κλικ σε μια από τις γραμμές.' full_view: 'Μέσα στις λεπτομέρειες του πακέτου εργασίας θα βρείτε όλες τις σχετικές πληροφορίες, όπως την περιγραφή, την κατάσταση, την προτεραιότητα, τις δραστηριότητες, τις εξαρτήσεις και τα σχόλια του.' back_button: 'Με το βέλος μπορείτε να πλοηγηθείτε πίσω στην λίστα πακέτων εργασίας.' create_button: 'Το κουμπί Δημιουργία θα προσθέσει ένα καινούργιο πακέτο εργασίας στο έργο σας.' @@ -419,7 +441,7 @@ el: confirm_reset: > Προειδοποίηση: Είστε σίγουροι ότι θέλετε να επαναφέρετε τη φόρμα διαμόρφωσης; Αυτό θα επαναφέρει τα χαρακτηριστικά στις προεπιλεγμένες ομάδες τους και θα απενεργοποιήσει ΌΛΑ τα προσαρμοσμένα πεδία. upgrade_to_ee: "Αναβαθμίστε σε Έκδοση για Επιχειρήσεις" - upgrade_to_ee_text: "Wow! Αν χρειάζεστε αυτή τη λειτουργία τότε είστε σούπερ επαγγελματίας! Θα θέλατε να υποστηρίξετε εμάς τους προγραμματιστές OpenSource με το να γίνετε πελάτης της έκδοσης για επιχειρήσεις;" + upgrade_to_ee_text: "Wow! Αν χρειάζεστε αυτή τη λειτουργία τότε είστε σούπερ επαγγελματίας! Θα θέλατε να στηρίξετε εμάς τους προγραμματιστές OpenSource με το να γίνετε πελάτης της έκδοσης για επιχειρήσεις;" more_information: "Περισσότερες πληροφορίες" nevermind: "Δεν πειράζει" filter_types: @@ -435,10 +457,16 @@ el: includes: "συμπεριλαμβανομένου" requires: "απαιτώντας" required: "απαιτείται από" + edit: + form_configuration: "Form Configuration" + projects: "Έργα" + settings: "Ρυθμίσεις" time_entry: activity: 'Δραστηριότητα' comment: 'Σχόλιο' hours: 'Ώρες' + two_factor_authentication: + label_two_factor_authentication: 'Ταυτοποίηση δύο παραγόντων' watchers: label_loading: φορτώνονται οι παρατηρητές... label_error_loading: Παρουσιάστηκε σφάλμα κατά τη φόρτωση των παρατηρητών @@ -469,7 +497,7 @@ el: set_parent: "Ορισμός γονέα" change_parent: "Αλλαγή γονέα" remove_parent: "Αφαίρεση γονέα" - hierarchy_indent: "Indent hierarchy" + hierarchy_indent: "Ιεραρχία εσοχής" hierarchy_outdent: "Outdent hierarchy" group_by_wp_type: "Ομαδοποίηση κατά τύπο πακέτου εργασίας" group_by_relation_type: "Ομαδοποίηση κατά τύπο συσχέτισης" @@ -709,7 +737,7 @@ el: confirm_edit_cancel: "Είστε βέβαιοι ότι θέλετε να ακυρώσετε την επεξεργασία του ονόματος αυτής της προβολής; Ο τίτλος θα επανέλθει στην προηγούμενη τιμή του." click_to_edit_query_name: "Κάντε κλικ για να επεξεργαστείτε τον τίτλο αυτής της προβολής." rename_query_placeholder: "Το όνομα αυτής της προβολής" - star_text: "Mark this view as favorite and add to the saved views sidebar on the left." + star_text: "Σήμανση αυτής της προβολής ως αγαπημένη και προσθήκη στην πλάγια μπάρα αποθηκευμένων προβολών στα αριστερά." public_text: > Publish this view, allowing other users to access your view. Users with the 'Manage public views' permission can modify or remove public query. This does not affect the visibility of work package results in that view and depending on their permissions, users may see different results. errors: diff --git a/config/locales/crowdin/js-es.yml b/config/locales/crowdin/js-es.yml index 8f86d76ecf..e971bb15da 100644 --- a/config/locales/crowdin/js-es.yml +++ b/config/locales/crowdin/js-es.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ es: inline: 'Resaltar en línea:' entire_card_by: 'Toda la tarjeta en' remove_from_list: 'Eliminar tarjeta de la lista' + caption_rate_history: "Historial de tasa" clipboard: browser_error: "Su navegador no soporta copiar al portapapeles. Por favor, copie el texto seleccionado manualmente." copied_successful: "¡Copiado correctamente en el portapapeles!" @@ -171,6 +172,9 @@ es: cannot_save_changes_with_message: "No se pueden guardar los cambios debido al siguiente error: %{error}" query_saving: "No se pudo guardar la vista." embedded_table_loading: "No se pudo cargar la vista insertada: %{message}" + enumeration_activities: "Actividades (tiempo de seguimiento)" + enumeration_doc_categories: "Categorías de documentos" + enumeration_work_package_priorities: "Prioridades del paquete de trabajo" filter: description: text_open_filter: "Abrir este filtro con 'ALT' y las flechas de dirección." @@ -192,6 +196,7 @@ es: general_text_yes: "sí" general_text_No: "No" general_text_Yes: "Sí" + global_roles: Roles globales hal: error: update_conflict_refresh: "Haga clic aquí para actualizar el recurso y cambiar a la versión más reciente." @@ -222,6 +227,7 @@ es: label_and: "y" label_ascending: "Ascendente" label_author: "Autor: %{user}" + label_avatar: "Avatar" label_between: "entre" label_board: "Tablero" label_board_locked: "Bloqueado" @@ -235,6 +241,8 @@ es: label_deactivate: "Desactivar" label_descending: "Descendente" label_description: "Descripción" + label_details: "Detalles" + label_display: "Mostrar" label_cancel_comment: "Cancelar comentario" label_closed_work_packages: "cerrado" label_collapse: "Colapsar" @@ -255,22 +263,29 @@ es: label_export: "Exportar" label_filename: "Archivo" label_filesize: "Tamaño" + label_general: "General" label_greater_or_equal: ">=" label_group: 'Grupo' label_group_by: "Agrupar por" + label_group_plural: "Grupos" label_hide_attributes: "Mostrar menos" label_hide_column: "Esconder Columna" label_hide_project_menu: "Contraer menú de proyecto" label_in: "en" label_in_less_than: "en menos de" label_in_more_than: "en más de" + label_incoming_emails: "Correos electrónicos entrantes" + label_information_plural: "Información" label_import: "Importar" label_latest_activity: "Actividad reciente" label_last_updated_on: "Ultima actualizacion realizada el" label_less_or_equal: "<=" label_less_than_ago: "menos que hace días" label_loading: "Cargando..." + label_mail_notification: "Notificaciones de correo electrónico" label_me: "mi" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Minutos" label_menu_collapse: "colapsar" label_menu_expand: "expandir" label_more_than_ago: "más días atrás" @@ -291,12 +306,15 @@ es: label_previous: "Anterior" label_per_page: "Por pagina:" label_please_wait: "Por favor, espere" + label_project_plural: "Proyectos" label_visibility_settings: "Configuración de visibilidad" label_quote_comment: "Citar este comentario" label_reset: "Reiniciar" label_remove_column: "Eliminar columna" label_remove_columns: "Eliminar columnas seleccionadas" label_remove_row: "Eliminar fila" + label_report: "Informe" + label_repository_plural: "Repositorios" label_save_as: "Guardad como" label_select_watcher: "Selecciona un observador..." label_selected_filter_list: "Filtros seleccionados" @@ -307,6 +325,7 @@ es: label_sort_higher: "Mover hacia arriba" label_sort_lower: "Mover hacia abajo" label_sorting: "Ordenando" + label_spent_time: "Tiempo empleado" label_star_query: "Favorecido" label_press_enter_to_save: "Presione Entrar para guardar los cambios." label_public_query: "Público" @@ -315,7 +334,9 @@ es: label_subject: "Asunto" label_this_week: "esta semana" label_today: "hoy" + label_time_entry_plural: "Tiempo empleado" label_up: "Arriba" + label_user_plural: "Usuarios" label_activity_show_only_comments: "Solo mostrar las actividades con comentarios" label_activity_show_all: "Mostrar todas las actividades" label_total_progress: "Progreso total: %{percent}%" @@ -357,6 +378,7 @@ es: label_wait: "Por favor espere para la configuración..." label_upload_counter: "%{done} de %{count} archivos terminados" label_validation_error: "El paquete de trabajo no puede ser guardado debido a los errores siguientes:" + label_version_plural: "Versiones" label_view_has_changed: "Esta vista tiene cambios sin guardar. Haga clic para guardarlos." help_texts: show_modal: 'Mostrar entrada de texto de ayuda para atributo' @@ -436,10 +458,16 @@ es: includes: "incluido" requires: "requiere" required: "requerido por" + edit: + form_configuration: "Form Configuration" + projects: "Proyectos" + settings: "Configuración" time_entry: activity: 'Actividad' comment: 'Comentario' hours: 'Horas' + two_factor_authentication: + label_two_factor_authentication: 'Autenticación de dos factores' watchers: label_loading: cargando observadores... label_error_loading: Se ha producido un error al cargar los observadores diff --git a/config/locales/crowdin/js-fi.yml b/config/locales/crowdin/js-fi.yml index 545b16b5ab..1af9518585 100644 --- a/config/locales/crowdin/js-fi.yml +++ b/config/locales/crowdin/js-fi.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ fi: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Tuntihinnan historia" clipboard: browser_error: "Selaimesi ei tue kopiointia leikepöydälle. Kopioi valittu teksti manuaalisesti." copied_successful: "Onnistuneesti kopioitu leikepöydälle!" @@ -171,6 +172,9 @@ fi: cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "Historia (ajan seuranta)" + enumeration_doc_categories: "Tiedostoluokat" + enumeration_work_package_priorities: "Work package priorities" filter: description: text_open_filter: "Avaa suodatin \"Alt\"-näppäintä ja nuolinäppäimiä käyttämällä." @@ -192,6 +196,7 @@ fi: general_text_yes: "kyllä" general_text_No: "Ei" general_text_Yes: "Kyllä" + global_roles: Yleiset roolit hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ fi: label_and: "and" label_ascending: "Nouseva" label_author: "Tekijä: %{user}" + label_avatar: "Avatar" label_between: "between" label_board: "Board" label_board_locked: "Lukittu" @@ -235,6 +241,8 @@ fi: label_deactivate: "Poistaa käytöstä" label_descending: "Laskeva" label_description: "Kuvaus" + label_details: "Yksityiskohdat" + label_display: "Näytä" label_cancel_comment: "Peruuta kommentti" label_closed_work_packages: "suljettu" label_collapse: "Pienennä" @@ -255,22 +263,29 @@ fi: label_export: "Vie" label_filename: "Tiedosto" label_filesize: "Koko" + label_general: "Yleinen" label_greater_or_equal: ">=" label_group: 'Ryhmä' label_group_by: "Ryhmittely" + label_group_plural: "Ryhmät" label_hide_attributes: "Näytä vähemmän" label_hide_column: "Piilota sarake" label_hide_project_menu: "Collapse project menu" label_in: "tässä" label_in_less_than: "pienempi kuin" label_in_more_than: "suurempi kuin" + label_incoming_emails: "Saapuvat sähköpostiviestit" + label_information_plural: "Tieto" label_import: "Import" label_latest_activity: "Latest activity" label_last_updated_on: "Viimeisin päivitys" label_less_or_equal: "<=" label_less_than_ago: "vähemmän kuin päivää sitten" label_loading: "Lataa..." + label_mail_notification: "Sähköposti-ilmoitukset" label_me: "minä" + label_meeting_agenda: "Esityslista" + label_meeting_minutes: "Pöytäkirja" label_menu_collapse: "pienennä" label_menu_expand: "laajenna" label_more_than_ago: "enemän kuin päivää sitten" @@ -291,12 +306,15 @@ fi: label_previous: "Edellinen" label_per_page: "Sivulla:" label_please_wait: "Odota hetki" + label_project_plural: "Projektit" label_visibility_settings: "Visibility settings" label_quote_comment: "Lainaa tämä kommentti" label_reset: "Nollaus" label_remove_column: "Remove column" label_remove_columns: "Poista valitut sarakkeet" label_remove_row: "Remove row" + label_report: "Raportti" + label_repository_plural: "Tietovarastot" label_save_as: "Tallenna nimellä" label_select_watcher: "Valitse seuraaja..." label_selected_filter_list: "Valitut suodattimet" @@ -307,6 +325,7 @@ fi: label_sort_higher: "Siirrä ylös" label_sort_lower: "Siirrä alas" label_sorting: "Lajittelu" + label_spent_time: "Käytetty aika" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Julkinen" @@ -315,7 +334,9 @@ fi: label_subject: "Aihe" label_this_week: "tällä viikolla" label_today: "tänään" + label_time_entry_plural: "Käytetty aika" label_up: "Ylös" + label_user_plural: "Käyttäjät" label_activity_show_only_comments: "Show activities with comments only" label_activity_show_all: "Show all activities" label_total_progress: "%{percent} % eteneminen" @@ -357,6 +378,7 @@ fi: label_wait: "Odota kokoonpanoa..." label_upload_counter: "%{done} tiedostoa %{count} tiedostosta valmiina" label_validation_error: "Työpakettia ei voitu tallentaa seuraavien virheiden vuoksi:" + label_version_plural: "Versiot" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Show attribute help text entry' @@ -436,10 +458,16 @@ fi: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Projektit" + settings: "Asetukset" time_entry: activity: 'Aktiviteetti' comment: 'Kommentti' hours: 'Tunnit' + two_factor_authentication: + label_two_factor_authentication: 'Kaksivaiheinen tunnistautuminen' watchers: label_loading: ladataan seuraajia... label_error_loading: Virhe ladattaessa seuraajia diff --git a/config/locales/crowdin/js-fil.yml b/config/locales/crowdin/js-fil.yml index d2efbbb2dc..f056c09dd0 100644 --- a/config/locales/crowdin/js-fil.yml +++ b/config/locales/crowdin/js-fil.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ fil: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Rate history" clipboard: browser_error: "Ang iyong browser ay hindi suporta ang pagkokopya sa clipboard. Mangayaring kopyahin ng manu-mano ang napiling teksto." copied_successful: "Matagumpay na kinopya sa clipboard!" @@ -171,6 +172,9 @@ fil: cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "Mga aktibidad (time tracking)" + enumeration_doc_categories: "Mga kategorya ng dokumento" + enumeration_work_package_priorities: "Ang mga prioridad ng work package" filter: description: text_open_filter: "Buksan ang filter na ito sa 'ALT' at ang mga arrow key." @@ -192,6 +196,7 @@ fil: general_text_yes: "oo" general_text_No: "Hindi" general_text_Yes: "Oo" + global_roles: Global Roles hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ fil: label_and: "at" label_ascending: "Pataas" label_author: "May-Akda: %{user}" + label_avatar: "Avatar" label_between: "sa pagitan ng" label_board: "Board" label_board_locked: "Naka-lock" @@ -235,6 +241,8 @@ fil: label_deactivate: "I-deactivate" label_descending: "Pababa" label_description: "Deskripsyon" + label_details: "Mga detalye" + label_display: "Ipakita" label_cancel_comment: "Ikansela ang komento" label_closed_work_packages: "isinara" label_collapse: "Bumagsak" @@ -255,22 +263,29 @@ fil: label_export: "I-export" label_filename: "File" label_filesize: "Sukat" + label_general: "Pangkalahatan" label_greater_or_equal: ">==" label_group: 'Grupo' label_group_by: "Pangkat sa" + label_group_plural: "Mga grupo" label_hide_attributes: "Magpakita ng mas kaunti" label_hide_column: "Itago ang mga hanay" label_hide_project_menu: "Collapse project menu" label_in: "sa" label_in_less_than: "mas mababa kaysa" label_in_more_than: "mahigit sa" + label_incoming_emails: "Papasok na mga email" + label_information_plural: "Impormasyon" label_import: "Import" label_latest_activity: "Latest activity" label_last_updated_on: "Huking naka-update sa" label_less_or_equal: "<=" label_less_than_ago: "mas mababa kaysa sa mga araw na lumipas" label_loading: "Naglo-load..." + label_mail_notification: "Mga abiso ng emailba" label_me: "ako" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Minutes" label_menu_collapse: "bumagsak" label_menu_expand: "palawakin" label_more_than_ago: "mahigit sa araw nakalipas" @@ -291,12 +306,15 @@ fil: label_previous: "Nakaraan" label_per_page: "Bawat pahina:" label_please_wait: "Pakiusap maghantay" + label_project_plural: "Mga proyekto" label_visibility_settings: "Ang mga setting ng katanyagan" label_quote_comment: "I-quote ang komentong ito" label_reset: "I-reset" label_remove_column: "Remove column" label_remove_columns: "Tanggalin ang mga napiling hanay" label_remove_row: "Remove row" + label_report: "Ulat" + label_repository_plural: "Mga repositoryo" label_save_as: "I-save bilang" label_select_watcher: "Pumili ng manunuod..." label_selected_filter_list: "Napiling mga filter" @@ -307,6 +325,7 @@ fil: label_sort_higher: "Lumipat pataas" label_sort_lower: "Ilipat sa ibaba" label_sorting: "Pag-aayos" + label_spent_time: "Nauubos na oras" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Publiko" @@ -315,7 +334,9 @@ fil: label_subject: "Paksa" label_this_week: "ngayong semana" label_today: "ngayon" + label_time_entry_plural: "Nauubos na oras" label_up: "Up" + label_user_plural: "Mga gumagamit" label_activity_show_only_comments: "Magpakita ng mga aktibidad sa komento lamang" label_activity_show_all: "Ipakita lahat ang mga aktibidad" label_total_progress: "%{percent}% Kabuang progreso" @@ -357,6 +378,7 @@ fil: label_wait: "Mangyaring maghintay para sa kompigurasyon..." label_upload_counter: "%{done} ng %{count} mga file ay natapos" label_validation_error: "Ang work package ay hindo maaring o-save dahil sa mga sumusunod na mali:" + label_version_plural: "Mga bersyon" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Magpakita ng katangian tekstong tulong entry' @@ -436,10 +458,16 @@ fil: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Mga proyekto" + settings: "Mga setting" time_entry: activity: 'Aktibidad' comment: 'Komento' hours: 'Mga oras' + two_factor_authentication: + label_two_factor_authentication: 'Ang dalwang-Dahilan sa authentication' watchers: label_loading: naglo-load ang mga manunuod... label_error_loading: Isang mali ang naganap habang naglo-load ng mga manunuod diff --git a/config/locales/crowdin/js-fr.yml b/config/locales/crowdin/js-fr.yml index c551defdbf..f9cbd9fed9 100644 --- a/config/locales/crowdin/js-fr.yml +++ b/config/locales/crowdin/js-fr.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ fr: inline: 'Surligner la ligne :' entire_card_by: 'Carte complète par' remove_from_list: 'Supprimer la carte de la liste' + caption_rate_history: "Historique des tarifs" clipboard: browser_error: "Votre navigateur ne prend pas en charge la copie dans le presse-papier. Veuillez copier manuellement le texte sélectionné." copied_successful: "Copié avec succès vers le presse-papier !" @@ -171,6 +172,9 @@ fr: cannot_save_changes_with_message: "Impossible d’enregistrer vos modifications en raison de l’erreur suivante : %{error}" query_saving: "La vue n'a pas pu être enregistrée." embedded_table_loading: "La vue intégrée n’a pas pu être chargée : %{message}" + enumeration_activities: "Activités (suivi de temps)" + enumeration_doc_categories: "Catégories de documents" + enumeration_work_package_priorities: "Priorités du Lot de Travaux" filter: description: text_open_filter: "Ouvrir ce filtre avec les touches « ALT » et fléchées." @@ -192,6 +196,7 @@ fr: general_text_yes: "oui" general_text_No: "Non" general_text_Yes: "Oui" + global_roles: Rôles globaux hal: error: update_conflict_refresh: "Cliquez ici pour actualiser la resource et mettre à jour vers la version la plus récente." @@ -222,6 +227,7 @@ fr: label_and: "et" label_ascending: "Croissant" label_author: "Auteur : %{user}" + label_avatar: "Avatar" label_between: "entre" label_board: "Tableau" label_board_locked: "Verrouillé" @@ -235,6 +241,8 @@ fr: label_deactivate: "Désactiver" label_descending: "Décroissant" label_description: "Description" + label_details: "Détails" + label_display: "Affichage" label_cancel_comment: "Annuler le commentaire" label_closed_work_packages: "clôturé" label_collapse: "Regrouper" @@ -255,22 +263,29 @@ fr: label_export: "Exporter" label_filename: "Fichier" label_filesize: "Taille" + label_general: "Général" label_greater_or_equal: ">=" label_group: 'Groupe' label_group_by: "Grouper par" + label_group_plural: "Groupes" label_hide_attributes: "Afficher moins" label_hide_column: "Masquer la colonne" label_hide_project_menu: "Replier le menu du projet" label_in: "dans" label_in_less_than: "dans moins de" label_in_more_than: "dans plus de" + label_incoming_emails: "Courriels entrants" + label_information_plural: "Information" label_import: "Importer" label_latest_activity: "Dernière activité" label_last_updated_on: "Dernière modification le" label_less_or_equal: "<=" label_less_than_ago: "il y a moins de quelques jours" label_loading: "Chargement…" + label_mail_notification: "Notifications par courriel" label_me: "moi" + label_meeting_agenda: "Ordre du jour" + label_meeting_minutes: "Compte-rendu" label_menu_collapse: "réduire" label_menu_expand: "développer" label_more_than_ago: "il y a plus de quelques jours" @@ -291,12 +306,15 @@ fr: label_previous: "Précédent" label_per_page: "Par page:" label_please_wait: "Veuillez patienter" + label_project_plural: "Projets" label_visibility_settings: "Paramètres de visibilité" label_quote_comment: "Citer ce commentaire" label_reset: "Réinitialiser" label_remove_column: "Supprimer la colonne" label_remove_columns: "Enlever les colonnes sélectionnées" label_remove_row: "Supprimer la ligne" + label_report: "Rapport" + label_repository_plural: "Dépôts" label_save_as: "Enregistrer sous" label_select_watcher: "Sélectionner un observateur…" label_selected_filter_list: "Filtres sélectionnés" @@ -307,6 +325,7 @@ fr: label_sort_higher: "Déplacer vers le haut" label_sort_lower: "Déplacer vers le bas" label_sorting: "Tri" + label_spent_time: "Temps passé" label_star_query: "Préféré" label_press_enter_to_save: "Appuyer sur \"entrée\" pour enregistrer." label_public_query: "Public" @@ -315,7 +334,9 @@ fr: label_subject: "Sujet" label_this_week: "cette semaine" label_today: "aujourd'hui" + label_time_entry_plural: "Temps passé" label_up: "Haut" + label_user_plural: "Utilisateurs" label_activity_show_only_comments: "Afficher les activités avec les commentaires seulement" label_activity_show_all: "Afficher toutes les activités" label_total_progress: "%{percent}% de progression totale" @@ -357,6 +378,7 @@ fr: label_wait: "Veuillez patienter pendant la configuration…" label_upload_counter: "%{done} fichiers sur %{count} finis" label_validation_error: "Le lot de travaux n'a pas pu être enregistré en raison des erreurs suivantes :" + label_version_plural: "Versions" label_view_has_changed: "Cette vue a des changements non sauvegardés. Cliquez pour les enregistrer." help_texts: show_modal: 'Afficher l’aide de l’attribut de saisie de texte' @@ -436,10 +458,16 @@ fr: includes: "incluant" requires: "requérant" required: "requis par" + edit: + form_configuration: "Form Configuration" + projects: "Projets" + settings: "Paramètres" time_entry: activity: 'Activité' comment: 'Commentaire' hours: 'Heures' + two_factor_authentication: + label_two_factor_authentication: 'Authentification à deux facteurs' watchers: label_loading: observateurs en cours de chargement… label_error_loading: Une erreur s'est produite lors du chargement des observateurs diff --git a/config/locales/crowdin/js-hr.yml b/config/locales/crowdin/js-hr.yml index 673e4ea684..56e3399611 100644 --- a/config/locales/crowdin/js-hr.yml +++ b/config/locales/crowdin/js-hr.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ hr: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Povijest satnica" clipboard: browser_error: "Vaš izbornik ne podržava kopiranje u međuspremnik. Molim vas manualno kopirajte odabrani tekst." copied_successful: "Uspješno kopirano u međuspremnik!" @@ -171,6 +172,9 @@ hr: cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "Aktivnosti (vremensko praćenje)" + enumeration_doc_categories: "Kategorije dokumenata" + enumeration_work_package_priorities: "Prioriteti radnog paketa" filter: description: text_open_filter: "Otvorite ovaj filtar s 'ALT' i tipke sa strelicama." @@ -192,6 +196,7 @@ hr: general_text_yes: "da" general_text_No: "Ne" general_text_Yes: "Da" + global_roles: Globalne role hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ hr: label_and: "i" label_ascending: "Uzlazno" label_author: "Autor: %{user}" + label_avatar: "Avatar" label_between: "između" label_board: "Board" label_board_locked: "Zaključano" @@ -235,6 +241,8 @@ hr: label_deactivate: "Deaktivirajte" label_descending: "Silazno" label_description: "Opis" + label_details: "Pojedinosti" + label_display: "Prikaz" label_cancel_comment: "Odustani od komentara" label_closed_work_packages: "zaključen" label_collapse: "Prikaži sve" @@ -255,22 +263,29 @@ hr: label_export: "Izvezi" label_filename: "Datoteka" label_filesize: "Veličina" + label_general: "Općenito" label_greater_or_equal: ">=" label_group: 'Grupa' label_group_by: "Grupiraj po" + label_group_plural: "Grupe" label_hide_attributes: "Prikaži manje" label_hide_column: "Sakriti stupac" label_hide_project_menu: "Collapse project menu" label_in: "u" label_in_less_than: "u manje od" label_in_more_than: "u više od" + label_incoming_emails: "Dolazne poruke" + label_information_plural: "Informacija" label_import: "Import" label_latest_activity: "Latest activity" label_last_updated_on: "Zadnje ažuriranje" label_less_or_equal: "<=" label_less_than_ago: "manje od dana" label_loading: "Učitavanje..." + label_mail_notification: "Obavijesti e-mailom" label_me: "ja" + label_meeting_agenda: "Dnevni red" + label_meeting_minutes: "Minute" label_menu_collapse: "sakriti" label_menu_expand: "proširiti" label_more_than_ago: "prije nekoliko dana" @@ -291,12 +306,15 @@ hr: label_previous: "Prethodni" label_per_page: "Po stranici:" label_please_wait: "Molimo pričekajte" + label_project_plural: "Projekti" label_visibility_settings: "Visibility settings" label_quote_comment: "Citirajte komentar" label_reset: "Resetiraj" label_remove_column: "Remove column" label_remove_columns: "Izbriši odabrene stupce" label_remove_row: "Remove row" + label_report: "Izvješće" + label_repository_plural: "Repozitoriji" label_save_as: "Spremiti kao" label_select_watcher: "Odaberite nadglednika..." label_selected_filter_list: "Odabrani filteri" @@ -307,6 +325,7 @@ hr: label_sort_higher: "Pomakni gore" label_sort_lower: "Pomakni dolje" label_sorting: "Sortiranje" + label_spent_time: "Utrošeno vrijeme" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Javno" @@ -315,7 +334,9 @@ hr: label_subject: "Predmet" label_this_week: "ovog tjedna" label_today: "danas" + label_time_entry_plural: "Utrošeno vrijeme" label_up: "Gore" + label_user_plural: "Korisnici" label_activity_show_only_comments: "Show activities with comments only" label_activity_show_all: "Show all activities" label_total_progress: "%{percent}% ukupnog napretka" @@ -357,6 +378,7 @@ hr: label_wait: "Konfiguraija je u tijeku, molim vas pričekajte..." label_upload_counter: "%{done} od %{count} datoteka je završeno s prijenosom" label_validation_error: "Nije moguće spremiti Radni paket zbog sljedećih pogreški:" + label_version_plural: "Verzije" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Show attribute help text entry' @@ -436,10 +458,16 @@ hr: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Projekti" + settings: "Postavke" time_entry: activity: 'Aktivnost' comment: 'Komentar' hours: 'Sati' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' watchers: label_loading: učitavanje nadglednika... label_error_loading: Došlo je do pogreške tijekom učitavanja nadglednika diff --git a/config/locales/crowdin/js-hu.yml b/config/locales/crowdin/js-hu.yml index 80f1340b6c..cbd98db51e 100644 --- a/config/locales/crowdin/js-hu.yml +++ b/config/locales/crowdin/js-hu.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ hu: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Díj előzmények" clipboard: browser_error: "A böngésző nem támogatja a vágólapra másolást. Kérjük, másolja a kijelölt szöveget manuálisan." copied_successful: "A vágólapra másolás sikeres!" @@ -170,6 +171,9 @@ hu: cannot_save_changes_with_message: "A következő hiba miatt nem sikerült menteni a módosításokat: %{error}" query_saving: "A nézetet nem sikerült menteni." embedded_table_loading: "A beágyazott nézet betöltése nem sikerült: %{message}" + enumeration_activities: "Tevékenységek (időkövetés)" + enumeration_doc_categories: "Dokumentum kategóriák" + enumeration_work_package_priorities: "Feladatcsoport fontosság" filter: description: text_open_filter: "A szűrő megnyitásához nyomja meg az \"ALT\" és a nyíl gombokat." @@ -191,6 +195,7 @@ hu: general_text_yes: "igen" general_text_No: "Nem" general_text_Yes: "Igen" + global_roles: Globális szerepek hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -221,6 +226,7 @@ hu: label_and: "és" label_ascending: "Növekvő" label_author: "Szerző: %{user}" + label_avatar: "Avatar" label_between: "között" label_board: "Board" label_board_locked: "Zárolt" @@ -234,6 +240,8 @@ hu: label_deactivate: "Kikapcsol" label_descending: "Csökkenő" label_description: "Leírás" + label_details: "Részletek" + label_display: "Megjelenítés" label_cancel_comment: "Megjegyzés törlése" label_closed_work_packages: "lezárt" label_collapse: "Collapse" @@ -254,22 +262,29 @@ hu: label_export: "Exportálás" label_filename: "Fájl" label_filesize: "Méret" + label_general: "Általános" label_greater_or_equal: ">=" label_group: 'Csoport' label_group_by: "Csoportosítás" + label_group_plural: "Csoportok" label_hide_attributes: "Kevesebb mutatása" label_hide_column: "Oszlop elrejtése" label_hide_project_menu: "Projekt menü összecsukás" label_in: "in" label_in_less_than: "kevesebb, mint" label_in_more_than: "több mint" + label_incoming_emails: "Bejövő e-mailek" + label_information_plural: "Információk" label_import: "Importálás" label_latest_activity: "Utolsó aktivitás" label_last_updated_on: "Utolsó frissítés" label_less_or_equal: "<=" label_less_than_ago: "kevesebb, nappal ezelött" label_loading: "Betöltés..." + label_mail_notification: "Email értesítés" label_me: "Nekem" + label_meeting_agenda: "Napirend" + label_meeting_minutes: "Jegyzőkönyv" label_menu_collapse: "összecsuk" label_menu_expand: "kibont" label_more_than_ago: "több, nappal ezelőtt" @@ -290,12 +305,15 @@ hu: label_previous: "Korábbi" label_per_page: "Oldalanként:" label_please_wait: "Kérem várjon" + label_project_plural: "Projektek" label_visibility_settings: "Láthatósági beállítások" label_quote_comment: "Hozzászólás idézése" label_reset: "Visszaállít, reset" label_remove_column: "Oszlop eltávolítása" label_remove_columns: "Eltávolítja a kijelölt oszlopokat" label_remove_row: "Sor eltávolítása" + label_report: "Jelentés" + label_repository_plural: "Csomagtárolók" label_save_as: "Mentés másként" label_select_watcher: "Megfigyelők választása..." label_selected_filter_list: "Szűrők választása" @@ -306,6 +324,7 @@ hu: label_sort_higher: "Mozgatás felfelé" label_sort_lower: "Mozgás lefelé" label_sorting: "Rendezés" + label_spent_time: "Eltöltött idő" label_star_query: "Kedvenc" label_press_enter_to_save: "Nyomjon Entert a mentéshez" label_public_query: "Nyilvános" @@ -314,7 +333,9 @@ hu: label_subject: "Tárgy" label_this_week: "ezen a héten" label_today: "Ma" + label_time_entry_plural: "Eltöltött idő" label_up: "Fel" + label_user_plural: "Felhasználók" label_activity_show_only_comments: "Hozzászólással rendelkező tevékenységek mutatása" label_activity_show_all: "Minden tevékenység mutatása" label_total_progress: "%{percent}% a teljes folyamatban" @@ -356,6 +377,7 @@ hu: label_wait: "Kérem, várjon a konfigurációra..." label_upload_counter: "%{done}/%{count} fájl feltöltve" label_validation_error: "A feladatcsoport a következő hibák miatt nem menthető:" + label_version_plural: "Verzió" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Attribútum-súgószöveg mutatása' @@ -435,10 +457,16 @@ hu: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Projektek" + settings: "Beállítások" time_entry: activity: 'Tevékenység' comment: 'Vélemény' hours: 'órák' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' watchers: label_loading: megfigyelők betöltése... label_error_loading: Hiba történt a megfigyelők betöltése közben diff --git a/config/locales/crowdin/js-id.yml b/config/locales/crowdin/js-id.yml index af32b53bd0..55e73e011a 100644 --- a/config/locales/crowdin/js-id.yml +++ b/config/locales/crowdin/js-id.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ id: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Histori rate" clipboard: browser_error: "Browser Anda tidak mendukung menyalin ke clipboard. Harap menyalin teks yang dipilih secara manual." copied_successful: "Berhasil disalin ke clipboard!" @@ -171,6 +172,9 @@ id: cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "Activity (pelacakan waktu)" + enumeration_doc_categories: "Kategori dokumen" + enumeration_work_package_priorities: "Paket-Penugasan prioritas" filter: description: text_open_filter: "Buka filter ini dengan 'ALT' dan tombol panah." @@ -192,6 +196,7 @@ id: general_text_yes: "yes" general_text_No: "No" general_text_Yes: "Yes" + global_roles: Peran global hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ id: label_and: "dan" label_ascending: "Askending" label_author: "Author: %{user}" + label_avatar: "Avatar" label_between: "antara" label_board: "Board" label_board_locked: "Locked" @@ -235,6 +241,8 @@ id: label_deactivate: "Nonaktifkan" label_descending: "Deskending" label_description: "Deskripsi" + label_details: "Detil" + label_display: "Tampilkan" label_cancel_comment: "Cancel comment" label_closed_work_packages: "berakhir" label_collapse: "Tampilkan" @@ -255,22 +263,29 @@ id: label_export: "Ekspor" label_filename: "File" label_filesize: "Size" + label_general: "Umum" label_greater_or_equal: ">=" label_group: 'Grup' label_group_by: "Pengelompokan" + label_group_plural: "Grup" label_hide_attributes: "Show less" label_hide_column: "Sembunyikan kolom" label_hide_project_menu: "Collapse project menu" label_in: "dalam" label_in_less_than: "kurang dari" label_in_more_than: "lebih dari" + label_incoming_emails: "Email masuk" + label_information_plural: "Informasi" label_import: "Impor" label_latest_activity: "Latest activity" label_last_updated_on: "Terakhir diupdate pada" label_less_or_equal: "<=" label_less_than_ago: "kemarin lusa" label_loading: "Loading..." + label_mail_notification: "Notifikasi email" label_me: "saya" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Laporan" label_menu_collapse: "runtuh" label_menu_expand: "expand" label_more_than_ago: "lusa yang lalu" @@ -291,12 +306,15 @@ id: label_previous: "Sebelumnya" label_per_page: "Per halaman:" label_please_wait: "Please wait" + label_project_plural: "Project" label_visibility_settings: "Seting penampakan" label_quote_comment: "Quote this comment" label_reset: "Reset" label_remove_column: "Remove column" label_remove_columns: "Hapus kolom terpilih" label_remove_row: "Remove row" + label_report: "Laporan" + label_repository_plural: "Repositori" label_save_as: "Simpan sebagai" label_select_watcher: "Pilih pemantau..." label_selected_filter_list: "Filter terpilih" @@ -307,6 +325,7 @@ id: label_sort_higher: "Naikkan" label_sort_lower: "Pindahkan ke bawah" label_sorting: "Mengurutkan" + label_spent_time: "Durasi" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Publik" @@ -315,7 +334,9 @@ id: label_subject: "Perihal" label_this_week: "minggu ini" label_today: "hari ini" + label_time_entry_plural: "Durasi" label_up: "Naik" + label_user_plural: "User" label_activity_show_only_comments: "Tampilkan hanya aktivitas bersama komentar" label_activity_show_all: "Tampilkan semua aktivitas" label_total_progress: "%{percent}% total progres" @@ -357,6 +378,7 @@ id: label_wait: "Mohon menunggu..." label_upload_counter: "%{done} dari %{count} file selesai" label_validation_error: "Proses penyimpanan work package gagal. Kesalahan yang terjadi:" + label_version_plural: "Versi" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Tampilkan atribut-atribut teks bantuan yang dimasukkan' @@ -436,10 +458,16 @@ id: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Project" + settings: "Pengaturan" time_entry: activity: 'Activity' comment: 'Komentar' hours: 'Jam' + two_factor_authentication: + label_two_factor_authentication: 'Autentikasi dua faktor' watchers: label_loading: memuat pengamat... label_error_loading: An error occurred while loading the watchers diff --git a/config/locales/crowdin/js-it.yml b/config/locales/crowdin/js-it.yml index 281b2a3448..2b9d04b67b 100644 --- a/config/locales/crowdin/js-it.yml +++ b/config/locales/crowdin/js-it.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ it: inline: 'Evidenzia in linea:' entire_card_by: 'Tutta la carta per' remove_from_list: 'Rimuovi la carta dall''elenco' + caption_rate_history: "Cronologia tariffe" clipboard: browser_error: "Il tuo browser non supporta la copia negli appunti. Copia il testo selezionato manualmente." copied_successful: "Copia negli appunti completata con successo!" @@ -171,6 +172,9 @@ it: cannot_save_changes_with_message: "Impossibile salvare le modifiche a causa del seguente errore: %{error}" query_saving: "Impossibile salvare la vista." embedded_table_loading: "La vista incorporata non può essere caricata: %{message}" + enumeration_activities: "Attività (monitoraggio tempi)" + enumeration_doc_categories: "Categorie di documenti" + enumeration_work_package_priorities: "Priorità della macro-attività" filter: description: text_open_filter: "Apri questo filtro con i tasti 'ALT' e le frecce." @@ -192,6 +196,7 @@ it: general_text_yes: "si" general_text_No: "No" general_text_Yes: "Si" + global_roles: Ruoli globali hal: error: update_conflict_refresh: "Clicca qui per ricaricare il pacchetto di lavoro e aggiornare alla versione più recente." @@ -222,6 +227,7 @@ it: label_and: "e" label_ascending: "Crescente" label_author: "Autore: %{user}" + label_avatar: "Avatar" label_between: "tra" label_board: "Scheda" label_board_locked: "Chiuso" @@ -235,6 +241,8 @@ it: label_deactivate: "Disattivare" label_descending: "Decrescente" label_description: "Descrizione" + label_details: "Dettagli" + label_display: "Visualizza" label_cancel_comment: "Cancella il commento" label_closed_work_packages: "chiuso" label_collapse: "Comprimi" @@ -255,22 +263,29 @@ it: label_export: "Esporta" label_filename: "File" label_filesize: "Dimensione" + label_general: "Generale" label_greater_or_equal: ">=" label_group: 'Gruppo' label_group_by: "Raggruppa per" + label_group_plural: "Gruppi" label_hide_attributes: "Meno suggerimenti" label_hide_column: "Nascondi la colonna" label_hide_project_menu: "Comprimi il menù di progetto" label_in: "in" label_in_less_than: "in meno di" label_in_more_than: "in più di" + label_incoming_emails: "Email in arrivo" + label_information_plural: "Informazioni" label_import: "Importazione" label_latest_activity: "Ultima attività" label_last_updated_on: "Ultimo aggiornamento il" label_less_or_equal: "<=" label_less_than_ago: "meno di qualche giorno fa" label_loading: "Caricamento..." + label_mail_notification: "Notifiche email" label_me: "io" + label_meeting_agenda: "Ordine del giorno" + label_meeting_minutes: "Verbali" label_menu_collapse: "collassa" label_menu_expand: "espandi" label_more_than_ago: "più di qualche giorno fa" @@ -291,12 +306,15 @@ it: label_previous: "Precedente" label_per_page: "Per pagina:" label_please_wait: "Attendere" + label_project_plural: "Progetti" label_visibility_settings: "Impostazioni di visibilità" label_quote_comment: "Annota questo commento" label_reset: "Reimposta" label_remove_column: "Rimuovi colonna" label_remove_columns: "Rimuovi le colonne selezionate" label_remove_row: "Rimuovi riga" + label_report: "Segnalano" + label_repository_plural: "Archivi" label_save_as: "Salva come" label_select_watcher: "Seleziona un osservatore..." label_selected_filter_list: "Filtri selezionati" @@ -307,6 +325,7 @@ it: label_sort_higher: "Sposta su" label_sort_lower: "Sposta giu" label_sorting: "Ordinamento" + label_spent_time: "Tempo speso" label_star_query: "Preferito" label_press_enter_to_save: "Premi Invio per salvare." label_public_query: "Pubblico" @@ -315,7 +334,9 @@ it: label_subject: "Soggetto" label_this_week: "questa settimana" label_today: "oggi" + label_time_entry_plural: "Tempo speso" label_up: "Su" + label_user_plural: "Utenti" label_activity_show_only_comments: "Mostra solo le attività con commenti" label_activity_show_all: "Mostra tutte le attività" label_total_progress: "%{percent}% Progresso totale" @@ -357,6 +378,7 @@ it: label_wait: "Prego, attendi per la configurazione..." label_upload_counter: "%{done} di %{count} file completati" label_validation_error: "La macro-attività non può essere salvata a causa dei seguenti errori:" + label_version_plural: "Versioni" label_view_has_changed: "Questa vista ha modifiche non salvate. Clicca per salvarle." help_texts: show_modal: 'Mostra l''immissione di testo della guida dell''attributo' @@ -436,10 +458,16 @@ it: includes: "compreso" requires: "che richiedono" required: "richiesto dalla" + edit: + form_configuration: "Form Configuration" + projects: "Progetti" + settings: "Impostazioni" time_entry: activity: 'Attività' comment: 'Commento' hours: 'Ore' + two_factor_authentication: + label_two_factor_authentication: 'Autenticazione due fattori' watchers: label_loading: caricamento osservatori in corso... label_error_loading: Si è verificato un errore nel caricamento degli osservatori diff --git a/config/locales/crowdin/js-ja.yml b/config/locales/crowdin/js-ja.yml index da6dd8a825..391df433ea 100644 --- a/config/locales/crowdin/js-ja.yml +++ b/config/locales/crowdin/js-ja.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -81,6 +81,7 @@ ja: inline: 'インラインを強調表示:' entire_card_by: 'カード全体で' remove_from_list: 'リストからカードを削除' + caption_rate_history: "進捗履歴" clipboard: browser_error: "お使いのブラウザーでは、クリップボードへのコピーをサポートしていません。手動で選択したテキストをコピーしてください。" copied_successful: "正常にクリップボードにコピーしました!" @@ -172,6 +173,9 @@ ja: cannot_save_changes_with_message: "次のエラーのために変更を保存できません: %{error}" query_saving: "ビューを保存できませんでした。" embedded_table_loading: "埋め込みビューを読み込めませんでした: %{message}" + enumeration_activities: "作業分類 (時間の追跡)" + enumeration_doc_categories: "ドキュメントのカテゴリ" + enumeration_work_package_priorities: "作業項目の優先度" filter: description: text_open_filter: "'ALT' と矢印キーでこのフィルタを開きます。" @@ -193,6 +197,7 @@ ja: general_text_yes: "はい" general_text_No: "いいえ" general_text_Yes: "はい" + global_roles: グローバルロール hal: error: update_conflict_refresh: "リソースを更新して最新のバージョンに更新するには、ここをクリックしてください。" @@ -223,6 +228,7 @@ ja: label_and: "及び" label_ascending: "昇順" label_author: "作者: %{user}" + label_avatar: "アバター" label_between: "次の範囲内" label_board: "ボード" label_board_locked: "ロックされている" @@ -236,6 +242,8 @@ ja: label_deactivate: "無効" label_descending: "降順" label_description: "説明" + label_details: "詳細" + label_display: "表示" label_cancel_comment: "コメントをキャンセル" label_closed_work_packages: "完了" label_collapse: "折りたたむ" @@ -256,22 +264,29 @@ ja: label_export: "外部出力" label_filename: "ファイル" label_filesize: "サイズ" + label_general: "概要" label_greater_or_equal: ">=" label_group: 'グループ' label_group_by: "グループ化" + label_group_plural: "グループ" label_hide_attributes: "非表示にする" label_hide_column: "列を非表示" label_hide_project_menu: "プロジェクトメニューを折りたたむ" label_in: "今日から○日後" label_in_less_than: "今日から○日後以前" label_in_more_than: "今日から○日後以降" + label_incoming_emails: "受信メール" + label_information_plural: "情報" label_import: "インポート" label_latest_activity: "最新の活動" label_last_updated_on: "最終更新日:" label_less_or_equal: "以下" label_less_than_ago: "今日より○日前以降" label_loading: "読み込み中..." + label_mail_notification: "電子メールの通知" label_me: "自分" + label_meeting_agenda: "アジェンダ" + label_meeting_minutes: "議事録" label_menu_collapse: "折りたたむ" label_menu_expand: "展開する" label_more_than_ago: "今日より○日前以前" @@ -292,12 +307,15 @@ ja: label_previous: "前へ" label_per_page: "1 ページあたり" label_please_wait: "しばらくお待ちください" + label_project_plural: "プロジェクト" label_visibility_settings: "表示の設定" label_quote_comment: "このコメントを引用" label_reset: "リセット" label_remove_column: "列を削除" label_remove_columns: "選択した列を削除" label_remove_row: "行を削除" + label_report: "レポート" + label_repository_plural: "リポジトリ" label_save_as: "名前をつけて保存" label_select_watcher: "ウォッチャーを選択..." label_selected_filter_list: "選択されたフィルタ" @@ -308,6 +326,7 @@ ja: label_sort_higher: "上へ" label_sort_lower: "下へ移動" label_sorting: "ソート中" + label_spent_time: "作業時間の記録" label_star_query: "支持された" label_press_enter_to_save: "Enterを押して保存します。" label_public_query: "公開" @@ -316,7 +335,9 @@ ja: label_subject: "題名" label_this_week: "今週" label_today: "今日" + label_time_entry_plural: "作業時間の記録" label_up: "アップ" + label_user_plural: "ユーザ" label_activity_show_only_comments: "コメントのみのアクティビティを表示" label_activity_show_all: "すべてのアクティビティを表示" label_total_progress: "%{percent}% 進行状況" @@ -358,6 +379,7 @@ ja: label_wait: "構成をお待ちください..." label_upload_counter: "%{count}ファイルの中に%{done}が完了" label_validation_error: "次のエラーのために作業項目を保存できませんでした:" + label_version_plural: "バージョン" label_view_has_changed: "このビューには未保存の変更があります。 クリックすると保存します。" help_texts: show_modal: 'テキスト入力属性のヘルプを表示' @@ -439,10 +461,16 @@ ja: includes: "含む" requires: "要求する" required: "に必要" + edit: + form_configuration: "Form Configuration" + projects: "プロジェクト" + settings: "設定" time_entry: activity: '活動' comment: 'コメント' hours: ' 時間' + two_factor_authentication: + label_two_factor_authentication: '2要素認証' watchers: label_loading: ウォッチャーを読み込み中... label_error_loading: ウォッチャーを読み込み中にエラーが発生しました。 diff --git a/config/locales/crowdin/js-ko.yml b/config/locales/crowdin/js-ko.yml index e6d4b44171..d015c6944d 100644 --- a/config/locales/crowdin/js-ko.yml +++ b/config/locales/crowdin/js-ko.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ ko: inline: '인라인 강조 표시:' entire_card_by: '전체 카드 기준' remove_from_list: '목록에서 카드 제거' + caption_rate_history: "요금 기록" clipboard: browser_error: "브라우저를 클립보드에 복사를 지원 하지 않습니다. 텍스트를 타이핑하여 복사하십시오." copied_successful: "클립보드에 성공적으로 복사됨" @@ -171,6 +172,9 @@ ko: cannot_save_changes_with_message: "다음 오류로 인해 변경 사항을 저장할 수 없습니다: %{error}" query_saving: "보기를 저장할 수 없습니다." embedded_table_loading: "포함된 보기를 로드할 수 없습니다: %{message}" + enumeration_activities: "작업(시간 추적)" + enumeration_doc_categories: "문서 범주" + enumeration_work_package_priorities: "작업 패키지 우선 순위" filter: description: text_open_filter: "'ALT'와 화살표 키로 이 필터를 여세요." @@ -192,6 +196,7 @@ ko: general_text_yes: "예" general_text_No: "아니요" general_text_Yes: "예" + global_roles: 글로벌 역할 hal: error: update_conflict_refresh: "리소스를 새로 고치고 최신 버전으로 업데이트하려면 여기를 클릭하세요." @@ -222,6 +227,7 @@ ko: label_and: "그리고" label_ascending: "오름차순" label_author: "작성자: %{user}" + label_avatar: "아바타" label_between: "사이에" label_board: "게시판" label_board_locked: "잠김" @@ -235,6 +241,8 @@ ko: label_deactivate: "비활성화" label_descending: "내림차순" label_description: "설명" + label_details: "세부 정보" + label_display: "표시" label_cancel_comment: "코멘트 취소" label_closed_work_packages: "닫음" label_collapse: "축소" @@ -255,22 +263,29 @@ ko: label_export: "내보내기" label_filename: "파일" label_filesize: "크기" + label_general: "일반" label_greater_or_equal: ">=" label_group: '그룹' label_group_by: "그룹화 기준" + label_group_plural: "그룹" label_hide_attributes: "간단히 표시" label_hide_column: "열 숨기기" label_hide_project_menu: "프로젝트 메뉴 축소" label_in: "-" label_in_less_than: "보다 작음" label_in_more_than: "보다 큼" + label_incoming_emails: "들어오는 이메일" + label_information_plural: "정보" label_import: "가져오기" label_latest_activity: "최근 활동" label_last_updated_on: "마지막 업데이트 날짜" label_less_or_equal: "<=" label_less_than_ago: "일 미만 전" label_loading: "로드 중..." + label_mail_notification: "이메일 알림" label_me: "나" + label_meeting_agenda: "의제" + label_meeting_minutes: "의사록" label_menu_collapse: "축소" label_menu_expand: "확장" label_more_than_ago: "일 이상 전" @@ -291,12 +306,15 @@ ko: label_previous: "이전" label_per_page: "페이지 당:" label_please_wait: "잠시 기다려 주세요." + label_project_plural: "프로젝트" label_visibility_settings: "표시 여부 설정" label_quote_comment: "코멘트 인용" label_reset: "재설정" label_remove_column: "열 제거" label_remove_columns: "선택된 열 제거" label_remove_row: "행 제거" + label_report: "보고서" + label_repository_plural: "리포지토리" label_save_as: "다른 이름으로 저장" label_select_watcher: "주시하는 사람을 선택" label_selected_filter_list: "선택된 필터" @@ -307,6 +325,7 @@ ko: label_sort_higher: "위로 이동" label_sort_lower: "아래로 이동" label_sorting: "정렬" + label_spent_time: "소비한 시간" label_star_query: "호감" label_press_enter_to_save: "저장하려면 Enter를 누르세요." label_public_query: "공용" @@ -315,7 +334,9 @@ ko: label_subject: "제목" label_this_week: "이번 주" label_today: "오늘" + label_time_entry_plural: "소비한 시간" label_up: "위" + label_user_plural: "사용자" label_activity_show_only_comments: "코멘트가 있는 활동만 표시" label_activity_show_all: "모든 활동 표시" label_total_progress: "%{percent}% 진행" @@ -357,6 +378,7 @@ ko: label_wait: "설정 중이므로 기다려 주세요..." label_upload_counter: "%{count} 개 파일 중 %{done} 개 파일 완료됨" label_validation_error: "다음 오류로 인해 작업 패키지를 저장할 수 없습니다." + label_version_plural: "버전" label_view_has_changed: "이 보기에는 저장되지 않은 변경 사항이 있습니다. 클릭하여 저장하십시오." help_texts: show_modal: '특성 도움말 텍스트 항목 표시' @@ -436,10 +458,16 @@ ko: includes: "포함" requires: "요구" required: "다음에 의해 요구됨:" + edit: + form_configuration: "Form Configuration" + projects: "프로젝트" + settings: "설정" time_entry: activity: '활동' comment: '코멘트' hours: '시간' + two_factor_authentication: + label_two_factor_authentication: '2단계 인증' watchers: label_loading: 관찰자 로딩 중... label_error_loading: 관찰자를 로드하는 동안 오류가 발생 했습니다. diff --git a/config/locales/crowdin/js-lt.yml b/config/locales/crowdin/js-lt.yml index 564cb8d9dc..ea0fca2f0c 100644 --- a/config/locales/crowdin/js-lt.yml +++ b/config/locales/crowdin/js-lt.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ lt: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Išimti kortelę iš sąrašo' + caption_rate_history: "Koeficiento istorija" clipboard: browser_error: "Jūsų naršyklė nepalaiko kopijavimo į iškarpinę. Prašome pažymėtą tekstą nukopijuoti rankiniu būdu." copied_successful: "Sėkmingai nukopijuota į iškarpinę!" @@ -171,6 +172,9 @@ lt: cannot_save_changes_with_message: "Nepavyko įrašyti jūsų pakeitimų dėl šios klaidos: %{error}" query_saving: "Nepavyko įrašyti rodinio." embedded_table_loading: "Nepavyko įkelti įdėti rodinio: %{message}" + enumeration_activities: "Veikla (laiko sekimas)" + enumeration_doc_categories: "Dokumentų kategorijos" + enumeration_work_package_priorities: "Darbų paketo prioritetai" filter: description: text_open_filter: "Atverkite šį filtrą su 'ALT' ir krypčių klavišais." @@ -192,6 +196,7 @@ lt: general_text_yes: "taip" general_text_No: "Ne" general_text_Yes: "Taip" + global_roles: Globalios rolės hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ lt: label_and: "ir" label_ascending: "Didėjančia tvarka" label_author: "Autorius: %{user}" + label_avatar: "Nuotrauka" label_between: "tarp" label_board: "Lenta" label_board_locked: "Užrakinta" @@ -235,6 +241,8 @@ lt: label_deactivate: "Išjungti" label_descending: "Mažėjančiai" label_description: "Aprašymas" + label_details: "Detali informacija" + label_display: "Rodymas" label_cancel_comment: "Atšaukti komentarą" label_closed_work_packages: "uždarytas" label_collapse: "Sutraukti" @@ -255,22 +263,29 @@ lt: label_export: "Eksportuoti" label_filename: "Byla" label_filesize: "Dydis" + label_general: "Bendra" label_greater_or_equal: ">=" label_group: 'Grupė' label_group_by: "Grupuoti pagal" + label_group_plural: "Grupės" label_hide_attributes: "Rodyti mažiau" label_hide_column: "Slėpti stulpelį" label_hide_project_menu: "Sutraukti projekto meniu" label_in: " " label_in_less_than: "mažiau nei" label_in_more_than: "daugiau nei" + label_incoming_emails: "Gauti el. laiškai" + label_information_plural: "Informacija" label_import: "Importuoti" label_latest_activity: "Paskutinė veikla" label_last_updated_on: "Paskiausias atnaujinimas" label_less_or_equal: "<=" label_less_than_ago: "mažiau nei prieš dieną" label_loading: "Įkeliama..." + label_mail_notification: "El. pašto priminimai" label_me: "aš" + label_meeting_agenda: "Dienotvarkė" + label_meeting_minutes: "Minutės" label_menu_collapse: "suskleisti" label_menu_expand: "išskleisti" label_more_than_ago: "daugiau nei prieš dieną" @@ -291,12 +306,15 @@ lt: label_previous: "Ankstesnis" label_per_page: "Puslapyje:" label_please_wait: "Prašome palaukti" + label_project_plural: "Projektai" label_visibility_settings: "Matomumo nustatymai" label_quote_comment: "Cituoti šį komentarą" label_reset: "Nustatyti iš naujo" label_remove_column: "Išimti stulpelį" label_remove_columns: "Pašalinti pažymėtus stulpelius" label_remove_row: "Išimti eilutę" + label_report: "Ataskaita" + label_repository_plural: "Repozitorijos" label_save_as: "Išsaugoti kaip" label_select_watcher: "Parinkti stebėtoją..." label_selected_filter_list: "Parinkti filtrus" @@ -307,6 +325,7 @@ lt: label_sort_higher: "Perkelti aukštyn" label_sort_lower: "Perkelti žemyn" label_sorting: "Rūšiavimas" + label_spent_time: "Praleista laiko" label_star_query: "Favored" label_press_enter_to_save: "Saugojimui spauskite enter." label_public_query: "Viešas" @@ -315,7 +334,9 @@ lt: label_subject: "Tema" label_this_week: "ši savaitė" label_today: "šiandien" + label_time_entry_plural: "Praleista laiko" label_up: "Aukštyn" + label_user_plural: "Vartotojai" label_activity_show_only_comments: "Rodyti veiklą tik su komentarais" label_activity_show_all: "Rodyti visus atributus" label_total_progress: "%{percent} % įvykdyta" @@ -357,6 +378,7 @@ lt: label_wait: "Vyksta konfigūracija. Palaukite..." label_upload_counter: "%{done} iš %{count} failų sudoroti" label_validation_error: "Darbų paketas negali būti įrašyti dėl šių klaidų:" + label_version_plural: "Versijos" label_view_has_changed: "Šiame rodinyje yra neįrašytų pakeitimų. Spauskite, kad juos įrašytumėte." help_texts: show_modal: 'Rodyti atributo pagalbos teksto įrašą' @@ -436,10 +458,16 @@ lt: includes: "įskaitant" requires: "reikalauja" required: "reikalingas" + edit: + form_configuration: "Form Configuration" + projects: "Projektai" + settings: "Nustatymai" time_entry: activity: 'Veikla' comment: 'Komentaras' hours: 'Valandų' + two_factor_authentication: + label_two_factor_authentication: 'Dviejų veiksnių autentikavimas' watchers: label_loading: Įkeliami stebėtojai... label_error_loading: Įkeliant stebėtojus įvyko klaida diff --git a/config/locales/crowdin/js-nl.yml b/config/locales/crowdin/js-nl.yml index 0892639763..409b5e133e 100644 --- a/config/locales/crowdin/js-nl.yml +++ b/config/locales/crowdin/js-nl.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ nl: inline: 'Markeer inline:' entire_card_by: 'Gehele kaart door' remove_from_list: 'Verwijder kaart uit lijst' + caption_rate_history: "Rate history" clipboard: browser_error: "Uw browser ondersteunt kopiëren naar het klembord niet. Kopieer de geselecteerde tekst handmatig." copied_successful: "Met succes gekopieerd naar het klembord!" @@ -171,6 +172,9 @@ nl: cannot_save_changes_with_message: "Uw wijzigingen vanwege de volgende fout niet opslaan: %{error}" query_saving: "Het overzicht kon niet bewaard worden." embedded_table_loading: "De ingesloten weergave kon niet worden geladen: %{message}" + enumeration_activities: "Activiteiten (tijdregistratie)" + enumeration_doc_categories: "Document categories" + enumeration_work_package_priorities: "Werkpakket prioriteiten" filter: description: text_open_filter: "Open dit filter met de 'ALT'-knop en toetsenbord pijlen." @@ -192,6 +196,7 @@ nl: general_text_yes: "Ja" general_text_No: "Nee" general_text_Yes: "Ja" + global_roles: Globale functies hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ nl: label_and: "en" label_ascending: "Oplopend" label_author: "Auteur: %{user}" + label_avatar: "Avatar" label_between: "tussen" label_board: "Bord" label_board_locked: "Vergrendeld" @@ -235,6 +241,8 @@ nl: label_deactivate: "Deactiveren" label_descending: "Aflopend" label_description: "Omschrijving" + label_details: "Details" + label_display: "Weergave" label_cancel_comment: "Annuleer reactie" label_closed_work_packages: "gesloten" label_collapse: "Samenvouwen" @@ -255,22 +263,29 @@ nl: label_export: "Exporteren" label_filename: "Bestand" label_filesize: "Grootte" + label_general: "Algemeen" label_greater_or_equal: ">=" label_group: 'Groep' label_group_by: "Groeperen op" + label_group_plural: "Groepen" label_hide_attributes: "Toon minder" label_hide_column: "Verberg kolom" label_hide_project_menu: "Project menu samenvouwen" label_in: "in" label_in_less_than: "in minder dan" label_in_more_than: "in meer dan" + label_incoming_emails: "Inkomende e-mails" + label_information_plural: "Informatie" label_import: "Import" label_latest_activity: "Laatste Activiteit" label_last_updated_on: "Laatst geüpdatet op" label_less_or_equal: "<=" label_less_than_ago: "minder dan dagen geleden" label_loading: "Laden..." + label_mail_notification: "E-mailnotificaties" label_me: "ik" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Minuten" label_menu_collapse: "samenvouwen" label_menu_expand: "uitbreiden" label_more_than_ago: "meer dan dagen geleden" @@ -291,12 +306,15 @@ nl: label_previous: "Vorige" label_per_page: "Per pagina:" label_please_wait: "Een ogenblik geduld" + label_project_plural: "Projecten" label_visibility_settings: "Zichtbaarheidsinstellingen" label_quote_comment: "Citeer dit commentaar" label_reset: "Herstel" label_remove_column: "Kolom verwijderen" label_remove_columns: "Verwijder geselecteerde kolommen" label_remove_row: "Rij verwijderen" + label_report: "Rapport" + label_repository_plural: "Repositories" label_save_as: "Opslaan als" label_select_watcher: "Kies een toezichter..." label_selected_filter_list: "Geselecteerde filters" @@ -307,6 +325,7 @@ nl: label_sort_higher: "Omhoog" label_sort_lower: "Omlaag" label_sorting: "Sortering" + label_spent_time: "Bestede tijd" label_star_query: "Favoriet" label_press_enter_to_save: "Druk op Enter om te bewaren." label_public_query: "Publiek" @@ -315,7 +334,9 @@ nl: label_subject: "Onderwerp" label_this_week: "deze week" label_today: "vandaag" + label_time_entry_plural: "Bestede tijd" label_up: "Omhoog" + label_user_plural: "Gebruikers" label_activity_show_only_comments: "Geef alleen activiteiten met commentaar weer" label_activity_show_all: "Geef alle activiteiten weer" label_total_progress: "%{percent}% totale vooruitgang" @@ -357,6 +378,7 @@ nl: label_wait: "Moment geduld a.u.b. voor configuratie..." label_upload_counter: "%{done} van %{count} bestanden afgerond" label_validation_error: "Het werkpakket kon niet worden opgeslagen vanwege de volgende fouten:" + label_version_plural: "Versies" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Toon kenmerk help tekstinvoer' @@ -436,10 +458,16 @@ nl: includes: "inclusief" requires: "vereisen" required: "vereist door" + edit: + form_configuration: "Form Configuration" + projects: "Projecten" + settings: "Instellingen" time_entry: activity: 'Activiteit' comment: 'Commentaar' hours: 'Uren' + two_factor_authentication: + label_two_factor_authentication: 'Twee-factor-authenticatie' watchers: label_loading: volgers worden geladen... label_error_loading: Er is een fout opgetreden tijdens het laden van de volgers diff --git a/config/locales/crowdin/js-no.yml b/config/locales/crowdin/js-no.yml index 12749e73e2..fbb18909d9 100644 --- a/config/locales/crowdin/js-no.yml +++ b/config/locales/crowdin/js-no.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Rate history" clipboard: browser_error: "Nettleseren støtter ikke kopiering til utklippstavle. Kopier den merkede teksten manuelt." copied_successful: "Kopiert til utklippstavlen!" @@ -171,6 +172,9 @@ cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "Aktiviteter (tidsstyring)" + enumeration_doc_categories: "Dokumentkategorier" + enumeration_work_package_priorities: "Prioritering av arbeidspakker" filter: description: text_open_filter: "Åpne dette filteret med 'ALT' og piltastene." @@ -192,6 +196,7 @@ general_text_yes: "ja" general_text_No: "Nei" general_text_Yes: "Ja" + global_roles: Global Roles hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ label_and: "og" label_ascending: "Stigende" label_author: "Author: %{user}" + label_avatar: "Avatar" label_between: "mellom" label_board: "Board" label_board_locked: "Låst" @@ -235,6 +241,8 @@ label_deactivate: "Deaktiver" label_descending: "Synkende" label_description: "Beskrivelse" + label_details: "Detaljer" + label_display: "Vis" label_cancel_comment: "Avbryt kommentar" label_closed_work_packages: "lukket" label_collapse: "Skjul" @@ -255,22 +263,29 @@ label_export: "Eksportèr" label_filename: "Fil" label_filesize: "Størrelse" + label_general: "Generell" label_greater_or_equal: ">=" label_group: 'Gruppe' label_group_by: "Grupper etter" + label_group_plural: "Grupper" label_hide_attributes: "Vis færre" label_hide_column: "Skjul kolonne" label_hide_project_menu: "Collapse project menu" label_in: "i" label_in_less_than: "i mindre enn" label_in_more_than: "i mer enn" + label_incoming_emails: "Inkommende e-post" + label_information_plural: "Informasjon" label_import: "Import" label_latest_activity: "Latest activity" label_last_updated_on: "Sist oppdatert" label_less_or_equal: "<=" label_less_than_ago: "mindre enn dager siden" label_loading: "Laster..." + label_mail_notification: "E-postvarsler" label_me: "meg" + label_meeting_agenda: "Saksliste" + label_meeting_minutes: "Referat" label_menu_collapse: "skjul" label_menu_expand: "utvid" label_more_than_ago: "mer enn dager siden" @@ -291,12 +306,15 @@ label_previous: "Forrige" label_per_page: "Pr. side:" label_please_wait: "Vennligst vent" + label_project_plural: "Prosjekter" label_visibility_settings: "Visibility settings" label_quote_comment: "Quote this comment" label_reset: "Nullstill" label_remove_column: "Remove column" label_remove_columns: "Fjern valgte kolonner" label_remove_row: "Remove row" + label_report: "Rapport" + label_repository_plural: "Pakkebrønner" label_save_as: "Lagre som" label_select_watcher: "Velg en overvåker..." label_selected_filter_list: "Valgte filtre" @@ -307,6 +325,7 @@ label_sort_higher: "Flytt opp" label_sort_lower: "Flytt ned" label_sorting: "Sortering" + label_spent_time: "Tid brukt" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Offentlig" @@ -315,7 +334,9 @@ label_subject: "Emne" label_this_week: "denne uken" label_today: "i dag" + label_time_entry_plural: "Tid brukt" label_up: "Up" + label_user_plural: "Brukere" label_activity_show_only_comments: "Show activities with comments only" label_activity_show_all: "Show all activities" label_total_progress: "%{percent}% utført" @@ -357,6 +378,7 @@ label_wait: "Please wait for configuration..." label_upload_counter: "%{done} of %{count} files finished" label_validation_error: "The work package could not be saved due to the following errors:" + label_version_plural: "Versjoner" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Show attribute help text entry' @@ -436,10 +458,16 @@ includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Prosjekter" + settings: "Innstillinger" time_entry: activity: 'Aktivitet' comment: 'Kommentar' hours: 'Timer' + two_factor_authentication: + label_two_factor_authentication: 'Tofaktorautentisering' watchers: label_loading: loading watchers... label_error_loading: An error occurred while loading the watchers diff --git a/config/locales/crowdin/js-pl.yml b/config/locales/crowdin/js-pl.yml index 52de4c7ee7..0dc4f7f91c 100644 --- a/config/locales/crowdin/js-pl.yml +++ b/config/locales/crowdin/js-pl.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ pl: inline: 'Wyróżniaj w treści:' entire_card_by: 'Cała karta do' remove_from_list: 'Usuń kartę z listy' + caption_rate_history: "Historia stawek" clipboard: browser_error: "Twoja przeglądarka nie obsługuje kopiowania do schowka. Skopiuj tekst ręcznie." copied_successful: "Skopiowano do schowka!" @@ -171,6 +172,9 @@ pl: cannot_save_changes_with_message: "Nie można zapisać zmian ze względu na następujący błąd: %{error}" query_saving: "Nie można zapisać widoku." embedded_table_loading: "Nie można załadować osadzonego widoku: %{message}" + enumeration_activities: "Działania" + enumeration_doc_categories: "Kategoria dokumentu" + enumeration_work_package_priorities: "Priorytety pakietów roboczych" filter: description: text_open_filter: "Otwórz filtr klawiszami strzałek przytrzymując klawisz 'ALT'." @@ -192,6 +196,7 @@ pl: general_text_yes: "tak" general_text_No: "Nie" general_text_Yes: "Tak" + global_roles: Role ogólne hal: error: update_conflict_refresh: "Kliknij tutaj, aby odświeżyć pakiet roboczy i zaktualizować go do najnowszej wersji." @@ -222,6 +227,7 @@ pl: label_and: "i" label_ascending: "Rosnąco" label_author: "Autor: %{user}" + label_avatar: "Awatar" label_between: "pomiędzy" label_board: "Tablica" label_board_locked: "Zablokowany" @@ -235,6 +241,8 @@ pl: label_deactivate: "Wyłącz" label_descending: "Malejąco" label_description: "Opis" + label_details: "Szczegóły" + label_display: "Wyświetlanie" label_cancel_comment: "Anuluj komentarz" label_closed_work_packages: "Zamknięte" label_collapse: "Zwiń" @@ -255,22 +263,29 @@ pl: label_export: "Eksportuj" label_filename: "Plik" label_filesize: "Rozmiar" + label_general: "Ogólne" label_greater_or_equal: "≥" label_group: 'Grupa' label_group_by: "Grupuj według" + label_group_plural: "Grupy" label_hide_attributes: "Pokaż mniej" label_hide_column: "Ukryj kolumnę" label_hide_project_menu: "Zwiń menu projektu" label_in: "w" label_in_less_than: "w mniej niż" label_in_more_than: "w ponad" + label_incoming_emails: "Przychodzące e-maile" + label_information_plural: "Informacje" label_import: "Importuj" label_latest_activity: "Ostatnia aktywność" label_last_updated_on: "Ostatnia aktualizacja" label_less_or_equal: "≤" label_less_than_ago: "mniej niż dni temu" label_loading: "Ładowanie..." + label_mail_notification: "Powiadomienia e-mail" label_me: "ja" + label_meeting_agenda: "Plan spotkania" + label_meeting_minutes: "Protokół ze spotkania" label_menu_collapse: "Zwiń" label_menu_expand: "Rozwiń" label_more_than_ago: "Więcej niż dni temu" @@ -291,12 +306,15 @@ pl: label_previous: "Poprzedni" label_per_page: "Na stronie:" label_please_wait: "Zaczekaj" + label_project_plural: "Projekty" label_visibility_settings: "Ustawienia widoczności" label_quote_comment: "Cytuj komentarz" label_reset: "Reset" label_remove_column: "Usuń kolumnę" label_remove_columns: "Usuń zaznaczone kolumny" label_remove_row: "Usuń wiersz" + label_report: "Raport" + label_repository_plural: "Repozytoria" label_save_as: "Zapisz jako" label_select_watcher: "Wybierz obserwatora..." label_selected_filter_list: "Wybrane filtry" @@ -307,6 +325,7 @@ pl: label_sort_higher: "Przenieś wyżej" label_sort_lower: "Przenieś niżej" label_sorting: "Sortowanie" + label_spent_time: "Czas pracy" label_star_query: "Dodane do ulubionych" label_press_enter_to_save: "Aby zapisać, naciśnij Enter." label_public_query: "Publiczny" @@ -315,7 +334,9 @@ pl: label_subject: "Temat" label_this_week: "ten tydzień" label_today: "dzisiaj" + label_time_entry_plural: "Czas pracy" label_up: "W górę" + label_user_plural: "Użytkownicy" label_activity_show_only_comments: "Wyświetl aktywności tylko z komentarzami" label_activity_show_all: "Wyświetl wszystkie aktywności" label_total_progress: "%{percent}% Całkowitego postępu" @@ -357,6 +378,7 @@ pl: label_wait: "Proszę poczekaj na zakończenie konfiguracji..." label_upload_counter: "%{done} z %{count} plików ukończono" label_validation_error: "Zadania nie mogą być zapisane z powodu błędów:" + label_version_plural: "Wersje" label_view_has_changed: "Ten widok zawiera niezapisane zmiany. Kliknij, aby je zapisać." help_texts: show_modal: 'Pokaż atrybut wpisu tekstu pomocy' @@ -436,10 +458,16 @@ pl: includes: "zawierające" requires: "wymagające" required: "wymagane przez" + edit: + form_configuration: "Form Configuration" + projects: "Projekty" + settings: "Ustawienia" time_entry: activity: 'Działanie' comment: 'Komentarz' hours: 'Godziny' + two_factor_authentication: + label_two_factor_authentication: 'Uwierzytelnianie dwuskładnikowe' watchers: label_loading: ładowanie obserwatorów... label_error_loading: Wystąpił błąd podczas ładowania obserwatorów. diff --git a/config/locales/crowdin/js-pt-BR.yml b/config/locales/crowdin/js-pt-BR.yml index d9ef19271d..abc3353e9b 100644 --- a/config/locales/crowdin/js-pt-BR.yml +++ b/config/locales/crowdin/js-pt-BR.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ pt-BR: inline: 'Destacar embutido:' entire_card_by: 'Todo cartão por' remove_from_list: 'Remover cartão da lista' + caption_rate_history: "Taxa histórica" clipboard: browser_error: "Seu navegador não suporta copiar para a área de transferência. Por favor, copie o texto selecionado manualmente." copied_successful: "Copiado com sucesso para área de transferência!" @@ -170,6 +171,9 @@ pt-BR: cannot_save_changes_with_message: "Não foi possível salvar as alterações devido ao seguinte erro: %{error}" query_saving: "A visão não pode ser salva." embedded_table_loading: "A visão incorporada não pôde ser carregada: %{message}" + enumeration_activities: "Atividades (controle de tempo)" + enumeration_doc_categories: "Categorias de documento" + enumeration_work_package_priorities: "Prioridades do pacote de trabalho" filter: description: text_open_filter: "Abra este filtro com a tecla 'ALT' e as teclas de seta." @@ -191,6 +195,7 @@ pt-BR: general_text_yes: "sim" general_text_No: "Não" general_text_Yes: "Sim" + global_roles: Papéis globais hal: error: update_conflict_refresh: "Clique aqui para atualizar para a versão mais recente." @@ -221,6 +226,7 @@ pt-BR: label_and: "e" label_ascending: "Ascendente" label_author: "Autor: %{user}" + label_avatar: "Imagem do perfil" label_between: "entre" label_board: "Quadro" label_board_locked: "Bloqueado" @@ -234,6 +240,8 @@ pt-BR: label_deactivate: "Desativado" label_descending: "Decrescente" label_description: "Descrição" + label_details: "Detalhes" + label_display: "Display" label_cancel_comment: "Cancelar comentário" label_closed_work_packages: "fechado" label_collapse: "Recolher" @@ -254,22 +262,29 @@ pt-BR: label_export: "Exportar" label_filename: "Arquivo" label_filesize: "Tamanho" + label_general: "Geral" label_greater_or_equal: ">=" label_group: 'Grupo' label_group_by: "Agrupar por" + label_group_plural: "Grupos" label_hide_attributes: "Mostrar Menos" label_hide_column: "Ocultar coluna" label_hide_project_menu: "Recolher menu do projeto" label_in: "em" label_in_less_than: "em menos de" label_in_more_than: "em mais de" + label_incoming_emails: "E-mails recebidos" + label_information_plural: "Informações" label_import: "Importar" label_latest_activity: "Última atividade" label_last_updated_on: "Última atualização em" label_less_or_equal: "<=" label_less_than_ago: "menos dias atrás" label_loading: "Carregando..." + label_mail_notification: "Notificações por e-mail" label_me: "eu" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Atas" label_menu_collapse: "recolher" label_menu_expand: "expandir" label_more_than_ago: "mais do que dias atrás" @@ -290,12 +305,15 @@ pt-BR: label_previous: "Anterior" label_per_page: "Por página:" label_please_wait: "Por favor, aguarde" + label_project_plural: "Projetos" label_visibility_settings: "Configurações de visibilidade" label_quote_comment: "Citar este comentário" label_reset: "Reiniciar" label_remove_column: "Remover coluna" label_remove_columns: "Remover colunas selecionadas" label_remove_row: "Remover linha" + label_report: "Relatório" + label_repository_plural: "Repositórios" label_save_as: "Salvar como" label_select_watcher: "Selecione um observador..." label_selected_filter_list: "Filtros selecionados" @@ -306,6 +324,7 @@ pt-BR: label_sort_higher: "Mover para cima" label_sort_lower: "Mover para baixo" label_sorting: "Ordenação" + label_spent_time: "Tempo gasto" label_star_query: "Favorecido" label_press_enter_to_save: "Pressione enter para salvar." label_public_query: "Público" @@ -314,7 +333,9 @@ pt-BR: label_subject: "Assunto" label_this_week: "esta semana" label_today: "hoje" + label_time_entry_plural: "Tempo gasto" label_up: "Acima" + label_user_plural: "Usuários" label_activity_show_only_comments: "Mostrar somente as atividades com comentários" label_activity_show_all: "Mostrar todas as atividades" label_total_progress: "%{percent}% Total de progresso" @@ -356,6 +377,7 @@ pt-BR: label_wait: "Por favor, aguarde pela configuração..." label_upload_counter: "%{done} de %{count} de arquivos finalizados" label_validation_error: "O pacote de trabalho não pôde ser salvo devido aos seguintes erros:" + label_version_plural: "Versões" label_view_has_changed: "Esta visão tem alterações não salvas. Clique para salvá-las." help_texts: show_modal: 'Mostrar entrada para o texto de ajuda de atributos' @@ -435,10 +457,16 @@ pt-BR: includes: "incluindo" requires: "exigindo" required: "exigido por" + edit: + form_configuration: "Form Configuration" + projects: "Projetos" + settings: "Configurações" time_entry: activity: 'Atividade' comment: 'Comentário' hours: 'horas' + two_factor_authentication: + label_two_factor_authentication: 'Autenticação de dois fatores' watchers: label_loading: carregando observadores... label_error_loading: Ocorreu um erro ao carregar os observadores diff --git a/config/locales/crowdin/js-pt.yml b/config/locales/crowdin/js-pt.yml index f0d52de796..dfacce9fd6 100644 --- a/config/locales/crowdin/js-pt.yml +++ b/config/locales/crowdin/js-pt.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ pt: inline: 'Destaque em linha:' entire_card_by: 'Cartão inteiro por' remove_from_list: 'Eliminar cartão da lista' + caption_rate_history: "Histórico de taxas" clipboard: browser_error: "O seu navegador não suporta o copiar para a área de transferência. Por favor, copie manualmente o texto selecionado." copied_successful: "Copiado com sucesso para área de transferência!" @@ -171,6 +172,9 @@ pt: cannot_save_changes_with_message: "Não é possível guardar as alterações devido ao seguinte erro: %{error}" query_saving: "Não foi possível guardar a vista." embedded_table_loading: "Não foi possível carregar a vista incorporada: %{message}" + enumeration_activities: "Actividades (tempo)" + enumeration_doc_categories: "Categorias de documentos" + enumeration_work_package_priorities: "Prioridades de tarefas" filter: description: text_open_filter: "Abra este filtro com 'ALT' e teclas de seta." @@ -192,6 +196,7 @@ pt: general_text_yes: "sim" general_text_No: "Não" general_text_Yes: "Sim" + global_roles: Papéis Globais hal: error: update_conflict_refresh: "Clique aqui para atualizar o recurso e atualizar para a versão mais recente." @@ -222,6 +227,7 @@ pt: label_and: "e" label_ascending: "Ascendente" label_author: "Autor: %{user}" + label_avatar: "Avatar" label_between: "entre" label_board: "Quadro" label_board_locked: "Bloqueado" @@ -235,6 +241,8 @@ pt: label_deactivate: "Desativar" label_descending: "Descendente" label_description: "Descrição" + label_details: "Detalhes" + label_display: "Mostrador" label_cancel_comment: "Cancelar comentário" label_closed_work_packages: "fechado" label_collapse: "Colapso" @@ -255,22 +263,29 @@ pt: label_export: "Exportar" label_filename: "Ficheiro" label_filesize: "Tamanho" + label_general: "Geral" label_greater_or_equal: ">=" label_group: 'Grupo' label_group_by: "Agrupar por" + label_group_plural: "Grupos" label_hide_attributes: "Mostrar Menos" label_hide_column: "Ocultar coluna" label_hide_project_menu: "Recolher menu de projeto" label_in: "em" label_in_less_than: "em menos de" label_in_more_than: "em mais de" + label_incoming_emails: "E-mails recebidos" + label_information_plural: "Informação" label_import: "Importar" label_latest_activity: "Atividade mais recente" label_last_updated_on: "Última actualização em" label_less_or_equal: "<=" label_less_than_ago: "menos que dias atrás" label_loading: "A carregar..." + label_mail_notification: "Notificações por e-mail" label_me: "eu" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Minutos" label_menu_collapse: "ocultar" label_menu_expand: "expandir" label_more_than_ago: "mais do que dias atrás" @@ -291,12 +306,15 @@ pt: label_previous: "Anterior" label_per_page: "Por página:" label_please_wait: "Aguarde, por favor" + label_project_plural: "Projetos" label_visibility_settings: "Configurações de visibilidade" label_quote_comment: "Citar este comentário" label_reset: "Reiniciar" label_remove_column: "Remover coluna" label_remove_columns: "Remover colunas selecionadas" label_remove_row: "Remover linha" + label_report: "Relatório" + label_repository_plural: "Repositórios" label_save_as: "Guardar como" label_select_watcher: "Selecione um \"observador\"..." label_selected_filter_list: "Filtros selecionados" @@ -307,6 +325,7 @@ pt: label_sort_higher: "Subir" label_sort_lower: "Descer" label_sorting: "Ordenação" + label_spent_time: "Tempo usado" label_star_query: "Favoritos" label_press_enter_to_save: "Pressione Enter para guardar." label_public_query: "Público" @@ -315,7 +334,9 @@ pt: label_subject: "Assunto" label_this_week: "esta semana" label_today: "hoje" + label_time_entry_plural: "Tempo usado" label_up: "Cima" + label_user_plural: "Utilizadores" label_activity_show_only_comments: "Mostrar apenas atividades com comentários" label_activity_show_all: "Mostrar todas as atividades" label_total_progress: "%{percent}% Total de progresso" @@ -357,6 +378,7 @@ pt: label_wait: "Por favor aguarde pela configuração..." label_upload_counter: "%{done} de %{count} de ficheiros acabados" label_validation_error: "A tarefa não pode ser guardada devido aos seguintes erros:" + label_version_plural: "Versões" label_view_has_changed: "Esta vista tem alterações não guardadas. Clique para guardá-las." help_texts: show_modal: 'Mostrar entrada do texto de ajuda de atributos' @@ -436,10 +458,16 @@ pt: includes: "incluindo" requires: "a necessitar" required: "exigido por" + edit: + form_configuration: "Form Configuration" + projects: "Projetos" + settings: "Definições" time_entry: activity: 'Atividade' comment: 'Comentario' hours: 'Horas' + two_factor_authentication: + label_two_factor_authentication: 'Autenticação de dois fatores' watchers: label_loading: carregando observadores... label_error_loading: Ocorreu um erro ao carregar os observadores diff --git a/config/locales/crowdin/js-ro.yml b/config/locales/crowdin/js-ro.yml index b76b0e8257..fc4d5f880e 100644 --- a/config/locales/crowdin/js-ro.yml +++ b/config/locales/crowdin/js-ro.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ ro: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Rate history" clipboard: browser_error: "Browser-ul nu acceptă copierea în ecranul tampon. Vă rugăm să copiaţi textul selectat manual." copied_successful: "Copiere în ecranul tampon reușită!" @@ -170,6 +171,9 @@ ro: cannot_save_changes_with_message: "Schimbările nu pot fi salvate datorită acestei erori: %{error}" query_saving: "Configurația nu poate salvată." embedded_table_loading: "Configurația inserată nu poate fi încarcată: %{message}" + enumeration_activities: "Activități (durata de lucru)" + enumeration_doc_categories: "Document categories" + enumeration_work_package_priorities: "Priorități pentru pachetele de lucru" filter: description: text_open_filter: "Deschideți acest filtru cu 'ALT' și tastele săgeată." @@ -191,6 +195,7 @@ ro: general_text_yes: "da" general_text_No: "Nu" general_text_Yes: "Da" + global_roles: Global Roles hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -221,6 +226,7 @@ ro: label_and: "și" label_ascending: "Crescător" label_author: "Autor: %{user}" + label_avatar: "Avatar" label_between: "between" label_board: "Board" label_board_locked: "Închis" @@ -234,6 +240,8 @@ ro: label_deactivate: "Dezactivare" label_descending: "Descrescător" label_description: "Descriere" + label_details: "Detalii" + label_display: "Afișare" label_cancel_comment: "Anulează comentariu" label_closed_work_packages: "închis" label_collapse: "Restrângere" @@ -254,22 +262,29 @@ ro: label_export: "Exportare" label_filename: "Fișier" label_filesize: "Dimensiune" + label_general: "General" label_greater_or_equal: ">=" label_group: 'Grup' label_group_by: "Grupare după" + label_group_plural: "Grupuri" label_hide_attributes: "Arată mai puţin" label_hide_column: "Ascundere coloana" label_hide_project_menu: "Închideți meniul proiectului" label_in: "în" label_in_less_than: "în mai puțin de" label_in_more_than: "în mai mult de" + label_incoming_emails: "E-mailuri primite" + label_information_plural: "Informații" label_import: "Import" label_latest_activity: "Activitate recentă" label_last_updated_on: "Ultima actualizare la data de" label_less_or_equal: "<=" label_less_than_ago: "acum mai puțin de zile" label_loading: "Se încarcă..." + label_mail_notification: "Notificări prin e-mail" label_me: "eu" + label_meeting_agenda: "Agendă" + label_meeting_minutes: "Concluzii" label_menu_collapse: "restrângere" label_menu_expand: "extindere" label_more_than_ago: "acum mai mult de zile" @@ -290,12 +305,15 @@ ro: label_previous: "Înapoi" label_per_page: "Pe pagină:" label_please_wait: "Așteptați" + label_project_plural: "Proiecte" label_visibility_settings: "Setări de vizibilitate" label_quote_comment: "Citare comentariu" label_reset: "Resetare" label_remove_column: "Elimina colana" label_remove_columns: "Eliminare coloane selectate" label_remove_row: "Elimina rand" + label_report: "Raportare" + label_repository_plural: "Repo-uri" label_save_as: "Salvare ca" label_select_watcher: "Selectaţi un observator..." label_selected_filter_list: "Filtre selectate" @@ -306,6 +324,7 @@ ro: label_sort_higher: "Mută în sus" label_sort_lower: "Mută în jos" label_sorting: "Sortare" + label_spent_time: "Timp consumat" label_star_query: "Favorite" label_press_enter_to_save: "Apăsați tasta ”Enter” pentru a salva." label_public_query: "Public" @@ -314,7 +333,9 @@ ro: label_subject: "Subiect" label_this_week: "săptămâna curentă" label_today: "astăzi" + label_time_entry_plural: "Timp consumat" label_up: "Sus" + label_user_plural: "Utilizatori" label_activity_show_only_comments: "Afișați doar activitățile ce conțin comentarii" label_activity_show_all: "Afișează toate activitățile" label_total_progress: "%{percent} % Progres total" @@ -356,6 +377,7 @@ ro: label_wait: "Vă rugăm să aşteptaţi pentru configurare..." label_upload_counter: "%{done} din %{count} de fişiere terminate" label_validation_error: "Pachetul de lucru nu a putut fi salvat din cauza următoarelor erori:" + label_version_plural: "Versiuni" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Show attribute help text entry' @@ -435,10 +457,16 @@ ro: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Proiecte" + settings: "Setări" time_entry: activity: 'Activitate' comment: 'Comentariu' hours: 'Ore' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' watchers: label_loading: se încarcă observatorii... label_error_loading: A apărut o eroare în timpul încărcării observatorilor diff --git a/config/locales/crowdin/js-ru.yml b/config/locales/crowdin/js-ru.yml index 0feebef070..d3fd5889b6 100644 --- a/config/locales/crowdin/js-ru.yml +++ b/config/locales/crowdin/js-ru.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ ru: inline: 'Выделение:' entire_card_by: 'Вся карточка по' remove_from_list: 'Удалить карточку из списка' + caption_rate_history: "История тарифов" clipboard: browser_error: "Ваш браузер не поддерживает копирование в буфер обмена. Пожалуйста, скопируйте выделенный текст вручную." copied_successful: "Успешно скопировано в буфер обмена!" @@ -170,6 +171,9 @@ ru: cannot_save_changes_with_message: "Не удается сохранить изменения из-за следующей ошибки: %{error}" query_saving: "Представление не может быть сохранено." embedded_table_loading: "Встроенное представление не может быть загружено: %{message}" + enumeration_activities: "Деятельность (отслеживание времени)" + enumeration_doc_categories: "Категории документов" + enumeration_work_package_priorities: "Приоритеты пакета работ" filter: description: text_open_filter: "Откройте этот фильтр с «ALT» и клавишей со стрелкой." @@ -191,6 +195,7 @@ ru: general_text_yes: "Да" general_text_No: "Нет" general_text_Yes: "да" + global_roles: Глобальная роль hal: error: update_conflict_refresh: "Кликните здесь для обновления ресурса и обновления до последней версии." @@ -221,6 +226,7 @@ ru: label_and: "и" label_ascending: "По возрастанию" label_author: "Автор: %{user}" + label_avatar: "Аватар" label_between: "между" label_board: "Доска" label_board_locked: "Заперто" @@ -234,6 +240,8 @@ ru: label_deactivate: "Деактивировать" label_descending: "По убыванию" label_description: "Описание" + label_details: "Детали" + label_display: "Отображение" label_cancel_comment: "Отменить комментарий" label_closed_work_packages: "закрыт" label_collapse: "свернуть" @@ -254,22 +262,29 @@ ru: label_export: "Экспорт" label_filename: "Файл" label_filesize: "Размер" + label_general: "Общие" label_greater_or_equal: ">=" label_group: 'Группа' label_group_by: "Группировать по" + label_group_plural: "Группы" label_hide_attributes: "Показывать меньше" label_hide_column: "Скрыть столбец" label_hide_project_menu: "Свернуть меню проекта" label_in: "в" label_in_less_than: "менее чем" label_in_more_than: "более чем" + label_incoming_emails: "Входящие e-mail" + label_information_plural: "Информация" label_import: "Импорт" label_latest_activity: "Последние действия" label_last_updated_on: "Последний раз обновлено" label_less_or_equal: "<=" label_less_than_ago: "меньше чем день назад" label_loading: "Загрузка..." + label_mail_notification: "Уведомления по электронной почте" label_me: "мне" + label_meeting_agenda: "Повестка дня" + label_meeting_minutes: "Протокол(-ы)" label_menu_collapse: "свернуть" label_menu_expand: "развернуть" label_more_than_ago: "больше, чем дней назад" @@ -290,12 +305,15 @@ ru: label_previous: "Предыдущие" label_per_page: "На странице:" label_please_wait: "Пожалуйста, подождите" + label_project_plural: "Проекты" label_visibility_settings: "Параметры видимости" label_quote_comment: "Цитировать этот комментарий" label_reset: "Сброс" label_remove_column: "Удалить столбец" label_remove_columns: "Удалить выбранные столбцы" label_remove_row: "Удалить строку" + label_report: "Отчет" + label_repository_plural: "Репозитории" label_save_as: "Сохранить как" label_select_watcher: "Выберите наблюдателя..." label_selected_filter_list: "Выбранные фильтры" @@ -306,6 +324,7 @@ ru: label_sort_higher: "Переместить вверх" label_sort_lower: "Переместить вниз" label_sorting: "Сортировка" + label_spent_time: "Затраченное время" label_star_query: "Добавлено в избранное" label_press_enter_to_save: "Нажмите ввод для сохранения." label_public_query: "Общий" @@ -314,7 +333,9 @@ ru: label_subject: "Тема" label_this_week: "на этой неделе" label_today: "Сегодня" + label_time_entry_plural: "Затраченное время" label_up: "Вверх" + label_user_plural: "Пользователи" label_activity_show_only_comments: "Показать только деятельности с комментариями" label_activity_show_all: "Показать все активности" label_total_progress: "%{percent}% общего прогресса" @@ -356,6 +377,7 @@ ru: label_wait: "Пожалуйста, подождите конфигурирование..." label_upload_counter: "%{done} %{count} файлов, готовы" label_validation_error: "Пакет работ не удалось сохранить из-за следующих ошибок:" + label_version_plural: "Этапы" label_view_has_changed: "У этого вида есть несохраненные изменения. Нажмите, чтобы сохранить их." help_texts: show_modal: 'Показать содержимое атрибута текста справки' @@ -435,10 +457,16 @@ ru: includes: "включая" requires: "требование" required: "необходим для" + edit: + form_configuration: "Form Configuration" + projects: "Проекты" + settings: "Параметры" time_entry: activity: 'Деятельность' comment: 'Комментарий' hours: 'Часы' + two_factor_authentication: + label_two_factor_authentication: 'Двухфакторная аутентификация' watchers: label_loading: Загрузка наблюдателей... label_error_loading: При загрузке наблюдателей произошла ошибка diff --git a/config/locales/crowdin/js-sk.yml b/config/locales/crowdin/js-sk.yml index 1d21757de8..81ae060397 100644 --- a/config/locales/crowdin/js-sk.yml +++ b/config/locales/crowdin/js-sk.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ sk: inline: 'Highlight inline:' entire_card_by: 'Celý riadok o' remove_from_list: 'Odstrániť kartu zo zoznamu' + caption_rate_history: "Hodinová sadzba - História" clipboard: browser_error: "Váš prehliadač nepodporuje kopírovanie do schránky. Manuálne skopírujte vybratý text." copied_successful: "Úspešne skopírované do schránky!" @@ -171,6 +172,9 @@ sk: cannot_save_changes_with_message: "Nie je možné uložiť zmeny kvôli nasledujúcej chybe: %{error}" query_saving: "Pohľad sa nepodarilo uložiť." embedded_table_loading: "Vložený pohľad nemožno načítať: %{message}" + enumeration_activities: "Činnosti (sledovanie času)" + enumeration_doc_categories: "Kategórie dokumentu" + enumeration_work_package_priorities: "Priority Pracovného balíka" filter: description: text_open_filter: "Otvorte tento filter pomocou „Alt“ a šípok." @@ -192,6 +196,7 @@ sk: general_text_yes: "áno" general_text_No: "Nie" general_text_Yes: "Áno" + global_roles: Globálne roly hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ sk: label_and: "a" label_ascending: "Vzostupne" label_author: "Autor: %{user}" + label_avatar: "Avatar" label_between: "medzi" label_board: "Nástenka" label_board_locked: "Uzamknuté" @@ -235,6 +241,8 @@ sk: label_deactivate: "Deaktivovať" label_descending: "Zostupne" label_description: "Popis" + label_details: "Podrobnosti" + label_display: "Zobraziť" label_cancel_comment: "Zrušiť komentár" label_closed_work_packages: "uzatvorené" label_collapse: "Zbaliť" @@ -255,22 +263,29 @@ sk: label_export: "Exportovať" label_filename: "Súbor" label_filesize: "Veľkosť" + label_general: "Všeobecné" label_greater_or_equal: ">=" label_group: 'Skupina' label_group_by: "Zoskupiť podľa" + label_group_plural: "Skupiny" label_hide_attributes: "Zobraziť menej" label_hide_column: "Skryť stĺpec" label_hide_project_menu: "Zbaliť ponuku projektu" label_in: "v" label_in_less_than: "v menej ako" label_in_more_than: "vo viac ako" + label_incoming_emails: "Prichádzajúce e-maily" + label_information_plural: "Informácie" label_import: "Import" label_latest_activity: "Posledná aktivita" label_last_updated_on: "Naposledy aktualizované" label_less_or_equal: "<=" label_less_than_ago: "pred necelým dňom" label_loading: "Načítava sa..." + label_mail_notification: "Upozornenia e-mailom" label_me: "mňa" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Zápisnica" label_menu_collapse: "zbaliť" label_menu_expand: "rozbaliť" label_more_than_ago: "pred viac než dňom" @@ -291,12 +306,15 @@ sk: label_previous: "Predošlý" label_per_page: "Na stranu:" label_please_wait: "Prosím, čakajte" + label_project_plural: "Projekty" label_visibility_settings: "Nastavenia viditeľnosti" label_quote_comment: "Citovať tento komentár" label_reset: "Vynulovať" label_remove_column: "Odstrániť stĺpec" label_remove_columns: "Odstrániť vybraté stĺpce" label_remove_row: "Odstrániť riadok" + label_report: "Report" + label_repository_plural: "Repozitáre" label_save_as: "Uložiť ako" label_select_watcher: "Vybrať pozorovateľa ..." label_selected_filter_list: "Vybrané filtre" @@ -307,6 +325,7 @@ sk: label_sort_higher: "Presunúť vyššie" label_sort_lower: "Presunúť nižšie" label_sorting: "Zoradenie" + label_spent_time: "Strávený čas" label_star_query: "Preferované" label_press_enter_to_save: "Stlačte enter pre uloženie." label_public_query: "Verejný" @@ -315,7 +334,9 @@ sk: label_subject: "Predmet" label_this_week: "tento týždeň" label_today: "dnes" + label_time_entry_plural: "Strávený čas" label_up: "Hore" + label_user_plural: "Užívatelia" label_activity_show_only_comments: "Zobraziť len aktivity s komentármi" label_activity_show_all: "Zobraziť všetky aktivity" label_total_progress: "%{percent}% celkový priebeh" @@ -357,6 +378,7 @@ sk: label_wait: "Počkajte, prosím, pre konfiguráciu..." label_upload_counter: "%{done} z %{count} súborov hotové" label_validation_error: "Pracovný balík sa nepodarilo uložiť z nasledujúcich chýb:" + label_version_plural: "Verzie" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Zobraziť nápovedu pre tento atribút' @@ -436,10 +458,16 @@ sk: includes: "vrátane" requires: "vyžaduje" required: "požadované" + edit: + form_configuration: "Form Configuration" + projects: "Projekty" + settings: "Nastavenia" time_entry: activity: 'Činnosť' comment: 'Komentár' hours: 'Hodín' + two_factor_authentication: + label_two_factor_authentication: 'Dvojfaktorové overenie (2FA)' watchers: label_loading: načítanie pozorovateľov... label_error_loading: Vyskytla sa chyba pri načítavaní pozorovateľov diff --git a/config/locales/crowdin/js-sv.yml b/config/locales/crowdin/js-sv.yml index 156e8d3f68..70bb93f57b 100644 --- a/config/locales/crowdin/js-sv.yml +++ b/config/locales/crowdin/js-sv.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ sv: inline: 'Markera inline:' entire_card_by: 'Hela kortet med' remove_from_list: 'Ta bort kort från listan' + caption_rate_history: "Historiska timpriser" clipboard: browser_error: "Din webbläsare stöder inte kopiera till Urklipp. Vänligen kopiera den markerade texten manuellt." copied_successful: "Kopierad till Urklipp!" @@ -170,6 +171,9 @@ sv: cannot_save_changes_with_message: "Kan inte spara dina ändringar på grund av följande error: %{error}" query_saving: "Vyn kunde inte sparas." embedded_table_loading: "Den inbäddade vyn kunde inte laddas: %{message}" + enumeration_activities: "Aktiviteter (tidredovisning)" + enumeration_doc_categories: "Dokumentkategorier" + enumeration_work_package_priorities: "Arbetspaketsprioritering" filter: description: text_open_filter: "Öppna det här filtret med 'ALT' och piltangenterna." @@ -191,6 +195,7 @@ sv: general_text_yes: "ja" general_text_No: "Nej" general_text_Yes: "Ja" + global_roles: Globala roller hal: error: update_conflict_refresh: "Klicka här för att uppdatera resursen och uppdatera till den nyaste versionen." @@ -221,6 +226,7 @@ sv: label_and: "och" label_ascending: "Stigande" label_author: "Författare: %{user}" + label_avatar: "Profilbild" label_between: "mellan" label_board: "Tavla" label_board_locked: "Låst" @@ -234,6 +240,8 @@ sv: label_deactivate: "Deaktivera" label_descending: "Fallande" label_description: "Beskrivning" + label_details: "Detaljer" + label_display: "Visa" label_cancel_comment: "Avbryt kommentar" label_closed_work_packages: "stängt" label_collapse: "Fäll ihop" @@ -254,22 +262,29 @@ sv: label_export: "Exportera" label_filename: "Fil" label_filesize: "Filstorlek" + label_general: "Allmänt" label_greater_or_equal: ">=" label_group: 'Grupp' label_group_by: "Gruppera efter" + label_group_plural: "Grupper" label_hide_attributes: "Visa mindre" label_hide_column: "Dölj kolumn" label_hide_project_menu: "Minimera projektmenyn" label_in: "i" label_in_less_than: "i mindre än" label_in_more_than: "i mer än" + label_incoming_emails: "Inkommande E-post" + label_information_plural: "Information" label_import: "Importera" label_latest_activity: "Senaste aktivitet" label_last_updated_on: "Senast uppdaterad den" label_less_or_equal: "<=" label_less_than_ago: "mindre än dagar sedan" label_loading: "Laddar..." + label_mail_notification: "E-postaviseringar" label_me: "mig" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Protokoll" label_menu_collapse: "fäll ihop" label_menu_expand: "expandera" label_more_than_ago: "mer än dagar sedan" @@ -290,12 +305,15 @@ sv: label_previous: "Föregående" label_per_page: "Per sida:" label_please_wait: "Vänligen vänta" + label_project_plural: "Projekt" label_visibility_settings: "Synlighet inställningar" label_quote_comment: "Citera denna kommentar" label_reset: "Återställ" label_remove_column: "Ta bort kolumn" label_remove_columns: "Ta bort markerade kolumner" label_remove_row: "Ta bort rad" + label_report: "Rapport" + label_repository_plural: "Versionsarkiv" label_save_as: "Spara som" label_select_watcher: "Välj en bevakare..." label_selected_filter_list: "Valda filter" @@ -306,6 +324,7 @@ sv: label_sort_higher: "Flytta upp" label_sort_lower: "Flytta ned" label_sorting: "Sortering" + label_spent_time: "Förbrukad tid" label_star_query: "Föredragen" label_press_enter_to_save: "Tryck på enter för att spara." label_public_query: "Offentlig" @@ -314,7 +333,9 @@ sv: label_subject: "Ämne" label_this_week: "denna vecka" label_today: "idag" + label_time_entry_plural: "Förbrukad tid" label_up: "Upp" + label_user_plural: "Användare" label_activity_show_only_comments: "Visa aktiviteter med endast kommentarer" label_activity_show_all: "Visa aktiviteter" label_total_progress: "%{percent}% Totalt klart" @@ -356,6 +377,7 @@ sv: label_wait: "Vänligen vänta för konfiguration..." label_upload_counter: "%{done} av %{count} filer färdiga" label_validation_error: "Arbetspaketet kunde inte sparas på grund av följande fel:" + label_version_plural: "Versioner" label_view_has_changed: "Denna vy har osparade ändringar. Klicka för att spara dem." help_texts: show_modal: 'Visa attribut hjälp textinmatning' @@ -435,10 +457,16 @@ sv: includes: "inklusive" requires: "kräver" required: "krävs av" + edit: + form_configuration: "Form Configuration" + projects: "Projekt" + settings: "Inställningar" time_entry: activity: 'Aktivitet' comment: 'Kommentar' hours: 'Timmar' + two_factor_authentication: + label_two_factor_authentication: 'Tvåfaktorsautentisering' watchers: label_loading: laddar bevakare... label_error_loading: Ett fel inträffade när bevakarna laddades diff --git a/config/locales/crowdin/js-tr.yml b/config/locales/crowdin/js-tr.yml index b0ef56c370..cefd76bc8e 100644 --- a/config/locales/crowdin/js-tr.yml +++ b/config/locales/crowdin/js-tr.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ tr: inline: 'Satır içi vurgula:' entire_card_by: 'Kartın tamamı' remove_from_list: 'Kartı listeden çıkar' + caption_rate_history: "Hız tarihi" clipboard: browser_error: "Tarayıcınız panoya kopyalamayı desteklemiyor. Metni lütfen elle kopyalayınız." copied_successful: "Panoya başarıyla kopyalandı!" @@ -171,6 +172,9 @@ tr: cannot_save_changes_with_message: "Değişikliklerinizin kaydedilememesine sebep olan hata: %{error}" query_saving: "Görünüm kaydedilemedi." embedded_table_loading: "Gömülü görünüm yüklenemedi: %{message}" + enumeration_activities: "Etkinlikler (zaman izleme)" + enumeration_doc_categories: "Belge kategorileri" + enumeration_work_package_priorities: "İş paketi öncelikleri" filter: description: text_open_filter: "Bu filtreyi 'ALT' ve ok tuşları ile açın." @@ -192,6 +196,7 @@ tr: general_text_yes: "evet" general_text_No: "Hayır" general_text_Yes: "Evet" + global_roles: Küresel rolleri hal: error: update_conflict_refresh: "Kaynağı yenilemek ve en yeni sürüme güncellemek için burayı tıklayın." @@ -222,6 +227,7 @@ tr: label_and: "ve" label_ascending: "Azalan" label_author: "Yazar: %{user}" + label_avatar: "Avatar" label_between: "arasında" label_board: "Pano" label_board_locked: "Kilitlendi" @@ -235,6 +241,8 @@ tr: label_deactivate: "Etkisizleştir" label_descending: "Azalan" label_description: "Açıklama" + label_details: "Detaylar" + label_display: "Göster" label_cancel_comment: "Yorumu iptal et" label_closed_work_packages: "kapalı" label_collapse: "Daralt" @@ -255,22 +263,29 @@ tr: label_export: "Dışarı aktar" label_filename: "Dosya" label_filesize: "Boyutu" + label_general: "Genel" label_greater_or_equal: ">=" label_group: 'Grup' label_group_by: "Grupla" + label_group_plural: "Gruplar" label_hide_attributes: "Daha az göster" label_hide_column: "Sütunu gizle" label_hide_project_menu: "Proje menüsünü daralt" label_in: "şurada" label_in_less_than: "daha azdır" label_in_more_than: "daha fazla" + label_incoming_emails: "Gelen e-postalar" + label_information_plural: "Bilgi" label_import: "İçeri Aktar" label_latest_activity: "En son etkinlik" label_last_updated_on: "Son güncelleme" label_less_or_equal: "<=" label_less_than_ago: "bir haftadan kısa bir süre önce" label_loading: "Yükleniyor..." + label_mail_notification: "E-posta bildirimleri" label_me: "ben" + label_meeting_agenda: "Ajanda" + label_meeting_minutes: "Dakika" label_menu_collapse: "çöküş" label_menu_expand: "genişletmek" label_more_than_ago: "günler önce" @@ -291,12 +306,15 @@ tr: label_previous: "Önceki" label_per_page: "Sayfa başına:" label_please_wait: "Lütfen bekleyin" + label_project_plural: "Projeler" label_visibility_settings: "Görünürlük ayarları" label_quote_comment: "Yorumu alıntıla" label_reset: "Sıfırla" label_remove_column: "Sütunu kaldır" label_remove_columns: "Seçili sütunları sil" label_remove_row: "Satırı kaldır" + label_report: "Rapor" + label_repository_plural: "Depolar" label_save_as: "Farklı Kaydet" label_select_watcher: "Takipçi seç..." label_selected_filter_list: "Seçilen filtreler" @@ -307,6 +325,7 @@ tr: label_sort_higher: "Yukarı taşı" label_sort_lower: "Aşağı taşı" label_sorting: "Sıralama" + label_spent_time: "Harcanan zaman" label_star_query: "avantajlı" label_press_enter_to_save: "Kaydetmek için enter tuşuna basın." label_public_query: "Herkese Açık" @@ -315,7 +334,9 @@ tr: label_subject: "Konu" label_this_week: "bu hafta" label_today: "bugün" + label_time_entry_plural: "Harcanan zaman" label_up: "Yukarı" + label_user_plural: "Kullanıcılar" label_activity_show_only_comments: "Sadece yorumların olduğu etkinlikleri göster" label_activity_show_all: "Tüm etkinlikleri göster" label_total_progress: "Toplam ilerleme %{percent}%" @@ -357,6 +378,7 @@ tr: label_wait: "Lütfen Yapılandırmanın tamamlanmasını bekleyin..." label_upload_counter: "%{done} / %{count} dosya yüklendi" label_validation_error: "İş paketi aşağıdaki hatalar nedeniyle kaydedilemedi:" + label_version_plural: "Sürümler" label_view_has_changed: "Bu görünüm kaydedilmemiş değişikliklere sahip. Onları kaydetmek için tıklayın." help_texts: show_modal: 'Metin giriş öznitelik yardımını göster' @@ -436,10 +458,16 @@ tr: includes: "dahil olmak üzere" requires: "gerektiren" required: "tarafından gerekli" + edit: + form_configuration: "Form Configuration" + projects: "Projeler" + settings: "Ayarlar" time_entry: activity: 'Etkinlik' comment: 'Yorum' hours: 'Saat' + two_factor_authentication: + label_two_factor_authentication: 'İki faktörlü kimlik doğrulama' watchers: label_loading: takipçiler yükleniyor... label_error_loading: Takipçileri yüklerken bir hata oluştu diff --git a/config/locales/crowdin/js-uk.yml b/config/locales/crowdin/js-uk.yml index 7166714a9e..2984c6f748 100644 --- a/config/locales/crowdin/js-uk.yml +++ b/config/locales/crowdin/js-uk.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ uk: inline: 'Виділіть у рядку:' entire_card_by: 'Пов''язана картка' remove_from_list: 'Вилучити зі списку' + caption_rate_history: "Історія рейтингу" clipboard: browser_error: "Ваш браузер не підтримує копіювання до буфера обміну. Потрібно скопіювати виділений текст вручну." copied_successful: "Успішно скопійовано до буфера обміну!" @@ -171,6 +172,9 @@ uk: cannot_save_changes_with_message: "Не вдалося зберегти зміни через такі помилки: %{error}" query_saving: "Перегляд не вдалося зберегти." embedded_table_loading: "Вбудований перегляд не вдалося завантажити: %{message}" + enumeration_activities: "Дії (облік часу)" + enumeration_doc_categories: "Категорії документів" + enumeration_work_package_priorities: "Пріоритети робочого пакету" filter: description: text_open_filter: "Відкрийте цей фільтр за допомогою «ALT» і клавіш зі стрілками." @@ -192,6 +196,7 @@ uk: general_text_yes: "так" general_text_No: "Ні" general_text_Yes: "Так" + global_roles: Глобальні ролі hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -222,6 +227,7 @@ uk: label_and: "і" label_ascending: "За зростанням" label_author: "Автор: %{user}" + label_avatar: "Аватар" label_between: "між ними" label_board: "Дошка" label_board_locked: "Заблоковано" @@ -235,6 +241,8 @@ uk: label_deactivate: "Деактивувати" label_descending: "За спаданням" label_description: "Опис" + label_details: "Детальніше" + label_display: "Дисплей" label_cancel_comment: "Скасувати коментар" label_closed_work_packages: "зачинено" label_collapse: "Згорнути" @@ -255,22 +263,29 @@ uk: label_export: "Експорт" label_filename: "Файл" label_filesize: "Розмір" + label_general: "Загальні" label_greater_or_equal: ">=" label_group: 'Група' label_group_by: "Групувати за" + label_group_plural: "Групи" label_hide_attributes: "Показати менше" label_hide_column: "Приховати стовпчик" label_hide_project_menu: "Згорнути меню проекту" label_in: "в" label_in_less_than: "менш ніж" label_in_more_than: "більше ніж" + label_incoming_emails: "Вхідні повідомлення" + label_information_plural: "Інформація" label_import: "Імпортувати" label_latest_activity: "Останні дії" label_last_updated_on: "Останнє оновлення" label_less_or_equal: "<=" label_less_than_ago: "менше, ніж день тому" label_loading: "Завантаження..." + label_mail_notification: "Email сповіщення" label_me: "мені" + label_meeting_agenda: "Порядок денний" + label_meeting_minutes: "Хвилини" label_menu_collapse: "згорнути" label_menu_expand: "розгорнути" label_more_than_ago: "більш ніж днів(я) назад" @@ -291,12 +306,15 @@ uk: label_previous: "Попередній" label_per_page: "К-сть на сторінку:" label_please_wait: "Будь ласка, зачекайте" + label_project_plural: "Проекти" label_visibility_settings: "Налаштування видимості ..." label_quote_comment: "Цитувати цей коментар" label_reset: "Скинути" label_remove_column: "Видалити стовпець" label_remove_columns: "Видалити вибрані стовпці" label_remove_row: "Видалити рядок" + label_report: "Звіт" + label_repository_plural: "Репозиторії" label_save_as: "Зберегти як" label_select_watcher: "Виберіть спостерігача..." label_selected_filter_list: "Вибрані фільтри" @@ -307,6 +325,7 @@ uk: label_sort_higher: "Рухатися вгору" label_sort_lower: "Пересунути нижче" label_sorting: "Сортування" + label_spent_time: "Трудовитрати" label_star_query: "Улюблений" label_press_enter_to_save: "Натисніть enter, щоб зберегти." label_public_query: "Публічний" @@ -315,7 +334,9 @@ uk: label_subject: "Тема" label_this_week: "цього тижня" label_today: "сьогодні" + label_time_entry_plural: "Трудовитрати" label_up: "Вгору" + label_user_plural: "Користувачі" label_activity_show_only_comments: "Показувати заходи лише з коментарями" label_activity_show_all: "Показати всю активність" label_total_progress: "%{percent}% загального прогресу" @@ -357,6 +378,7 @@ uk: label_wait: "Будь ласка, зачекайте конфігурації..." label_upload_counter: "%{done} з %{count} файлу(-ів) завершені" label_validation_error: "Пакет робіт не може бути збережений через наступні помилки:" + label_version_plural: "Версії" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Показати вміст атрибута тексту довідки' @@ -436,10 +458,16 @@ uk: includes: "у тому числі" requires: "вимагає" required: "обов’язково" + edit: + form_configuration: "Form Configuration" + projects: "Проекти" + settings: "Налаштування" time_entry: activity: 'Активність' comment: 'Коментар' hours: 'Години' + two_factor_authentication: + label_two_factor_authentication: 'Двофакторна аутентифікація' watchers: label_loading: завантаження спостерігачів... label_error_loading: Під час завантаження спостерігачів сталася помилка diff --git a/config/locales/crowdin/js-vi.yml b/config/locales/crowdin/js-vi.yml index 2dc33201cb..89a903e73c 100644 --- a/config/locales/crowdin/js-vi.yml +++ b/config/locales/crowdin/js-vi.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ vi: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Rate history" clipboard: browser_error: "Trình duyệt không hỗ trợ copy vào clipboard. Vui lòng copy văn bản đã chọn theo cách thủ công." copied_successful: "Sao chép thành công vào clipboard!" @@ -170,6 +171,9 @@ vi: cannot_save_changes_with_message: "Không thể lưu thay đổi của bạn do lỗi sau: %{error}" query_saving: "Các tiêu chí không thể được lưu." embedded_table_loading: "Không thể nạp được vùng nhìn nhúng: %{message}" + enumeration_activities: "Hoạt động (theo dõi thời gian)" + enumeration_doc_categories: "Document categories" + enumeration_work_package_priorities: "Độ ưu tiên của work package" filter: description: text_open_filter: "Mở bộ lọc này với 'ALT' và phím mũi tên." @@ -191,6 +195,7 @@ vi: general_text_yes: "có" general_text_No: "Không" general_text_Yes: "Có" + global_roles: Global Roles hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -221,6 +226,7 @@ vi: label_and: "and" label_ascending: "Tăng dần" label_author: "Tác giả: %{user}" + label_avatar: "Avatar" label_between: "between" label_board: "Board" label_board_locked: "Đã khóa" @@ -234,6 +240,8 @@ vi: label_deactivate: "Tắt" label_descending: "Giảm dần" label_description: "Mô tả" + label_details: "Chi tiết" + label_display: "Hiển thị" label_cancel_comment: "Hủy bình luận" label_closed_work_packages: "đã đóng" label_collapse: "Thu gọn" @@ -254,22 +262,29 @@ vi: label_export: "Xuất" label_filename: "Tệp" label_filesize: "Kích cỡ" + label_general: "Tổng quan" label_greater_or_equal: ">=" label_group: 'Nhóm' label_group_by: "Nhóm theo" + label_group_plural: "Các Nhóm" label_hide_attributes: "Hiện ít hơn" label_hide_column: "Ẩn cột" label_hide_project_menu: "Thu gọn menu dự án" label_in: "trong" label_in_less_than: "ít hơn" label_in_more_than: "nhiều hơn" + label_incoming_emails: "Các thư đến" + label_information_plural: "Thông tin" label_import: "Import" label_latest_activity: "Hoạt động mới nhất" label_last_updated_on: "Cập nhật lần cuối lúc" label_less_or_equal: "<=" label_less_than_ago: "less than days ago" label_loading: "Loading..." + label_mail_notification: "Thông báo qua email" label_me: "me" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Minutes" label_menu_collapse: "thu lại" label_menu_expand: "mở rộng" label_more_than_ago: "nhiều hơn mấy ngày trước" @@ -290,12 +305,15 @@ vi: label_previous: "Trước đó" label_per_page: "Mỗi trang:" label_please_wait: "Vui lòng chờ" + label_project_plural: "Các dự án" label_visibility_settings: "Cài đặt hiển thị" label_quote_comment: "Trích bình luận này" label_reset: "Reset" label_remove_column: "Xóa cột" label_remove_columns: "Loại bỏ cột được chọn" label_remove_row: "Xóa hàng" + label_report: "Báo cáo" + label_repository_plural: "Repositories" label_save_as: "Lưu thành" label_select_watcher: "Chọn một người theo dõi..." label_selected_filter_list: "Các bộ lọc đã chọn: %s" @@ -306,6 +324,7 @@ vi: label_sort_higher: "Move up" label_sort_lower: "Dịch xuống" label_sorting: "Sắp xếp" + label_spent_time: "Thời gian" label_star_query: "Ưa thích" label_press_enter_to_save: "Nhấn enter để lưu." label_public_query: "Công cộng" @@ -314,7 +333,9 @@ vi: label_subject: "Chủ đề" label_this_week: "tuần này" label_today: "hôm nay" + label_time_entry_plural: "Thời gian" label_up: "Lên" + label_user_plural: "Người dùng" label_activity_show_only_comments: "Hiển thị các hoạt động với các bình luận" label_activity_show_all: "Hiển thị các hoạt động" label_total_progress: "%{percent}% Tổng tiến độ" @@ -356,6 +377,7 @@ vi: label_wait: "Xin vui lòng chờ cho cấu hình..." label_upload_counter: "%{done} %{count} tập tin hoàn thành" label_validation_error: "Không thể lưu các công việc do các lỗi sau đây:" + label_version_plural: "Các phiên bản" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: 'Hiển thị văn bản trợ giúp' @@ -435,10 +457,16 @@ vi: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Các dự án" + settings: "Settings" time_entry: activity: 'Hoạt động' comment: 'Nhận xét' hours: 'Giờ' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' watchers: label_loading: lấy danh sách người theo dõi... label_error_loading: Lỗi khi tải về danh sách người theo dõi diff --git a/config/locales/crowdin/js-zh-CN.yml b/config/locales/crowdin/js-zh-CN.yml index 6adef57e50..5370082af6 100644 --- a/config/locales/crowdin/js-zh-CN.yml +++ b/config/locales/crowdin/js-zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ zh-CN: inline: '突出显示内联:' entire_card_by: '整个卡' remove_from_list: '从列表中移除卡' + caption_rate_history: "费率历史记录" clipboard: browser_error: "您的浏览器不支持复制到剪贴板,请手动复制选定的文本。" copied_successful: "成功复制到剪贴板!" @@ -171,6 +172,9 @@ zh-CN: cannot_save_changes_with_message: "由于%{error} 原因,无法保存您的更改。" query_saving: "无法保存此视图。" embedded_table_loading: "无法加载嵌入式视图:%{message}" + enumeration_activities: "活动 (时间跟踪)" + enumeration_doc_categories: "文档类别" + enumeration_work_package_priorities: "工作包优先级" filter: description: text_open_filter: "使用 ALT 和方向键打开筛选器。" @@ -192,6 +196,7 @@ zh-CN: general_text_yes: "是" general_text_No: "否" general_text_Yes: "是" + global_roles: 全局角色 hal: error: update_conflict_refresh: "点击此处刷新资源并更新到最新版本。" @@ -222,6 +227,7 @@ zh-CN: label_and: "和" label_ascending: "升序" label_author: "作者: %{user}" + label_avatar: "头像" label_between: "介于" label_board: "面板" label_board_locked: "锁定" @@ -235,6 +241,8 @@ zh-CN: label_deactivate: "停用" label_descending: "降序" label_description: "描述" + label_details: "详细信息" + label_display: "显示" label_cancel_comment: "取消注释" label_closed_work_packages: "关闭" label_collapse: "折叠" @@ -255,22 +263,29 @@ zh-CN: label_export: "导出" label_filename: "文件" label_filesize: "大小" + label_general: "通用" label_greater_or_equal: ">=" label_group: '组' label_group_by: "分组依据" + label_group_plural: "组" label_hide_attributes: "隐藏显示" label_hide_column: "隐藏列" label_hide_project_menu: "折叠项目菜单" label_in: "在" label_in_less_than: "在小于" label_in_more_than: "在多于" + label_incoming_emails: "传入电子邮件" + label_information_plural: "信息" label_import: "导入" label_latest_activity: "最新活动" label_last_updated_on: "最后更新日期" label_less_or_equal: "<=" label_less_than_ago: "小于数日前" label_loading: "正在加载..." + label_mail_notification: "电子邮件通知" label_me: "我" + label_meeting_agenda: "议程" + label_meeting_minutes: "会议记录" label_menu_collapse: "折叠" label_menu_expand: "展开" label_more_than_ago: "更多天前" @@ -291,12 +306,15 @@ zh-CN: label_previous: "上一个" label_per_page: "每页:" label_please_wait: "请稍等" + label_project_plural: "项目" label_visibility_settings: "可见性设置" label_quote_comment: "引用这个评论" label_reset: "重置" label_remove_column: "删除列" label_remove_columns: "删除选定的列" label_remove_row: "删除行" + label_report: "报告" + label_repository_plural: "代码库" label_save_as: "另存为" label_select_watcher: "选择一位关注者..." label_selected_filter_list: "所选的筛选器" @@ -307,6 +325,7 @@ zh-CN: label_sort_higher: "向上移动" label_sort_lower: "向下移动" label_sorting: "排序" + label_spent_time: "已耗时间" label_star_query: "最爱" label_press_enter_to_save: "按回车键可以保存。" label_public_query: "公开" @@ -315,7 +334,9 @@ zh-CN: label_subject: "主题" label_this_week: "这一周" label_today: "今天" + label_time_entry_plural: "已耗时间" label_up: "向上" + label_user_plural: "用户" label_activity_show_only_comments: "仅显示批注的活动" label_activity_show_all: "显示所有项目" label_total_progress: "%{percent} %总进度" @@ -357,6 +378,7 @@ zh-CN: label_wait: "请等待配置..." label_upload_counter: "%{count} 个中的 %{done} 个文件已完成" label_validation_error: "由于下列错误,无法保存工作包:" + label_version_plural: "版本" label_view_has_changed: "此视图有未保存的变更。单击以保存。" help_texts: show_modal: '显示属性帮助文本项' @@ -436,10 +458,16 @@ zh-CN: includes: "包括" requires: "要求" required: "要求于" + edit: + form_configuration: "Form Configuration" + projects: "项目" + settings: "设置" time_entry: activity: '活动' comment: '评论' hours: '小时' + two_factor_authentication: + label_two_factor_authentication: '双重身份验证' watchers: label_loading: 正在加载关注者... label_error_loading: 加载关注者时出错 diff --git a/config/locales/crowdin/js-zh-TW.yml b/config/locales/crowdin/js-zh-TW.yml index 8d7bad6169..c0ba0fb04a 100644 --- a/config/locales/crowdin/js-zh-TW.yml +++ b/config/locales/crowdin/js-zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: @@ -80,6 +80,7 @@ zh-TW: inline: 'Highlight inline:' entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Rate history" clipboard: browser_error: "您的瀏覽器不支援複製到剪貼簿。請手動複製選取的文字。" copied_successful: "成功複製到剪貼簿上!" @@ -170,6 +171,9 @@ zh-TW: cannot_save_changes_with_message: "由於以下錯誤, 無法保存所做的更改: %{error}" query_saving: "無法保存視圖。" embedded_table_loading: "無法載入嵌入視圖: %{message}" + enumeration_activities: "活動 (時間追蹤)" + enumeration_doc_categories: "文件類別" + enumeration_work_package_priorities: "工作項目優先等級" filter: description: text_open_filter: "使用 ALT 和方向鍵打開此篩選器。" @@ -191,6 +195,7 @@ zh-TW: general_text_yes: "是" general_text_No: "否" general_text_Yes: "是" + global_roles: 全域角色 hal: error: update_conflict_refresh: "Click here to refresh the resource and update to the newest version." @@ -221,6 +226,7 @@ zh-TW: label_and: "和" label_ascending: "昇冪" label_author: "作者: %{user}" + label_avatar: "Avatar" label_between: "介於" label_board: "Board" label_board_locked: "鎖定" @@ -234,6 +240,8 @@ zh-TW: label_deactivate: "停用" label_descending: "降冪" label_description: "說明" + label_details: "詳細資料" + label_display: "顯示" label_cancel_comment: "取消注釋" label_closed_work_packages: "已關閉" label_collapse: "折疊" @@ -254,22 +262,29 @@ zh-TW: label_export: "匯出" label_filename: "檔案" label_filesize: "檔案大小" + label_general: "一般" label_greater_or_equal: ">=" label_group: '群組' label_group_by: "分組依據" + label_group_plural: "群組" label_hide_attributes: "簡略" label_hide_column: "隱藏欄" label_hide_project_menu: "折疊專案選單" label_in: "在" label_in_less_than: "少於" label_in_more_than: "多於" + label_incoming_emails: "接收到的電子郵件" + label_information_plural: "資訊" label_import: "Import" label_latest_activity: "最新活動" label_last_updated_on: "最後更新於" label_less_or_equal: "<=" label_less_than_ago: "少於幾天前" label_loading: "讀取中..." + label_mail_notification: "電子郵件通知" label_me: "我" + label_meeting_agenda: "會議大綱" + label_meeting_minutes: "會議記錄" label_menu_collapse: "收合" label_menu_expand: "展開" label_more_than_ago: "很多天之前" @@ -290,12 +305,15 @@ zh-TW: label_previous: "上一個" label_per_page: "每頁:" label_please_wait: "請稍候" + label_project_plural: "專案" label_visibility_settings: "可見度設定" label_quote_comment: "引述這個評論" label_reset: "重置" label_remove_column: "移除欄" label_remove_columns: "移除所選欄" label_remove_row: "移除列" + label_report: "報表" + label_repository_plural: "Repositories" label_save_as: "保存為" label_select_watcher: "選擇一位關注者" label_selected_filter_list: "所選的篩選器" @@ -306,6 +324,7 @@ zh-TW: label_sort_higher: "往上移動" label_sort_lower: "往下移動" label_sorting: "排序" + label_spent_time: "耗時" label_star_query: "喜好" label_press_enter_to_save: "按 Enter 即可儲存。" label_public_query: "公開" @@ -314,7 +333,9 @@ zh-TW: label_subject: "主題" label_this_week: "本週" label_today: "今天" + label_time_entry_plural: "耗時" label_up: "向上" + label_user_plural: "使用者" label_activity_show_only_comments: "只顯示活動和其評論" label_activity_show_all: "顯示所有的活動" label_total_progress: "%{percent}%總進度" @@ -356,6 +377,7 @@ zh-TW: label_wait: "請等待配置..." label_upload_counter: "%{count} 個中的 %{done} 個文件已完成" label_validation_error: "由於下列錯誤,無法儲存工作包:" + label_version_plural: "版本" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: show_modal: '顯示屬性說明文字項目' @@ -435,10 +457,16 @@ zh-TW: includes: "包括" requires: "需要" required: "被以下需要" + edit: + form_configuration: "Form Configuration" + projects: "專案" + settings: "設定" time_entry: activity: '活動' comment: '評論' hours: '小時' + two_factor_authentication: + label_two_factor_authentication: '雙重身分驗證' watchers: label_loading: 正在載入關注者... label_error_loading: 而發生錯誤裝載的觀察家 diff --git a/config/locales/crowdin/ko.yml b/config/locales/crowdin/ko.yml index 52cacf55b2..a85dab8802 100644 --- a/config/locales/crowdin/ko.yml +++ b/config/locales/crowdin/ko.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/lt.yml b/config/locales/crowdin/lt.yml index 214b3f5db9..5116d87a3a 100644 --- a/config/locales/crowdin/lt.yml +++ b/config/locales/crowdin/lt.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/nl.yml b/config/locales/crowdin/nl.yml index 7e10bce7a2..9768957867 100644 --- a/config/locales/crowdin/nl.yml +++ b/config/locales/crowdin/nl.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/no.yml b/config/locales/crowdin/no.yml index c1fc4aa0af..12b2778912 100644 --- a/config/locales/crowdin/no.yml +++ b/config/locales/crowdin/no.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/pl.yml b/config/locales/crowdin/pl.yml index 68113e69dc..b8b48a182e 100644 --- a/config/locales/crowdin/pl.yml +++ b/config/locales/crowdin/pl.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/pt-BR.yml b/config/locales/crowdin/pt-BR.yml index f096f5ea4f..c168137f6d 100644 --- a/config/locales/crowdin/pt-BR.yml +++ b/config/locales/crowdin/pt-BR.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/pt.yml b/config/locales/crowdin/pt.yml index 12dee614d2..0b3cbdf07b 100644 --- a/config/locales/crowdin/pt.yml +++ b/config/locales/crowdin/pt.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ro.yml b/config/locales/crowdin/ro.yml index 5ee8359411..f5b3b046da 100644 --- a/config/locales/crowdin/ro.yml +++ b/config/locales/crowdin/ro.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/ru.yml b/config/locales/crowdin/ru.yml index b341f380b5..2e19d2c2ca 100644 --- a/config/locales/crowdin/ru.yml +++ b/config/locales/crowdin/ru.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/sk.yml b/config/locales/crowdin/sk.yml index 8b7f29ef79..9252be3464 100644 --- a/config/locales/crowdin/sk.yml +++ b/config/locales/crowdin/sk.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/sv.yml b/config/locales/crowdin/sv.yml index 3c8dc8a482..f17f93ba45 100644 --- a/config/locales/crowdin/sv.yml +++ b/config/locales/crowdin/sv.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/tr.yml b/config/locales/crowdin/tr.yml index f1af28a90b..0b827e6135 100644 --- a/config/locales/crowdin/tr.yml +++ b/config/locales/crowdin/tr.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/uk.yml b/config/locales/crowdin/uk.yml index 87695144d7..5a22a4f003 100644 --- a/config/locales/crowdin/uk.yml +++ b/config/locales/crowdin/uk.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/vi.yml b/config/locales/crowdin/vi.yml index 4380894471..7821787c5e 100644 --- a/config/locales/crowdin/vi.yml +++ b/config/locales/crowdin/vi.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/zh-CN.yml b/config/locales/crowdin/zh-CN.yml index ae80a8c23c..8f23e0202f 100644 --- a/config/locales/crowdin/zh-CN.yml +++ b/config/locales/crowdin/zh-CN.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/crowdin/zh-TW.yml b/config/locales/crowdin/zh-TW.yml index 89576c1faa..bf57c95698 100644 --- a/config/locales/crowdin/zh-TW.yml +++ b/config/locales/crowdin/zh-TW.yml @@ -1,6 +1,6 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2012-2018 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: diff --git a/config/locales/js-en.yml b/config/locales/js-en.yml index 89ef516bfb..4c1255360c 100644 --- a/config/locales/js-en.yml +++ b/config/locales/js-en.yml @@ -94,6 +94,8 @@ en: entire_card_by: 'Entire card by' remove_from_list: 'Remove card from list' + caption_rate_history: "Rate history" + clipboard: browser_error: "Your browser doesn't support copying to clipboard. Please copy the selected text manually." copied_successful: "Sucessfully copied to clipboard!" @@ -190,6 +192,9 @@ en: cannot_save_changes_with_message: "Cannot save your changes due to the following error: %{error}" query_saving: "The view could not be saved." embedded_table_loading: "The embedded view could not be loaded: %{message}" + enumeration_activities: "Activities (time tracking)" + enumeration_doc_categories: "Document categories" + enumeration_work_package_priorities: "Work package priorities" filter: description: text_open_filter: "Open this filter with 'ALT' and arrow keys." @@ -211,6 +216,7 @@ en: general_text_yes: "yes" general_text_No: "No" general_text_Yes: "Yes" + global_roles: Global Roles hal: error: @@ -248,6 +254,7 @@ en: label_and: "and" label_ascending: "Ascending" label_author: "Author: %{user}" + label_avatar: "Avatar" label_between: "between" label_board: "Board" label_board_locked: "Locked" @@ -261,6 +268,8 @@ en: label_deactivate: "Deactivate" label_descending: "Descending" label_description: "Description" + label_details: "Details" + label_display: "Display" label_cancel_comment: "Cancel comment" label_closed_work_packages: "closed" label_collapse: "Collapse" @@ -281,22 +290,29 @@ en: label_export: "Export" label_filename: "File" label_filesize: "Size" + label_general: "General" label_greater_or_equal: ">=" label_group: 'Group' label_group_by: "Group by" + label_group_plural: "Groups" label_hide_attributes: "Show less" label_hide_column: "Hide column" label_hide_project_menu: "Collapse project menu" label_in: "in" label_in_less_than: "in less than" label_in_more_than: "in more than" + label_incoming_emails: "Incoming emails" + label_information_plural: "Information" label_import: "Import" label_latest_activity: "Latest activity" label_last_updated_on: "Last updated on" label_less_or_equal: "<=" label_less_than_ago: "less than days ago" label_loading: "Loading..." + label_mail_notification: "Email notifications" label_me: "me" + label_meeting_agenda: "Agenda" + label_meeting_minutes: "Minutes" label_menu_collapse: "collapse" label_menu_expand: "expand" label_more_than_ago: "more than days ago" @@ -317,12 +333,15 @@ en: label_previous: "Previous" label_per_page: "Per page:" label_please_wait: "Please wait" + label_project_plural: "Projects" label_visibility_settings: "Visibility settings" label_quote_comment: "Quote this comment" label_reset: "Reset" label_remove_column: "Remove column" label_remove_columns: "Remove selected columns" label_remove_row: "Remove row" + label_report: "Report" + label_repository_plural: "Repositories" label_save_as: "Save as" label_select_watcher: "Select a watcher..." label_selected_filter_list: "Selected filters" @@ -333,6 +352,7 @@ en: label_sort_higher: "Move up" label_sort_lower: "Move down" label_sorting: "Sorting" + label_spent_time: "Spent time" label_star_query: "Favored" label_press_enter_to_save: "Press enter to save." label_public_query: "Public" @@ -341,7 +361,9 @@ en: label_subject: "Subject" label_this_week: "this week" label_today: "today" + label_time_entry_plural: "Spent time" label_up: "Up" + label_user_plural: "Users" label_activity_show_only_comments: "Show activities with comments only" label_activity_show_all: "Show all activities" label_total_progress: "%{percent}% Total progress" @@ -383,6 +405,7 @@ en: label_wait: "Please wait for configuration..." label_upload_counter: "%{done} of %{count} files finished" label_validation_error: "The work package could not be saved due to the following errors:" + label_version_plural: "Versions" label_view_has_changed: "This view has unsaved changes. Click to save them." help_texts: @@ -474,12 +497,19 @@ en: includes: "including" requires: "requiring" required: "required by" + edit: + form_configuration: "Form Configuration" + projects: "Projects" + settings: "Settings" time_entry: activity: 'Activity' comment: 'Comment' hours: 'Hours' + two_factor_authentication: + label_two_factor_authentication: 'Two-factor authentication' + watchers: label_loading: loading watchers... label_error_loading: An error occurred while loading the watchers diff --git a/frontend/npm-shrinkwrap.json b/frontend/npm-shrinkwrap.json index efe154ad3a..1e63ded612 100644 --- a/frontend/npm-shrinkwrap.json +++ b/frontend/npm-shrinkwrap.json @@ -24,30 +24,30 @@ } }, "@angular-devkit/build-angular": { - "version": "0.803.21", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-0.803.21.tgz", - "integrity": "sha512-flfgflvfpwdsm3x/U7QnfbtyZPEbsVipzQAoao1Zo58Beq1a+NsKsWbjrF/x4TSoI2czt0OVWXNytlfXM7LMhg==", - "requires": { - "@angular-devkit/architect": "0.803.21", - "@angular-devkit/build-optimizer": "0.803.21", - "@angular-devkit/build-webpack": "0.803.21", - "@angular-devkit/core": "8.3.21", + "version": "0.803.23", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-angular/-/build-angular-0.803.23.tgz", + "integrity": "sha512-hlaDMuScRbgdsH3Toyze5G5NhmJypWIPGcIt4CAcXAnVdSltrBPKzu5Psr+ACcDLH3TYtlMKBrkAG9xXS3it1g==", + "requires": { + "@angular-devkit/architect": "0.803.23", + "@angular-devkit/build-optimizer": "0.803.23", + "@angular-devkit/build-webpack": "0.803.23", + "@angular-devkit/core": "8.3.23", "@babel/core": "7.7.5", "@babel/preset-env": "7.7.6", - "@ngtools/webpack": "8.3.21", + "@ngtools/webpack": "8.3.23", "ajv": "6.10.2", "autoprefixer": "9.6.1", - "browserslist": "4.6.6", + "browserslist": "4.8.3", "cacache": "12.0.2", - "caniuse-lite": "1.0.30000989", + "caniuse-lite": "1.0.30001019", "circular-dependency-plugin": "5.2.0", "clean-css": "4.2.1", "copy-webpack-plugin": "5.1.1", "core-js": "3.2.1", + "coverage-istanbul-loader": "2.0.3", "file-loader": "4.2.0", "find-cache-dir": "3.0.0", "glob": "7.1.4", - "istanbul-instrumenter-loader": "3.0.1", "jest-worker": "24.9.0", "karma-source-map-support": "1.4.0", "less": "3.9.0", @@ -76,7 +76,7 @@ "stylus-loader": "3.0.2", "terser": "4.3.9", "terser-webpack-plugin": "1.4.3", - "tree-kill": "1.2.1", + "tree-kill": "1.2.2", "webpack": "4.39.2", "webpack-dev-middleware": "3.7.2", "webpack-dev-server": "3.9.0", @@ -87,18 +87,18 @@ }, "dependencies": { "@angular-devkit/architect": { - "version": "0.803.21", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.803.21.tgz", - "integrity": "sha512-E2K/YexIWVyKM/xmyxvDjkJf+wX9u4c8YYpNaK4htsRzA06juc7N1MhlL/jURZiRl5b/K9sapYeq3tMX76saxA==", + "version": "0.803.23", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.803.23.tgz", + "integrity": "sha512-BRDbnmdULrle2l7WFZHEW/OAwS8RRg08+jiNG3gEP0BxDN6QMNMKmWhxmX67pgq3e/xMvu2DH0z71mAPNtJDAw==", "requires": { - "@angular-devkit/core": "8.3.21", + "@angular-devkit/core": "8.3.23", "rxjs": "6.4.0" } }, "@angular-devkit/core": { - "version": "8.3.21", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-8.3.21.tgz", - "integrity": "sha512-BYyVbrbys535FplX0+GVOlYBg/cyk1U5SRhSxRRFZYi9epVlEBBPk8/6wV4cQPGb6EwXkVj7YtPWXjXcGfzWmA==", + "version": "8.3.23", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-8.3.23.tgz", + "integrity": "sha512-y++LN6R/fu+obPUKEMDSKZ5FzeWN5rV0Z8vrdC+uF02VJLv/5QI/dUx3ROKFzJO3m2LU6EAuo5b/TLAPq4ving==", "requires": { "ajv": "6.10.2", "fast-json-stable-stringify": "2.0.0", @@ -123,10 +123,15 @@ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" }, - "caniuse-lite": { - "version": "1.0.30000989", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000989.tgz", - "integrity": "sha512-vrMcvSuMz16YY6GSVZ0dWDTJP8jqk3iFQ/Aq5iqblPwxSVVZI+zxDyTX0VPqtQsDnfdrBDcsmhgTEOh5R8Lbpw==" + "browserslist": { + "version": "4.8.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.8.3.tgz", + "integrity": "sha512-iU43cMMknxG1ClEZ2MDKeonKE1CCrFVkQK2AqO2YWFmvIrx4JWrvQ4w4hQez6EpVI8rHTtqh/ruHHDHSOKxvUg==", + "requires": { + "caniuse-lite": "^1.0.30001017", + "electron-to-chromium": "^1.3.322", + "node-releases": "^1.1.44" + } }, "chalk": { "version": "2.4.2", @@ -148,6 +153,11 @@ } } }, + "electron-to-chromium": { + "version": "1.3.338", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.338.tgz", + "integrity": "sha512-wlmfixuHEc9CkfOKgcqdtzBmRW4NStM9ptl5oPILY2UDyHuSXb3Yit+yLVyLObTgGuMMU36hhnfs2GDJId7ctA==" + }, "find-cache-dir": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.0.0.tgz", @@ -206,6 +216,14 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" }, + "node-releases": { + "version": "1.1.46", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.46.tgz", + "integrity": "sha512-YOjdx+Uoh9FbRO7yVYbnbt1puRWPQMemR3SutLeyv2XfxKs1ihpe0OLAUwBPEP2ImNH/PZC7SEiC6j32dwRZ7g==", + "requires": { + "semver": "^6.3.0" + } + }, "p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", @@ -284,9 +302,9 @@ } }, "@angular-devkit/build-optimizer": { - "version": "0.803.21", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.803.21.tgz", - "integrity": "sha512-gNN6kPaF4phZco3TmsrNr9tIEKXYsoSeoaUiDUfgmCYwa7fAqM8Ojh7HX6IQuB2PpVmEwKGlCcSh6xDtB33NjA==", + "version": "0.803.23", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-optimizer/-/build-optimizer-0.803.23.tgz", + "integrity": "sha512-0MJAnGjpmE1hNrwDBi/7b9G1qyt2qN/wcZOj6QseZeWuoxIVXIWgdM6gBpJdgB7HI7vv4l4LpyFX9Doq+2r7Xg==", "requires": { "loader-utils": "1.2.3", "source-map": "0.7.3", @@ -326,28 +344,28 @@ } }, "@angular-devkit/build-webpack": { - "version": "0.803.21", - "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.803.21.tgz", - "integrity": "sha512-zCFVla/Xdk8qGVybvnHtoKml2h0/ShasSjT55VNZO1XaTCMqYkQEwwqSGEiVajpauafWjKrKxxBhsmWoI4efAA==", + "version": "0.803.23", + "resolved": "https://registry.npmjs.org/@angular-devkit/build-webpack/-/build-webpack-0.803.23.tgz", + "integrity": "sha512-ttsvUpoMHAr84I3YQmr2Yyu1qPIjw3m+aYgeEh1cAN+Ck8/F/q+Z+nWsmcgIXEC2f8xN7uZWy4PIkCZR8YETOg==", "requires": { - "@angular-devkit/architect": "0.803.21", - "@angular-devkit/core": "8.3.21", + "@angular-devkit/architect": "0.803.23", + "@angular-devkit/core": "8.3.23", "rxjs": "6.4.0" }, "dependencies": { "@angular-devkit/architect": { - "version": "0.803.21", - "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.803.21.tgz", - "integrity": "sha512-E2K/YexIWVyKM/xmyxvDjkJf+wX9u4c8YYpNaK4htsRzA06juc7N1MhlL/jURZiRl5b/K9sapYeq3tMX76saxA==", + "version": "0.803.23", + "resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.803.23.tgz", + "integrity": "sha512-BRDbnmdULrle2l7WFZHEW/OAwS8RRg08+jiNG3gEP0BxDN6QMNMKmWhxmX67pgq3e/xMvu2DH0z71mAPNtJDAw==", "requires": { - "@angular-devkit/core": "8.3.21", + "@angular-devkit/core": "8.3.23", "rxjs": "6.4.0" } }, "@angular-devkit/core": { - "version": "8.3.21", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-8.3.21.tgz", - "integrity": "sha512-BYyVbrbys535FplX0+GVOlYBg/cyk1U5SRhSxRRFZYi9epVlEBBPk8/6wV4cQPGb6EwXkVj7YtPWXjXcGfzWmA==", + "version": "8.3.23", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-8.3.23.tgz", + "integrity": "sha512-y++LN6R/fu+obPUKEMDSKZ5FzeWN5rV0Z8vrdC+uF02VJLv/5QI/dUx3ROKFzJO3m2LU6EAuo5b/TLAPq4ving==", "requires": { "ajv": "6.10.2", "fast-json-stable-stringify": "2.0.0", @@ -1294,77 +1312,107 @@ }, "dependencies": { "@babel/generator": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.7.7.tgz", - "integrity": "sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.3.tgz", + "integrity": "sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==", "requires": { - "@babel/types": "^7.7.4", + "@babel/types": "^7.8.3", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" } }, "@babel/helper-split-export-declaration": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz", - "integrity": "sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + } } }, "@babel/traverse": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.7.4.tgz", - "integrity": "sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==", - "requires": { - "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.7.4", - "@babel/helper-function-name": "^7.7.4", - "@babel/helper-split-export-declaration": "^7.7.4", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.3.tgz", + "integrity": "sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + } } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1435,17 +1483,17 @@ } }, "@babel/helper-annotate-as-pure": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.7.4.tgz", - "integrity": "sha512-2BQmQgECKzYKFPpiycoF9tlb5HA4lrVyAmLLVK177EcQAqjVLciUb2/R+n1boQ9y5ENV3uz2ZqiNw7QMBBw1Og==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz", + "integrity": "sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" }, "dependencies": { "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1455,18 +1503,18 @@ } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.7.4.tgz", - "integrity": "sha512-Biq/d/WtvfftWZ9Uf39hbPBYDUo986m5Bb4zhkeYDGUllF43D+nUe5M6Vuo6/8JDK/0YX/uBdeoQpyaNhNugZQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz", + "integrity": "sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw==", "requires": { - "@babel/helper-explode-assignable-expression": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-explode-assignable-expression": "^7.8.3", + "@babel/types": "^7.8.3" }, "dependencies": { "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1476,87 +1524,105 @@ } }, "@babel/helper-call-delegate": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.7.4.tgz", - "integrity": "sha512-8JH9/B7J7tCYJ2PpWVpw9JhPuEVHztagNVuQAFBVFYluRMlpG7F1CgKEgGeL6KFqcsIa92ZYVj6DSc0XwmN1ZA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.8.3.tgz", + "integrity": "sha512-6Q05px0Eb+N4/GTyKPPvnkig7Lylw+QzihMpws9iiZQv7ZImf84ZsZpQH7QoWN4n4tm81SnSzPgHw2qtO0Zf3A==", "requires": { - "@babel/helper-hoist-variables": "^7.7.4", - "@babel/traverse": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-hoist-variables": "^7.8.3", + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.3" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/generator": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.7.7.tgz", - "integrity": "sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.3.tgz", + "integrity": "sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==", "requires": { - "@babel/types": "^7.7.4", + "@babel/types": "^7.8.3", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" } }, "@babel/helper-split-export-declaration": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz", - "integrity": "sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", + "requires": { + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", "requires": { - "@babel/types": "^7.7.4" + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/traverse": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.7.4.tgz", - "integrity": "sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==", - "requires": { - "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.7.4", - "@babel/helper-function-name": "^7.7.4", - "@babel/helper-split-export-declaration": "^7.7.4", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.3.tgz", + "integrity": "sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1584,11 +1650,11 @@ } }, "@babel/helper-create-regexp-features-plugin": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.7.4.tgz", - "integrity": "sha512-Mt+jBKaxL0zfOIWrfQpnfYCN7/rS6GKx6CCCfuoqVVd+17R8zNDlzVYmIi9qyb2wOk002NsmSTDymkIygDUH7A==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.3.tgz", + "integrity": "sha512-Gcsm1OHCUr9o9TcJln57xhWHtdXbA2pgQ58S0Lxlks0WMGNXuki4+GLfX0p+L2ZkINUGZvfkz8rzoqJQSthI+Q==", "requires": { - "@babel/helper-regex": "^7.4.4", + "@babel/helper-regex": "^7.8.3", "regexpu-core": "^4.6.0" }, "dependencies": { @@ -1626,52 +1692,70 @@ } }, "@babel/helper-define-map": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.7.4.tgz", - "integrity": "sha512-v5LorqOa0nVQUvAUTUF3KPastvUt/HzByXNamKQ6RdJRTV7j8rLL+WB5C/MzzWAwOomxDhYFb1wLLxHqox86lg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz", + "integrity": "sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g==", "requires": { - "@babel/helper-function-name": "^7.7.4", - "@babel/types": "^7.7.4", + "@babel/helper-function-name": "^7.8.3", + "@babel/types": "^7.8.3", "lodash": "^4.17.13" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1681,86 +1765,104 @@ } }, "@babel/helper-explode-assignable-expression": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.7.4.tgz", - "integrity": "sha512-2/SicuFrNSXsZNBxe5UGdLr+HZg+raWBLE9vC98bdYOKX/U6PY0mdGlYUJdtTDPSU0Lw0PNbKKDpwYHJLn2jLg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz", + "integrity": "sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw==", "requires": { - "@babel/traverse": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.3" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/generator": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.7.7.tgz", - "integrity": "sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.3.tgz", + "integrity": "sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==", "requires": { - "@babel/types": "^7.7.4", + "@babel/types": "^7.8.3", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" } }, "@babel/helper-split-export-declaration": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz", - "integrity": "sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/traverse": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.7.4.tgz", - "integrity": "sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==", - "requires": { - "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.7.4", - "@babel/helper-function-name": "^7.7.4", - "@babel/helper-split-export-declaration": "^7.7.4", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.3.tgz", + "integrity": "sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1808,17 +1910,17 @@ } }, "@babel/helper-hoist-variables": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.7.4.tgz", - "integrity": "sha512-wQC4xyvc1Jo/FnLirL6CEgPgPCa8M74tOdjWpRhQYapz5JC7u3NYU1zCVoVAGCE3EaIP9T1A3iW0WLJ+reZlpQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz", + "integrity": "sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" }, "dependencies": { "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1828,17 +1930,17 @@ } }, "@babel/helper-member-expression-to-functions": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.7.4.tgz", - "integrity": "sha512-9KcA1X2E3OjXl/ykfMMInBK+uVdfIVakVe7W7Lg3wfXUNyS3Q1HWLFRwZIjhqiCGbslummPDnmb7vIekS0C1vw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz", + "integrity": "sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" }, "dependencies": { "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1848,17 +1950,17 @@ } }, "@babel/helper-module-imports": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.7.4.tgz", - "integrity": "sha512-dGcrX6K9l8258WFjyDLJwuVKxR4XZfU0/vTUgOQYWEnRD8mgr+p4d6fCUMq/ys0h4CCt/S5JhbvtyErjWouAUQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz", + "integrity": "sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" }, "dependencies": { "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1868,45 +1970,63 @@ } }, "@babel/helper-module-transforms": { - "version": "7.7.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.7.5.tgz", - "integrity": "sha512-A7pSxyJf1gN5qXVcidwLWydjftUN878VkalhXX5iQDuGyiGK3sOrrKKHF4/A4fwHtnsotv/NipwAeLzY4KQPvw==", - "requires": { - "@babel/helper-module-imports": "^7.7.4", - "@babel/helper-simple-access": "^7.7.4", - "@babel/helper-split-export-declaration": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.8.3.tgz", + "integrity": "sha512-C7NG6B7vfBa/pwCOshpMbOYUmrYQDfCpVL/JCRu0ek8B5p8kue1+BCXpg2vOYs7w5ACB9GTOBYQ5U6NwrMg+3Q==", + "requires": { + "@babel/helper-module-imports": "^7.8.3", + "@babel/helper-simple-access": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3", "lodash": "^4.17.13" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/helper-split-export-declaration": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz", - "integrity": "sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", + "requires": { + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", "requires": { - "@babel/types": "^7.7.4" + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1916,17 +2036,17 @@ } }, "@babel/helper-optimise-call-expression": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.7.4.tgz", - "integrity": "sha512-VB7gWZ2fDkSuqW6b1AKXkJWO5NyNI3bFL/kK79/30moK57blr6NbH8xcl2XcKCwOmJosftWunZqfO84IGq3ZZg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz", + "integrity": "sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" }, "dependencies": { "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -1936,102 +2056,120 @@ } }, "@babel/helper-plugin-utils": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", - "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz", + "integrity": "sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ==" }, "@babel/helper-regex": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.5.5.tgz", - "integrity": "sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.8.3.tgz", + "integrity": "sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ==", "requires": { "lodash": "^4.17.13" } }, "@babel/helper-remap-async-to-generator": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.7.4.tgz", - "integrity": "sha512-Sk4xmtVdM9sA/jCI80f+KS+Md+ZHIpjuqmYPk1M7F/upHou5e4ReYmExAiu6PVe65BhJPZA2CY9x9k4BqE5klw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz", + "integrity": "sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA==", "requires": { - "@babel/helper-annotate-as-pure": "^7.7.4", - "@babel/helper-wrap-function": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/traverse": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-annotate-as-pure": "^7.8.3", + "@babel/helper-wrap-function": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.3" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/generator": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.7.7.tgz", - "integrity": "sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.3.tgz", + "integrity": "sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==", "requires": { - "@babel/types": "^7.7.4", + "@babel/types": "^7.8.3", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" } }, "@babel/helper-split-export-declaration": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz", - "integrity": "sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/traverse": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.7.4.tgz", - "integrity": "sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==", - "requires": { - "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.7.4", - "@babel/helper-function-name": "^7.7.4", - "@babel/helper-split-export-declaration": "^7.7.4", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.3.tgz", + "integrity": "sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -2059,88 +2197,106 @@ } }, "@babel/helper-replace-supers": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.7.4.tgz", - "integrity": "sha512-pP0tfgg9hsZWo5ZboYGuBn/bbYT/hdLPVSS4NMmiRJdwWhP0IznPwN9AE1JwyGsjSPLC364I0Qh5p+EPkGPNpg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.8.3.tgz", + "integrity": "sha512-xOUssL6ho41U81etpLoT2RTdvdus4VfHamCuAm4AHxGr+0it5fnwoVdwUJ7GFEqCsQYzJUhcbsN9wB9apcYKFA==", "requires": { - "@babel/helper-member-expression-to-functions": "^7.7.4", - "@babel/helper-optimise-call-expression": "^7.7.4", - "@babel/traverse": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-member-expression-to-functions": "^7.8.3", + "@babel/helper-optimise-call-expression": "^7.8.3", + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.3" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/generator": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.7.7.tgz", - "integrity": "sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.3.tgz", + "integrity": "sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==", "requires": { - "@babel/types": "^7.7.4", + "@babel/types": "^7.8.3", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" } }, "@babel/helper-split-export-declaration": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz", - "integrity": "sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", + "requires": { + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", "requires": { - "@babel/types": "^7.7.4" + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/traverse": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.7.4.tgz", - "integrity": "sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==", - "requires": { - "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.7.4", - "@babel/helper-function-name": "^7.7.4", - "@babel/helper-split-export-declaration": "^7.7.4", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.3.tgz", + "integrity": "sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -2168,33 +2324,51 @@ } }, "@babel/helper-simple-access": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.7.4.tgz", - "integrity": "sha512-zK7THeEXfan7UlWsG2A6CI/L9jVnI5+xxKZOdej39Y0YtDYKx9raHk5F2EtK9K8DHRTihYwg20ADt9S36GR78A==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz", + "integrity": "sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw==", "requires": { - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" + } + }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -2213,88 +2387,106 @@ } }, "@babel/helper-wrap-function": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.7.4.tgz", - "integrity": "sha512-VsfzZt6wmsocOaVU0OokwrIytHND55yvyT4BPB9AIIgwr8+x7617hetdJTsuGwygN5RC6mxA9EJztTjuwm2ofg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz", + "integrity": "sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ==", "requires": { - "@babel/helper-function-name": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/traverse": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-function-name": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.3" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/generator": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.7.7.tgz", - "integrity": "sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.3.tgz", + "integrity": "sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==", "requires": { - "@babel/types": "^7.7.4", + "@babel/types": "^7.8.3", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" } }, "@babel/helper-split-export-declaration": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz", - "integrity": "sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/traverse": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.7.4.tgz", - "integrity": "sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==", - "requires": { - "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.7.4", - "@babel/helper-function-name": "^7.7.4", - "@babel/helper-split-export-declaration": "^7.7.4", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.3.tgz", + "integrity": "sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -2322,87 +2514,105 @@ } }, "@babel/helpers": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.7.4.tgz", - "integrity": "sha512-ak5NGZGJ6LV85Q1Zc9gn2n+ayXOizryhjSUBTdu5ih1tlVCJeuQENzc4ItyCVhINVXvIT/ZQ4mheGIsfBkpskg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.8.3.tgz", + "integrity": "sha512-LmU3q9Pah/XyZU89QvBgGt+BCsTPoQa+73RxAQh8fb8qkDyIfeQnmgs+hvzhTCKTzqOyk7JTkS3MS1S8Mq5yrQ==", "requires": { - "@babel/template": "^7.7.4", - "@babel/traverse": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/template": "^7.8.3", + "@babel/traverse": "^7.8.3", + "@babel/types": "^7.8.3" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/generator": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.7.7.tgz", - "integrity": "sha512-/AOIBpHh/JU1l0ZFS4kiRCBnLi6OTHzh0RPk3h9isBxkkqELtQNFi1Vr/tiG9p1yfoUdKVwISuXWQR+hwwM4VQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.3.tgz", + "integrity": "sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==", "requires": { - "@babel/types": "^7.7.4", + "@babel/types": "^7.8.3", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" } }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" } }, "@babel/helper-split-export-declaration": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz", - "integrity": "sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/traverse": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.7.4.tgz", - "integrity": "sha512-P1L58hQyupn8+ezVA2z5KBm4/Zr4lCC8dwKCMYzsa5jFMDMQAzaBNy9W5VjB+KAmBjb40U7a/H6ao+Xo+9saIw==", - "requires": { - "@babel/code-frame": "^7.5.5", - "@babel/generator": "^7.7.4", - "@babel/helper-function-name": "^7.7.4", - "@babel/helper-split-export-declaration": "^7.7.4", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.3.tgz", + "integrity": "sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -2453,203 +2663,221 @@ "dev": true }, "@babel/plugin-proposal-async-generator-functions": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.7.4.tgz", - "integrity": "sha512-1ypyZvGRXriY/QP668+s8sFr2mqinhkRDMPSQLNghCQE+GAkFtp+wkHVvg2+Hdki8gwP+NFzJBJ/N1BfzCCDEw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz", + "integrity": "sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-remap-async-to-generator": "^7.7.4", - "@babel/plugin-syntax-async-generators": "^7.7.4" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-remap-async-to-generator": "^7.8.3", + "@babel/plugin-syntax-async-generators": "^7.8.0" } }, "@babel/plugin-proposal-dynamic-import": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.7.4.tgz", - "integrity": "sha512-StH+nGAdO6qDB1l8sZ5UBV8AC3F2VW2I8Vfld73TMKyptMU9DY5YsJAS8U81+vEtxcH3Y/La0wG0btDrhpnhjQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz", + "integrity": "sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-dynamic-import": "^7.7.4" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-dynamic-import": "^7.8.0" } }, "@babel/plugin-proposal-json-strings": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.7.4.tgz", - "integrity": "sha512-wQvt3akcBTfLU/wYoqm/ws7YOAQKu8EVJEvHip/mzkNtjaclQoCCIqKXFP5/eyfnfbQCDV3OLRIK3mIVyXuZlw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz", + "integrity": "sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-json-strings": "^7.7.4" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0" } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.7.7.tgz", - "integrity": "sha512-3qp9I8lelgzNedI3hrhkvhaEYree6+WHnyA/q4Dza9z7iEIs1eyhWyJnetk3jJ69RT0AT4G0UhEGwyGFJ7GUuQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-object-rest-spread": "^7.7.4" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0" } }, "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.7.4.tgz", - "integrity": "sha512-DyM7U2bnsQerCQ+sejcTNZh8KQEUuC3ufzdnVnSiUv/qoGJp2Z3hanKL18KDhsBT5Wj6a7CMT5mdyCNJsEaA9w==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.7.4" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" } }, "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.7.7.tgz", - "integrity": "sha512-80PbkKyORBUVm1fbTLrHpYdJxMThzM1UqFGh0ALEhO9TYbG86Ah9zQYAB/84axz2vcxefDLdZwWwZNlYARlu9w==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.3.tgz", + "integrity": "sha512-1/1/rEZv2XGweRwwSkLpY+s60za9OZ1hJs4YDqFHCw0kYWYwL5IFljVY1MYBL+weT1l9pokDO2uhSTLVxzoHkQ==", "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-create-regexp-features-plugin": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-syntax-async-generators": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.7.4.tgz", - "integrity": "sha512-Li4+EjSpBgxcsmeEF8IFcfV/+yJGxHXDirDkEoyFjumuwbmfCVHUt0HuowD/iGM7OhIRyXJH9YXxqiH6N815+g==", + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-dynamic-import": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.7.4.tgz", - "integrity": "sha512-jHQW0vbRGvwQNgyVxwDh4yuXu4bH1f5/EICJLAhl1SblLs2CDhrsmCk+v5XLdE9wxtAFRyxx+P//Iw+a5L/tTg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-json-strings": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.7.4.tgz", - "integrity": "sha512-QpGupahTQW1mHRXddMG5srgpHWqRLwJnJZKXTigB9RPFCCGbDGCgBeM/iC82ICXp414WeYx/tD54w7M2qRqTMg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-object-rest-spread": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.7.4.tgz", - "integrity": "sha512-mObR+r+KZq0XhRVS2BrBKBpr5jqrqzlPvS9C9vuOf5ilSwzloAl7RPWLrgKdWS6IreaVrjHxTjtyqFiOisaCwg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-optional-catch-binding": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.7.4.tgz", - "integrity": "sha512-4ZSuzWgFxqHRE31Glu+fEr/MirNZOMYmD/0BhBWyLyOOQz/gTAl7QmWm2hX1QxEIXsr2vkdlwxIzTyiYRC4xcQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.0" } }, "@babel/plugin-syntax-top-level-await": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.7.4.tgz", - "integrity": "sha512-wdsOw0MvkL1UIgiQ/IFr3ETcfv1xb8RMM0H9wbiDyLaJFyiDg5oZvDLCXosIXmFeIlweML5iOBXAkqddkYNizg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz", + "integrity": "sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-arrow-functions": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.7.4.tgz", - "integrity": "sha512-zUXy3e8jBNPiffmqkHRNDdZM2r8DWhCB7HhcoyZjiK1TxYEluLHAvQuYnTT+ARqRpabWqy/NHkO6e3MsYB5YfA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz", + "integrity": "sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-async-to-generator": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.7.4.tgz", - "integrity": "sha512-zpUTZphp5nHokuy8yLlyafxCJ0rSlFoSHypTUWgpdwoDXWQcseaect7cJ8Ppk6nunOM6+5rPMkod4OYKPR5MUg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz", + "integrity": "sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ==", "requires": { - "@babel/helper-module-imports": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-remap-async-to-generator": "^7.7.4" + "@babel/helper-module-imports": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-remap-async-to-generator": "^7.8.3" } }, "@babel/plugin-transform-block-scoped-functions": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.7.4.tgz", - "integrity": "sha512-kqtQzwtKcpPclHYjLK//3lH8OFsCDuDJBaFhVwf8kqdnF6MN4l618UDlcA7TfRs3FayrHj+svYnSX8MC9zmUyQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz", + "integrity": "sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-block-scoping": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.7.4.tgz", - "integrity": "sha512-2VBe9u0G+fDt9B5OV5DQH4KBf5DoiNkwFKOz0TCvBWvdAN2rOykCTkrL+jTLxfCAm76l9Qo5OqL7HBOx2dWggg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz", + "integrity": "sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-plugin-utils": "^7.8.3", "lodash": "^4.17.13" } }, "@babel/plugin-transform-classes": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.7.4.tgz", - "integrity": "sha512-sK1mjWat7K+buWRuImEzjNf68qrKcrddtpQo3swi9j7dUcG6y6R6+Di039QN2bD1dykeswlagupEmpOatFHHUg==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.7.4", - "@babel/helper-define-map": "^7.7.4", - "@babel/helper-function-name": "^7.7.4", - "@babel/helper-optimise-call-expression": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.7.4", - "@babel/helper-split-export-declaration": "^7.7.4", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.3.tgz", + "integrity": "sha512-SjT0cwFJ+7Rbr1vQsvphAHwUHvSUPmMjMU/0P59G8U2HLFqSa082JO7zkbDNWs9kH/IUqpHI6xWNesGf8haF1w==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.8.3", + "@babel/helper-define-map": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-optimise-call-expression": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-replace-supers": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", "globals": "^11.1.0" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" } }, "@babel/helper-split-export-declaration": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.7.4.tgz", - "integrity": "sha512-guAg1SXFcVr04Guk9eq0S4/rWS++sbmyqosJzVs8+1fH5NI+ZcmkaSkc7dmtAFbHFva6yRJnjW3yAcGxjueDug==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", + "requires": { + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", "requires": { - "@babel/types": "^7.7.4" + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -2659,101 +2887,119 @@ } }, "@babel/plugin-transform-computed-properties": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.7.4.tgz", - "integrity": "sha512-bSNsOsZnlpLLyQew35rl4Fma3yKWqK3ImWMSC/Nc+6nGjC9s5NFWAer1YQ899/6s9HxO2zQC1WoFNfkOqRkqRQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz", + "integrity": "sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-destructuring": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.7.4.tgz", - "integrity": "sha512-4jFMXI1Cu2aXbcXXl8Lr6YubCn6Oc7k9lLsu8v61TZh+1jny2BWmdtvY9zSUlLdGUvcy9DMAWyZEOqjsbeg/wA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.3.tgz", + "integrity": "sha512-H4X646nCkiEcHZUZaRkhE2XVsoz0J/1x3VVujnn96pSoGCtKPA99ZZA+va+gK+92Zycd6OBKCD8tDb/731bhgQ==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-dotall-regex": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.7.7.tgz", - "integrity": "sha512-b4in+YlTeE/QmTgrllnb3bHA0HntYvjz8O3Mcbx75UBPJA2xhb5A8nle498VhxSXJHQefjtQxpnLPehDJ4TRlg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz", + "integrity": "sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw==", "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-create-regexp-features-plugin": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.7.4.tgz", - "integrity": "sha512-g1y4/G6xGWMD85Tlft5XedGaZBCIVN+/P0bs6eabmcPP9egFleMAo65OOjlhcz1njpwagyY3t0nsQC9oTFegJA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz", + "integrity": "sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-exponentiation-operator": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.7.4.tgz", - "integrity": "sha512-MCqiLfCKm6KEA1dglf6Uqq1ElDIZwFuzz1WH5mTf8k2uQSxEJMbOIEh7IZv7uichr7PMfi5YVSrr1vz+ipp7AQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz", + "integrity": "sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ==", "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-for-of": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.7.4.tgz", - "integrity": "sha512-zZ1fD1B8keYtEcKF+M1TROfeHTKnijcVQm0yO/Yu1f7qoDoxEIc/+GX6Go430Bg84eM/xwPFp0+h4EbZg7epAA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.3.tgz", + "integrity": "sha512-ZjXznLNTxhpf4Q5q3x1NsngzGA38t9naWH8Gt+0qYZEJAcvPI9waSStSh56u19Ofjr7QmD0wUsQ8hw8s/p1VnA==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.7.4.tgz", - "integrity": "sha512-E/x09TvjHNhsULs2IusN+aJNRV5zKwxu1cpirZyRPw+FyyIKEHPXTsadj48bVpc1R5Qq1B5ZkzumuFLytnbT6g==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz", + "integrity": "sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ==", "requires": { - "@babel/helper-function-name": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" }, "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, "@babel/helper-function-name": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.7.4.tgz", - "integrity": "sha512-AnkGIdiBhEuiwdoMnKm7jfPfqItZhgRaZfMg1XX3bS25INOnLPjPG1Ppnajh8eqgt5kPJnfqrRHqFqmjKDZLzQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", "requires": { - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/template": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", + "requires": { + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", "requires": { - "@babel/types": "^7.7.4" + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" } }, "@babel/parser": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.7.7.tgz", - "integrity": "sha512-WtTZMZAZLbeymhkd/sEaPD8IQyGAhmuTuvTzLiCFM7iXiVdY0gc0IaI+cW0fh1BnSMbJSzXX6/fHllgHKwHhXw==" + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" }, "@babel/template": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.7.4.tgz", - "integrity": "sha512-qUzihgVPguAzXCK7WXw8pqs6cEwi54s3E+HrejlkuWO6ivMKx9hZl3Y2fSXp9i5HgyWmj7RKP+ulaYnKM4yYxw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", "requires": { - "@babel/code-frame": "^7.0.0", - "@babel/parser": "^7.7.4", - "@babel/types": "^7.7.4" + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -2763,108 +3009,109 @@ } }, "@babel/plugin-transform-literals": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.7.4.tgz", - "integrity": "sha512-X2MSV7LfJFm4aZfxd0yLVFrEXAgPqYoDG53Br/tCKiKYfX0MjVjQeWPIhPHHsCqzwQANq+FLN786fF5rgLS+gw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz", + "integrity": "sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-member-expression-literals": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.7.4.tgz", - "integrity": "sha512-9VMwMO7i69LHTesL0RdGy93JU6a+qOPuvB4F4d0kR0zyVjJRVJRaoaGjhtki6SzQUu8yen/vxPKN6CWnCUw6bA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz", + "integrity": "sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-modules-amd": { - "version": "7.7.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.7.5.tgz", - "integrity": "sha512-CT57FG4A2ZUNU1v+HdvDSDrjNWBrtCmSH6YbbgN3Lrf0Di/q/lWRxZrE72p3+HCCz9UjfZOEBdphgC0nzOS6DQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz", + "integrity": "sha512-MadJiU3rLKclzT5kBH4yxdry96odTUwuqrZM+GllFI/VhxfPz+k9MshJM+MwhfkCdxxclSbSBbUGciBngR+kEQ==", "requires": { - "@babel/helper-module-transforms": "^7.7.5", - "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", "babel-plugin-dynamic-import-node": "^2.3.0" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.7.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.7.5.tgz", - "integrity": "sha512-9Cq4zTFExwFhQI6MT1aFxgqhIsMWQWDVwOgLzl7PTWJHsNaqFvklAU+Oz6AQLAS0dJKTwZSOCo20INwktxpi3Q==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz", + "integrity": "sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg==", "requires": { - "@babel/helper-module-transforms": "^7.7.5", - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-simple-access": "^7.7.4", + "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-simple-access": "^7.8.3", "babel-plugin-dynamic-import-node": "^2.3.0" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.7.4.tgz", - "integrity": "sha512-y2c96hmcsUi6LrMqvmNDPBBiGCiQu0aYqpHatVVu6kD4mFEXKjyNxd/drc18XXAf9dv7UXjrZwBVmTTGaGP8iw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.3.tgz", + "integrity": "sha512-8cESMCJjmArMYqa9AO5YuMEkE4ds28tMpZcGZB/jl3n0ZzlsxOAi3mC+SKypTfT8gjMupCnd3YiXCkMjj2jfOg==", "requires": { - "@babel/helper-hoist-variables": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0", + "@babel/helper-hoist-variables": "^7.8.3", + "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3", "babel-plugin-dynamic-import-node": "^2.3.0" } }, "@babel/plugin-transform-modules-umd": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.7.4.tgz", - "integrity": "sha512-u2B8TIi0qZI4j8q4C51ktfO7E3cQ0qnaXFI1/OXITordD40tt17g/sXqgNNCcMTcBFKrUPcGDx+TBJuZxLx7tw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.3.tgz", + "integrity": "sha512-evhTyWhbwbI3/U6dZAnx/ePoV7H6OUG+OjiJFHmhr9FPn0VShjwC2kdxqIuQ/+1P50TMrneGzMeyMTFOjKSnAw==", "requires": { - "@babel/helper-module-transforms": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.7.4.tgz", - "integrity": "sha512-jBUkiqLKvUWpv9GLSuHUFYdmHg0ujC1JEYoZUfeOOfNydZXp1sXObgyPatpcwjWgsdBGsagWW0cdJpX/DO2jMw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz", + "integrity": "sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw==", "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.7.4" + "@babel/helper-create-regexp-features-plugin": "^7.8.3" } }, "@babel/plugin-transform-new-target": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.7.4.tgz", - "integrity": "sha512-CnPRiNtOG1vRodnsyGX37bHQleHE14B9dnnlgSeEs3ek3fHN1A1SScglTCg1sfbe7sRQ2BUcpgpTpWSfMKz3gg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz", + "integrity": "sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-object-super": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.7.4.tgz", - "integrity": "sha512-ho+dAEhC2aRnff2JCA0SAK7V2R62zJd/7dmtoe7MHcso4C2mS+vZjn1Pb1pCVZvJs1mgsvv5+7sT+m3Bysb6eg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz", + "integrity": "sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-replace-supers": "^7.7.4" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-replace-supers": "^7.8.3" } }, "@babel/plugin-transform-parameters": { - "version": "7.7.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.7.7.tgz", - "integrity": "sha512-OhGSrf9ZBrr1fw84oFXj5hgi8Nmg+E2w5L7NhnG0lPvpDtqd7dbyilM2/vR8CKbJ907RyxPh2kj6sBCSSfI9Ew==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.3.tgz", + "integrity": "sha512-/pqngtGb54JwMBZ6S/D3XYylQDFtGjWrnoCF4gXZOUpFV/ujbxnoNGNvDGu6doFWRPBveE72qTx/RRU44j5I/Q==", "requires": { - "@babel/helper-call-delegate": "^7.7.4", - "@babel/helper-get-function-arity": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-call-delegate": "^7.8.3", + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" }, "dependencies": { "@babel/helper-get-function-arity": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.7.4.tgz", - "integrity": "sha512-QTGKEdCkjgzgfJ3bAyRwF4yyT3pg+vDgan8DSivq1eS0gwi+KGKE5x8kRcbeFTb/673mkO5SN1IZfmCfA5o+EA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", "requires": { - "@babel/types": "^7.7.4" + "@babel/types": "^7.8.3" } }, "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -2874,78 +3121,78 @@ } }, "@babel/plugin-transform-property-literals": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.7.4.tgz", - "integrity": "sha512-MatJhlC4iHsIskWYyawl53KuHrt+kALSADLQQ/HkhTjX954fkxIEh4q5slL4oRAnsm/eDoZ4q0CIZpcqBuxhJQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz", + "integrity": "sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-regenerator": { - "version": "7.7.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.7.5.tgz", - "integrity": "sha512-/8I8tPvX2FkuEyWbjRCt4qTAgZK0DVy8QRguhA524UH48RfGJy94On2ri+dCuwOpcerPRl9O4ebQkRcVzIaGBw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.3.tgz", + "integrity": "sha512-qt/kcur/FxrQrzFR432FGZznkVAjiyFtCOANjkAKwCbt465L6ZCiUQh2oMYGU3Wo8LRFJxNDFwWn106S5wVUNA==", "requires": { "regenerator-transform": "^0.14.0" } }, "@babel/plugin-transform-reserved-words": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.7.4.tgz", - "integrity": "sha512-OrPiUB5s5XvkCO1lS7D8ZtHcswIC57j62acAnJZKqGGnHP+TIc/ljQSrgdX/QyOTdEK5COAhuc820Hi1q2UgLQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz", + "integrity": "sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-shorthand-properties": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.7.4.tgz", - "integrity": "sha512-q+suddWRfIcnyG5YiDP58sT65AJDZSUhXQDZE3r04AuqD6d/XLaQPPXSBzP2zGerkgBivqtQm9XKGLuHqBID6Q==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz", + "integrity": "sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-spread": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.7.4.tgz", - "integrity": "sha512-8OSs0FLe5/80cndziPlg4R0K6HcWSM0zyNhHhLsmw/Nc5MaA49cAsnoJ/t/YZf8qkG7fD+UjTRaApVDB526d7Q==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz", + "integrity": "sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-sticky-regex": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.7.4.tgz", - "integrity": "sha512-Ls2NASyL6qtVe1H1hXts9yuEeONV2TJZmplLONkMPUG158CtmnrzW5Q5teibM5UVOFjG0D3IC5mzXR6pPpUY7A==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz", + "integrity": "sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/helper-regex": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/helper-regex": "^7.8.3" } }, "@babel/plugin-transform-template-literals": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.7.4.tgz", - "integrity": "sha512-sA+KxLwF3QwGj5abMHkHgshp9+rRz+oY9uoRil4CyLtgEuE/88dpkeWgNk5qKVsJE9iSfly3nvHapdRiIS2wnQ==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz", + "integrity": "sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ==", "requires": { - "@babel/helper-annotate-as-pure": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-annotate-as-pure": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.7.4.tgz", - "integrity": "sha512-KQPUQ/7mqe2m0B8VecdyaW5XcQYaePyl9R7IsKd+irzj6jvbhoGnRE+M0aNkyAzI07VfUQ9266L5xMARitV3wg==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.3.tgz", + "integrity": "sha512-3TrkKd4LPqm4jHs6nPtSDI/SV9Cm5PRJkHLUgTcqRQQTMAZ44ZaAdDZJtvWFSaRcvT0a1rTmJ5ZA5tDKjleF3g==", "requires": { - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/plugin-transform-unicode-regex": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.7.4.tgz", - "integrity": "sha512-N77UUIV+WCvE+5yHw+oks3m18/umd7y392Zv7mYTpFqHtkpcc+QUz+gLJNTWVlWROIWeLqY0f3OjZxV5TcXnRw==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz", + "integrity": "sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw==", "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.7.4", - "@babel/helper-plugin-utils": "^7.0.0" + "@babel/helper-create-regexp-features-plugin": "^7.8.3", + "@babel/helper-plugin-utils": "^7.8.3" } }, "@babel/preset-env": { @@ -3007,9 +3254,9 @@ }, "dependencies": { "@babel/types": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.7.4.tgz", - "integrity": "sha512-cz5Ji23KCi4T+YIE/BolWosrJuSmoZeN1EFnRtBwF+KKLi8GG/Z2c2hOJJeCXPk4mwk4QFvTmwIodJowXgttRA==", + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", "requires": { "esutils": "^2.0.2", "lodash": "^4.17.13", @@ -3108,6 +3355,11 @@ "resolved": "https://registry.npmjs.org/@fullcalendar/daygrid/-/daygrid-4.3.0.tgz", "integrity": "sha512-OrGaRIGbELESOXOCXtoQVY4cOxnxmN7OrjDGbMoVITdoXWuIZ6sFNO84WcBQoRaIbkmqVM0SAU2MENwy+eEwqQ==" }, + "@istanbuljs/schema": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz", + "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==" + }, "@ng-select/ng-option-highlight": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/@ng-select/ng-option-highlight/-/ng-option-highlight-0.0.2.tgz", @@ -3125,21 +3377,21 @@ } }, "@ngtools/webpack": { - "version": "8.3.21", - "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-8.3.21.tgz", - "integrity": "sha512-DGqmFQ52sV4uB3y3spQTNLa69oU5cwd1yIqMB4GSM+Qp+hozdzrPA2gVH90N2DDhWe8icsSQHAtZQiR9+BDL8g==", + "version": "8.3.23", + "resolved": "https://registry.npmjs.org/@ngtools/webpack/-/webpack-8.3.23.tgz", + "integrity": "sha512-+XekeThky6+Upped3hOwjHwYTsXJiDuCA5ZZLmGHkTxGzjB4ZHSlBaj75yTS+s+/Ab1WgdRo2P2BxOUS7oogtw==", "requires": { - "@angular-devkit/core": "8.3.21", + "@angular-devkit/core": "8.3.23", "enhanced-resolve": "4.1.0", "rxjs": "6.4.0", - "tree-kill": "1.2.1", + "tree-kill": "1.2.2", "webpack-sources": "1.4.3" }, "dependencies": { "@angular-devkit/core": { - "version": "8.3.21", - "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-8.3.21.tgz", - "integrity": "sha512-BYyVbrbys535FplX0+GVOlYBg/cyk1U5SRhSxRRFZYi9epVlEBBPk8/6wV4cQPGb6EwXkVj7YtPWXjXcGfzWmA==", + "version": "8.3.23", + "resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-8.3.23.tgz", + "integrity": "sha512-y++LN6R/fu+obPUKEMDSKZ5FzeWN5rV0Z8vrdC+uF02VJLv/5QI/dUx3ROKFzJO3m2LU6EAuo5b/TLAPq4ving==", "requires": { "ajv": "6.10.2", "fast-json-stable-stringify": "2.0.0", @@ -3424,9 +3676,9 @@ "integrity": "sha512-Fv+0gYJzE/czLoRKq+gnXWr4yBpPM3tO3C8pDLFwqVKlMICQUq5OsxwwFZYDaVr7+L6mgNDp16iOcJHEz3J5RQ==" }, "@types/webpack-sources": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.5.tgz", - "integrity": "sha512-zfvjpp7jiafSmrzJ2/i3LqOyTYTuJ7u1KOXlKgDlvsj9Rr0x7ZiYu5lZbXwobL7lmsRNtPXlBfmaUD8eU2Hu8w==", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-0.1.6.tgz", + "integrity": "sha512-FtAWR7wR5ocJ9+nP137DV81tveD/ZgB1sadnJ/axUGM3BUVfRPx8oQNMtv3JNfTeHx3VP7cXiyfR/jmtEsVHsQ==", "requires": { "@types/node": "*", "@types/source-list-map": "*", @@ -4063,80 +4315,6 @@ "ast-types-flow": "0.0.7" } }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "requires": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" - }, - "dependencies": { - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - } - } - }, - "babel-generator": { - "version": "6.26.1", - "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz", - "integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==", - "requires": { - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "detect-indent": "^4.0.0", - "jsesc": "^1.3.0", - "lodash": "^4.17.4", - "source-map": "^0.5.7", - "trim-right": "^1.0.1" - }, - "dependencies": { - "jsesc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz", - "integrity": "sha1-RsP+yMGJKxKwgz25vHYiF226s0s=" - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } - } - }, - "babel-messages": { - "version": "6.23.0", - "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz", - "integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=", - "requires": { - "babel-runtime": "^6.22.0" - } - }, "babel-plugin-dynamic-import-node": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz", @@ -4145,85 +4323,6 @@ "object.assign": "^4.1.0" } }, - "babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", - "requires": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" - }, - "dependencies": { - "core-js": { - "version": "2.6.11", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.11.tgz", - "integrity": "sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==" - }, - "regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" - } - } - }, - "babel-template": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz", - "integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=", - "requires": { - "babel-runtime": "^6.26.0", - "babel-traverse": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "lodash": "^4.17.4" - } - }, - "babel-traverse": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz", - "integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=", - "requires": { - "babel-code-frame": "^6.26.0", - "babel-messages": "^6.23.0", - "babel-runtime": "^6.26.0", - "babel-types": "^6.26.0", - "babylon": "^6.18.0", - "debug": "^2.6.8", - "globals": "^9.18.0", - "invariant": "^2.2.2", - "lodash": "^4.17.4" - }, - "dependencies": { - "globals": { - "version": "9.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", - "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" - } - } - }, - "babel-types": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz", - "integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=", - "requires": { - "babel-runtime": "^6.26.0", - "esutils": "^2.0.2", - "lodash": "^4.17.4", - "to-fast-properties": "^1.0.3" - }, - "dependencies": { - "to-fast-properties": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz", - "integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=" - } - } - }, - "babylon": { - "version": "6.18.0", - "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", - "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" - }, "backo2": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", @@ -4696,7 +4795,7 @@ }, "camelcase-keys": { "version": "2.1.0", - "resolved": "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", "requires": { "camelcase": "^2.0.0", @@ -4933,11 +5032,6 @@ "shallow-clone": "^3.0.0" } }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" - }, "code-point-at": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", @@ -5301,9 +5395,9 @@ "integrity": "sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw==" }, "core-js-compat": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.2.tgz", - "integrity": "sha512-+G28dzfYGtAM+XGvB1C5AS1ZPKfQ47HLhcdeIQdZgQnJVdp7/D0m+W/TErwhgsX6CujRUk/LebB6dCrKrtJrvQ==", + "version": "3.6.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.4.tgz", + "integrity": "sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA==", "requires": { "browserslist": "^4.8.3", "semver": "7.0.0" @@ -5319,20 +5413,15 @@ "node-releases": "^1.1.44" } }, - "caniuse-lite": { - "version": "1.0.30001019", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001019.tgz", - "integrity": "sha512-6ljkLtF1KM5fQ+5ZN0wuyVvvebJxgJPTmScOMaFuQN2QuOzvRJnWSKfzQskQU5IOU4Gap3zasYPIinzwUjoj/g==" - }, "electron-to-chromium": { - "version": "1.3.328", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.328.tgz", - "integrity": "sha512-x4XefnFxDxFwaQ01d/pppJP9meWhOIJ/gtI6/4jqkpsadq79uL7NYSaX64naLmJqvzUBjSrO3IM2+1b/W9KdPg==" + "version": "1.3.338", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.338.tgz", + "integrity": "sha512-wlmfixuHEc9CkfOKgcqdtzBmRW4NStM9ptl5oPILY2UDyHuSXb3Yit+yLVyLObTgGuMMU36hhnfs2GDJId7ctA==" }, "node-releases": { - "version": "1.1.44", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.44.tgz", - "integrity": "sha512-NwbdvJyR7nrcGrXvKAvzc5raj/NkoJudkarh2yIpJ4t0NH4aqjUDz/486P+ynIW5eokKOfzGNRdYoLfBlomruw==", + "version": "1.1.46", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.46.tgz", + "integrity": "sha512-YOjdx+Uoh9FbRO7yVYbnbt1puRWPQMemR3SutLeyv2XfxKs1ihpe0OLAUwBPEP2ImNH/PZC7SEiC6j32dwRZ7g==", "requires": { "semver": "^6.3.0" }, @@ -5378,6 +5467,86 @@ } } }, + "coverage-istanbul-loader": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/coverage-istanbul-loader/-/coverage-istanbul-loader-2.0.3.tgz", + "integrity": "sha512-LiGRvyIuzVYs3M1ZYK1tF0HekjH0DJ8zFdUwAZq378EJzqOgToyb1690dp3TAUlP6Y+82uu42LRjuROVeJ54CA==", + "requires": { + "convert-source-map": "^1.7.0", + "istanbul-lib-instrument": "^4.0.0", + "loader-utils": "^1.2.3", + "merge-source-map": "^1.1.0", + "schema-utils": "^2.6.1" + }, + "dependencies": { + "ajv": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.11.0.tgz", + "integrity": "sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", + "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==" + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" + }, + "schema-utils": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.4.tgz", + "integrity": "sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ==", + "requires": { + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1" + } + } + } + }, "create-ecdh": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", @@ -5719,14 +5888,6 @@ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" }, - "detect-indent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz", - "integrity": "sha1-920GQ1LN9Docts5hnE7jqUdd4gg=", - "requires": { - "repeating": "^2.0.0" - } - }, "detect-node": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", @@ -6248,9 +6409,9 @@ "integrity": "sha512-ivIvhpq/Y0uSjcHDcOIccjmYjGLcP09MFGE7ysAwkAvkXfpZlC985pH2/ui64DKazbTW/4kN3yqozUxlXzI6cA==" }, "events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", - "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==" + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.1.0.tgz", + "integrity": "sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg==" }, "eventsource": { "version": "1.0.7", @@ -6557,11 +6718,11 @@ }, "dependencies": { "ajv": { - "version": "6.10.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", - "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.11.0.tgz", + "integrity": "sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA==", "requires": { - "fast-deep-equal": "^2.0.1", + "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" @@ -6577,6 +6738,11 @@ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + }, "json5": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", @@ -6601,9 +6767,9 @@ "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" }, "schema-utils": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.1.tgz", - "integrity": "sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.4.tgz", + "integrity": "sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ==", "requires": { "ajv": "^6.10.2", "ajv-keywords": "^3.4.1" @@ -6958,9 +7124,9 @@ } }, "globule": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", - "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.0.tgz", + "integrity": "sha512-YlD4kdMqRCQHrhVdonet4TdRtv1/sZKepvoxNT4Nrhrp5HI8XFfc8kFlGlBn2myBo80aGp8Eft259mbcUJhgSg==", "requires": { "glob": "~7.1.1", "lodash": "~4.17.10", @@ -7831,52 +7997,10 @@ } } }, - "istanbul-instrumenter-loader": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-instrumenter-loader/-/istanbul-instrumenter-loader-3.0.1.tgz", - "integrity": "sha512-a5SPObZgS0jB/ixaKSMdn6n/gXSrK2S6q/UfRJBT3e6gQmVjwZROTODQsYW5ZNwOu78hG62Y3fWlebaVOL0C+w==", - "requires": { - "convert-source-map": "^1.5.0", - "istanbul-lib-instrument": "^1.7.3", - "loader-utils": "^1.1.0", - "schema-utils": "^0.3.0" - }, - "dependencies": { - "ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", - "requires": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.3.0" - } - }, - "fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=" - }, - "json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=" - }, - "schema-utils": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.3.0.tgz", - "integrity": "sha1-9YdyIs4+kx7a4DnxfrNxbnE3+M8=", - "requires": { - "ajv": "^5.0.0" - } - } - } - }, "istanbul-lib-coverage": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz", - "integrity": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ==" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==" }, "istanbul-lib-hook": { "version": "2.0.7", @@ -7888,17 +8012,138 @@ } }, "istanbul-lib-instrument": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz", - "integrity": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==", - "requires": { - "babel-generator": "^6.18.0", - "babel-template": "^6.16.0", - "babel-traverse": "^6.18.0", - "babel-types": "^6.18.0", - "babylon": "^6.18.0", - "istanbul-lib-coverage": "^1.2.1", - "semver": "^5.3.0" + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.0.tgz", + "integrity": "sha512-Nm4wVHdo7ZXSG30KjZ2Wl5SU/Bw7bDx1PdaiIFzEStdjs0H12mOTncn1GVYuqQSaZxpg87VGBRsVRPGD2cD1AQ==", + "requires": { + "@babel/core": "^7.7.5", + "@babel/parser": "^7.7.5", + "@babel/template": "^7.7.4", + "@babel/traverse": "^7.7.4", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.8.3.tgz", + "integrity": "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g==", + "requires": { + "@babel/highlight": "^7.8.3" + } + }, + "@babel/generator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.3.tgz", + "integrity": "sha512-WjoPk8hRpDRqqzRpvaR8/gDUPkrnOOeuT2m8cNICJtZH6mwaCo3v0OKMI7Y6SM1pBtyijnLtAL0HDi41pf41ug==", + "requires": { + "@babel/types": "^7.8.3", + "jsesc": "^2.5.1", + "lodash": "^4.17.13", + "source-map": "^0.5.0" + } + }, + "@babel/helper-function-name": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz", + "integrity": "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA==", + "requires": { + "@babel/helper-get-function-arity": "^7.8.3", + "@babel/template": "^7.8.3", + "@babel/types": "^7.8.3" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz", + "integrity": "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA==", + "requires": { + "@babel/types": "^7.8.3" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz", + "integrity": "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA==", + "requires": { + "@babel/types": "^7.8.3" + } + }, + "@babel/highlight": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", + "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", + "requires": { + "chalk": "^2.0.0", + "esutils": "^2.0.2", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.3.tgz", + "integrity": "sha512-/V72F4Yp/qmHaTALizEm9Gf2eQHV3QyTL3K0cNfijwnMnb1L+LDlAubb/ZnSdGAVzVSWakujHYs1I26x66sMeQ==" + }, + "@babel/template": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.8.3.tgz", + "integrity": "sha512-04m87AcQgAFdvuoyiQ2kgELr2tV8B4fP/xJAVUL3Yb3bkNdMedD3d0rlSQr3PegP0cms3eHjl1F7PWlvWbU8FQ==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3" + } + }, + "@babel/traverse": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.3.tgz", + "integrity": "sha512-we+a2lti+eEImHmEXp7bM9cTxGzxPmBiVJlLVD+FuuQMeeO7RaDbutbgeheDkw+Xe3mCfJHnGOWLswT74m2IPg==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.8.3", + "@babel/helper-function-name": "^7.8.3", + "@babel/helper-split-export-declaration": "^7.8.3", + "@babel/parser": "^7.8.3", + "@babel/types": "^7.8.3", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.13" + } + }, + "@babel/types": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.3.tgz", + "integrity": "sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==", + "requires": { + "esutils": "^2.0.2", + "lodash": "^4.17.13", + "to-fast-properties": "^2.0.0" + } + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } } }, "istanbul-lib-report": { @@ -8489,7 +8734,7 @@ }, "load-json-file": { "version": "1.1.0", - "resolved": "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", "requires": { "graceful-fs": "^4.1.2", @@ -8501,7 +8746,7 @@ "dependencies": { "pify": { "version": "2.3.0", - "resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" } } @@ -8772,7 +9017,7 @@ }, "meow": { "version": "3.7.0", - "resolved": "http://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", "requires": { "camelcase-keys": "^2.0.0", @@ -8789,7 +9034,7 @@ "dependencies": { "minimist": { "version": "1.2.0", - "resolved": "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" } } @@ -8799,6 +9044,21 @@ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" }, + "merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "requires": { + "source-map": "^0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } + } + }, "merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", @@ -9254,7 +9514,7 @@ "dependencies": { "semver": { "version": "5.3.0", - "resolved": "http://registry.npmjs.org/semver/-/semver-5.3.0.tgz", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=" }, "tar": { @@ -9315,9 +9575,9 @@ } }, "node-sass": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz", - "integrity": "sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ==", + "version": "4.13.1", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.13.1.tgz", + "integrity": "sha512-TTWFx+ZhyDx1Biiez2nB0L3YrCZ/8oHagaDalbuBSlqXgUPsdkUSzJsVxeDO9LtPB49+Fh3WQl3slABo6AotNw==", "requires": { "async-foreach": "^0.1.3", "chalk": "^1.1.1", @@ -9326,7 +9586,7 @@ "get-stdin": "^4.0.1", "glob": "^7.0.3", "in-publish": "^2.0.0", - "lodash": "^4.17.11", + "lodash": "^4.17.15", "meow": "^3.7.0", "mkdirp": "^0.5.1", "nan": "^2.13.2", @@ -9345,7 +9605,7 @@ }, "chalk": { "version": "1.1.3", - "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { "ansi-styles": "^2.2.1", @@ -10370,11 +10630,11 @@ }, "dependencies": { "ajv": { - "version": "6.10.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", - "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.11.0.tgz", + "integrity": "sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA==", "requires": { - "fast-deep-equal": "^2.0.1", + "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" @@ -10385,10 +10645,15 @@ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==" }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + }, "schema-utils": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.1.tgz", - "integrity": "sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.4.tgz", + "integrity": "sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ==", "requires": { "ajv": "^6.10.2", "ajv-keywords": "^3.4.1" @@ -10463,7 +10728,7 @@ }, "pify": { "version": "2.3.0", - "resolved": "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" } } @@ -10596,9 +10861,9 @@ }, "dependencies": { "es-abstract": { - "version": "1.17.0", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.0.tgz", - "integrity": "sha512-yYkE07YF+6SIBmg1MsJ9dlub5L48Ek7X0qz+c/CPCHS9EBXfESorzng4cJQjJW5/pB6vDF41u7F8vUhLVDqIug==", + "version": "1.17.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.3.tgz", + "integrity": "sha512-AwiVPKf3sKGMoWtFw0J7Y4MTZ4Iek67k4COWOwHqS8B9TOZ71DCfcoBmdamy8Y6mj4MDz0+VNUpC2HKHFHA3pg==", "requires": { "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", @@ -11033,7 +11298,7 @@ "dependencies": { "source-map": { "version": "0.4.4", - "resolved": "http://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", "requires": { "amdefine": ">=0.0.4" @@ -11672,9 +11937,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "readable-stream": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz", - "integrity": "sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.5.0.tgz", + "integrity": "sha512-gSz026xs2LfxBPudDuI41V1lka8cxg64E66SGe78zJlsUofOg/yqwezdIcdfwik6B4h8LFmWPA9ef9X3FiNFLA==", "requires": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", @@ -11925,11 +12190,11 @@ }, "dependencies": { "ajv": { - "version": "6.10.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", - "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.11.0.tgz", + "integrity": "sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA==", "requires": { - "fast-deep-equal": "^2.0.1", + "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" @@ -11945,6 +12210,11 @@ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + }, "json5": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", @@ -11969,9 +12239,9 @@ "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=" }, "schema-utils": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.1.tgz", - "integrity": "sha512-0WXHDs1VDJyo+Zqs9TKLKyD/h7yDpHUhEFsM2CzkICFdoX1av+GBq/J2xRTFfsQO5kBfhZzANf2VcIm84jqDbg==", + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.6.4.tgz", + "integrity": "sha512-VNjcaUxVnEeun6B2fiiUDjXXBtD4ZSH7pdbfIu1pOFwgptDPLMo/z9jr4sUfsjFVPqDCEin/F7IYlq7/E6yDbQ==", "requires": { "ajv": "^6.10.2", "ajv-keywords": "^3.4.1" @@ -12264,9 +12534,9 @@ } }, "tree-kill": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.1.tgz", - "integrity": "sha512-4hjqbObwlh2dLyW4tcz0Ymw0ggoaVDMveUB9w8kFSQScdRLo0gxO9J7WFcUBo+W3C1TLdFIEwNOWebgZZ0RH9Q==" + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" }, "trim-newlines": { "version": "1.0.0", @@ -12276,7 +12546,8 @@ "trim-right": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", - "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=" + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "dev": true }, "true-case-path": { "version": "1.0.3", @@ -13443,11 +13714,11 @@ }, "dependencies": { "ajv": { - "version": "6.10.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", - "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.11.0.tgz", + "integrity": "sha512-nCprB/0syFYy9fVYU1ox1l2KN8S9I+tziH8D4zdZuLT3N6RMlGSGt5FSTpAiHB/Whv8Qs1cWHma1aMKZyaHRKA==", "requires": { - "fast-deep-equal": "^2.0.1", + "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" @@ -13463,6 +13734,11 @@ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" }, + "fast-deep-equal": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz", + "integrity": "sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==" + }, "json5": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", diff --git a/frontend/package.json b/frontend/package.json index 7a660c03e6..843efd987f 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -30,7 +30,7 @@ "tslint": "5.18.0" }, "dependencies": { - "@angular-devkit/build-angular": "^0.803.21", + "@angular-devkit/build-angular": "^0.803.23", "@angular/animations": "8.2.9", "@angular/cdk": "^8.2.2", "@angular/cli": "^8.3.8", @@ -111,7 +111,7 @@ "ng2-rx-componentdestroyed": "3.0.1", "ngtemplate-loader": "^2.0.1", "ngx-gallery": "^5.10.0", - "node-sass": "^4.12.0", + "node-sass": "^4.13.1", "observable-array": "0.0.4", "reactivestates": "2.0.1", "reflect-metadata": "^0.1.13", diff --git a/frontend/src/app/components/wp-table/configuration-modal/wp-table-configuration.modal.html b/frontend/src/app/components/wp-table/configuration-modal/wp-table-configuration.modal.html index 8d9a56daed..98db611cb6 100644 --- a/frontend/src/app/components/wp-table/configuration-modal/wp-table-configuration.modal.html +++ b/frontend/src/app/components/wp-table/configuration-modal/wp-table-configuration.modal.html @@ -19,9 +19,10 @@
    -
    diff --git a/frontend/src/app/modules/admin/openproject-admin.module.ts b/frontend/src/app/modules/admin/openproject-admin.module.ts index 752d28bd00..64a4377786 100644 --- a/frontend/src/app/modules/admin/openproject-admin.module.ts +++ b/frontend/src/app/modules/admin/openproject-admin.module.ts @@ -45,11 +45,10 @@ import {TypeFormQueryGroupComponent} from "core-app/modules/admin/types/query-gr TypeFormAttributeGroupComponent, TypeFormQueryGroupComponent, TypeFormConfigurationComponent, - GroupEditInPlaceComponent, + GroupEditInPlaceComponent ], entryComponents: [ TypeFormConfigurationComponent ] }) export class OpenprojectAdminModule { } - diff --git a/frontend/src/app/modules/boards/board/configuration-modal/board-configuration.modal.html b/frontend/src/app/modules/boards/board/configuration-modal/board-configuration.modal.html index d3a2d4f3dd..ce649ee090 100644 --- a/frontend/src/app/modules/boards/board/configuration-modal/board-configuration.modal.html +++ b/frontend/src/app/modules/boards/board/configuration-modal/board-configuration.modal.html @@ -15,9 +15,10 @@

    -
    diff --git a/frontend/src/app/modules/common/openproject-common.module.ts b/frontend/src/app/modules/common/openproject-common.module.ts index b7ffe4bff9..17f402abec 100644 --- a/frontend/src/app/modules/common/openproject-common.module.ts +++ b/frontend/src/app/modules/common/openproject-common.module.ts @@ -70,7 +70,8 @@ import {CollapsibleSectionComponent} from "core-app/modules/common/collapsible-s import {NoResultsComponent} from "core-app/modules/common/no-results/no-results.component"; import {DragDropModule} from "@angular/cdk/drag-drop"; import {UserAutocompleterComponent} from "app/modules/common/autocomplete/user-autocompleter.component"; -import {ScrollableTabsComponent} from "core-app/modules/common/tabs/scrollable-tabs.component"; +import {ScrollableTabsComponent} from "core-app/modules/common/tabs/scrollable-tabs/scrollable-tabs.component"; +import {ContentTabsComponent} from "core-app/modules/common/tabs/content-tabs/content-tabs.component"; import {BrowserDetector} from "core-app/modules/common/browser/browser-detector.service"; import {EditableToolbarTitleComponent} from "core-app/modules/common/editable-toolbar-title/editable-toolbar-title.component"; import {UserAvatarComponent} from "core-components/user/user-avatar/user-avatar.component"; @@ -252,6 +253,7 @@ export function bootstrapModule(injector:Injector) { UserAutocompleterComponent, ScrollableTabsComponent, + ContentTabsComponent, EditableToolbarTitleComponent, @@ -292,6 +294,8 @@ export function bootstrapModule(injector:Injector) { UserAutocompleterComponent, UserAvatarComponent, + ContentTabsComponent, + HomescreenNewFeaturesBlockComponent, BoardVideoTeaserModalComponent, UserAvatarComponent, diff --git a/frontend/src/app/modules/common/tabs/content-tabs/content-tabs.component.ts b/frontend/src/app/modules/common/tabs/content-tabs/content-tabs.component.ts new file mode 100644 index 0000000000..3e6a550840 --- /dev/null +++ b/frontend/src/app/modules/common/tabs/content-tabs/content-tabs.component.ts @@ -0,0 +1,89 @@ +// -- copyright +// OpenProject is a project management system. +// Copyright (C) 2012-2015 the OpenProject Foundation (OPF) +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License version 3. +// +// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +// Copyright (C) 2006-2013 Jean-Philippe Lang +// Copyright (C) 2010-2013 the ChiliProject Team +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +// +// See doc/COPYRIGHT.rdoc for more details. +// ++ + +import { + Component, + OnDestroy, + Input, + ElementRef, + ChangeDetectionStrategy +} from '@angular/core'; +import {DynamicBootstrapper} from "core-app/globals/dynamic-bootstrapper"; +import {GonService} from "core-app/modules/common/gon/gon.service"; +import {StateService} from '@uirouter/core'; +import {I18nService} from "core-app/modules/common/i18n/i18n.service"; +import {ScrollableTabsComponent} from "core-app/modules/common/tabs/scrollable-tabs/scrollable-tabs.component"; + + +export const contentTabsSelector = 'content-tabs'; + +interface GonTab { + name:string; + partial:string; + path:string; + label:string; +} + +@Component({ + selector: contentTabsSelector, + templateUrl: '/app/modules/common/tabs/scrollable-tabs/scrollable-tabs.component.html', + changeDetection: ChangeDetectionStrategy.OnPush +}) + +export class ContentTabsComponent extends ScrollableTabsComponent { + public gonTabs:GonTab[]; + public currentTab:GonTab; + + public classes:string[] = ['content--tabs', 'scrollable-tabs']; + + constructor(readonly elementRef:ElementRef, + readonly $state:StateService, + readonly gon:GonService, + readonly I18n:I18nService) { + super(); + + this.gonTabs = JSON.parse((this.gon.get('contentTabs') as any).tabs); + this.currentTab = JSON.parse((this.gon.get('contentTabs') as any).selected); + + // parse tabs from backend and map them to scrollable tabs structure + this.tabs = this.gonTabs.map((tab:GonTab) => { + return { + id: tab.name, + name: this.I18n.t('js.' + tab.label), + path: tab.path + }; + }); + + // highlight current tab + this.currentTabId = this.currentTab.name; + } +} + +DynamicBootstrapper.register({ + selector: contentTabsSelector, cls: ContentTabsComponent +}); diff --git a/frontend/src/app/modules/common/tabs/scrollable-tabs.component.html b/frontend/src/app/modules/common/tabs/scrollable-tabs/scrollable-tabs.component.html similarity index 88% rename from frontend/src/app/modules/common/tabs/scrollable-tabs.component.html rename to frontend/src/app/modules/common/tabs/scrollable-tabs/scrollable-tabs.component.html index df325f293b..d665783bce 100644 --- a/frontend/src/app/modules/common/tabs/scrollable-tabs.component.html +++ b/frontend/src/app/modules/common/tabs/scrollable-tabs/scrollable-tabs.component.html @@ -3,7 +3,7 @@
  • - +
  • { this.tabs = tabs; + this.tabs.map((tab) => tab.path = '#'); }); } diff --git a/lib/open_project/plugins/acts_as_op_engine.rb b/lib/open_project/plugins/acts_as_op_engine.rb index d2db6124a6..5dbae38a84 100644 --- a/lib/open_project/plugins/acts_as_op_engine.rb +++ b/lib/open_project/plugins/acts_as_op_engine.rb @@ -206,8 +206,8 @@ module OpenProject::Plugins ## # Add a tab entry to an extensible tab - def add_tab_entry(key, name:, partial:, label:, only_if: nil) - ::OpenProject::Ui::ExtensibleTabs.add(key, name: name, partial: partial, label: label, only_if: only_if) + def add_tab_entry(key, name:, partial:, path:, label:, only_if: nil) + ::OpenProject::Ui::ExtensibleTabs.add(key, name: name, partial: partial, path: path, label: label, only_if: only_if) end def add_api_path(path_name, &block) diff --git a/lib/open_project/ui/extensible_tabs.rb b/lib/open_project/ui/extensible_tabs.rb index 6b6ee7eafc..03a44a8f48 100644 --- a/lib/open_project/ui/extensible_tabs.rb +++ b/lib/open_project/ui/extensible_tabs.rb @@ -55,9 +55,24 @@ module OpenProject def core_user_tabs [ - { name: 'general', partial: 'users/general', label: :label_general }, - { name: 'memberships', partial: 'users/memberships', label: :label_project_plural }, - { name: 'groups', partial: 'users/groups', label: :label_group_plural, if: ->(*) { Group.all.any? } } + { + name: 'general', + partial: 'users/general', + path: ->(params) { tab_edit_user_path(params[:user], tab: :general) }, + label: :label_general + }, + { + name: 'memberships', + partial: 'users/memberships', + path: ->(params) { tab_edit_user_path(params[:user], tab: :memberships) }, + label: :label_project_plural + }, + { + name: 'groups', + partial: 'users/groups', + path: ->(params) { tab_edit_user_path(params[:user], tab: :groups) }, + label: :label_group_plural, if: ->(*) { Group.all.any? } + } ] end end diff --git a/modules/avatars/lib/open_project/avatars/engine.rb b/modules/avatars/lib/open_project/avatars/engine.rb index c14cc124f2..dee168b207 100644 --- a/modules/avatars/lib/open_project/avatars/engine.rb +++ b/modules/avatars/lib/open_project/avatars/engine.rb @@ -53,6 +53,7 @@ module OpenProject::Avatars add_tab_entry :user, name: 'avatar', partial: 'avatars/users/avatar_tab', + path: ->(params) { tab_edit_user_path(params[:user], tab: :avatar) }, label: :label_avatar, only_if: ->(*) { ::OpenProject::Avatars::AvatarManager.avatars_enabled? } diff --git a/modules/backlogs/config/locales/crowdin/ar.yml b/modules/backlogs/config/locales/crowdin/ar.yml index e4c7d5dd93..4660688cad 100644 --- a/modules/backlogs/config/locales/crowdin/ar.yml +++ b/modules/backlogs/config/locales/crowdin/ar.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ar: diff --git a/modules/backlogs/config/locales/crowdin/bg.yml b/modules/backlogs/config/locales/crowdin/bg.yml index 735d895edd..1508a942cf 100644 --- a/modules/backlogs/config/locales/crowdin/bg.yml +++ b/modules/backlogs/config/locales/crowdin/bg.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- bg: diff --git a/modules/backlogs/config/locales/crowdin/ca.yml b/modules/backlogs/config/locales/crowdin/ca.yml index 71b9e5a38c..dd33d04682 100644 --- a/modules/backlogs/config/locales/crowdin/ca.yml +++ b/modules/backlogs/config/locales/crowdin/ca.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ca: diff --git a/modules/backlogs/config/locales/crowdin/cs.yml b/modules/backlogs/config/locales/crowdin/cs.yml index 69567b27ee..147a8a7c12 100644 --- a/modules/backlogs/config/locales/crowdin/cs.yml +++ b/modules/backlogs/config/locales/crowdin/cs.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- cs: diff --git a/modules/backlogs/config/locales/crowdin/da.yml b/modules/backlogs/config/locales/crowdin/da.yml index a6da9a9fca..8230ddeba9 100644 --- a/modules/backlogs/config/locales/crowdin/da.yml +++ b/modules/backlogs/config/locales/crowdin/da.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- da: diff --git a/modules/backlogs/config/locales/crowdin/de.yml b/modules/backlogs/config/locales/crowdin/de.yml index abdac61810..39c04e6abd 100644 --- a/modules/backlogs/config/locales/crowdin/de.yml +++ b/modules/backlogs/config/locales/crowdin/de.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- de: diff --git a/modules/backlogs/config/locales/crowdin/el.yml b/modules/backlogs/config/locales/crowdin/el.yml index 8742d57dcc..a2162a57ae 100644 --- a/modules/backlogs/config/locales/crowdin/el.yml +++ b/modules/backlogs/config/locales/crowdin/el.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- el: @@ -32,8 +26,8 @@ el: work_package: position: "Θέση" remaining_hours: "Υπολειπόμενες Ώρες" - remaining_time: "Υπολειπόμενες Ώρες" - story_points: "Story Points" + remaining_time: "Υπολειπόμενες ώρες" + story_points: "Πόντοι Ιστορίας" backlogs_work_package_type: "Τύπος backlog" errors: models: @@ -54,9 +48,9 @@ el: fixed_version_id: task_version_must_be_the_same_as_story_version: "πρέπει να είναι το ίδιο με την έκδοση ιστορίας του γονέα." parent_id: - parent_child_relationship_across_projects: "δεν είναι έγκυρο επειδή το πακέτο εργασίας '%{work_package_name}' είναι ένα καθήκον backlog επομένως δεν μπορεί να έχει γονέα εκτός του τρέχοντος έργου." + parent_child_relationship_across_projects: "δεν είναι έγκυρο επειδή το πακέτο εργασίας '%{work_package_name}' είναι μια εργασία backlog επομένως δεν μπορεί να έχει γονέα εκτός του τρέχοντος έργου." backlogs: - add_new_story: "New Story" + add_new_story: "Νέα Ιστορία" any: "οποιoδήποτε" backlog_settings: "Ρυθμίσεις backlog" burndown_graph: "Γράφημα Burndown" @@ -65,7 +59,7 @@ el: close: "Κλείσιμο" column_width: "Πλάτος στήλης:" date: "Ημέρα" - definition_of_done: "Definition of Done" + definition_of_done: "Ορισμός των Ολοκληρωμένων" generating_chart: "Δημιουργία γραφήματος..." hours: "Ώρες" impediment: "Εμπόδιο" @@ -73,39 +67,39 @@ el: work_package_is_closed: "Το πακέτο εργασίας ολοκληρώνεται, όταν" label_is_done_status: "Η κατάσταση %{status_name} σημαίνει ολοκληρωμένη" no_burndown_data: "Δεν υπάρχουν διαθέσιμα δεδομένα burndown. Είναι απαραίτητο να έχετε ορίσει ημερομηνίες έναρξης και λήξης για το sprint." - points: "Σημεία" - positions_could_not_be_rebuilt: "Οι θέσεις δεν ήταν δυνατό να ξανακτιστούν." + points: "Πόντοι" + positions_could_not_be_rebuilt: "Οι θέσεις δεν ήταν δυνατό να ανοικοδομηθούν." positions_rebuilt_successfully: "Οι θέσεις ξανακτίστηκαν επιτυχώς." properties: "Ιδιότητες" rebuild: "Ανοικοδόμηση" - rebuild_positions: "Rebuild positions" - remaining_hours: "Υπολειπόμενες Ώρες" + rebuild_positions: "Ανοικοδόμηση θέσεων" + remaining_hours: "Υπολειπόμενες ώρες" remaining_hours_ideal: "Υπολοιπόμενες ώρες (ιδανικά)" show_burndown_chart: "Διάγραμμα Burndown" story: "Ιστορία" - story_points: "Story Points" - story_points_ideal: "Story Points (ideal)" - task: "Καθήκον" - task_color: "Χρώμα καθήκοντος" + story_points: "Πόντοι Ιστορίας" + story_points_ideal: "Πόντοι Ιστορίας (ιδανικά)" + task: "Εργασία" + task_color: "Χρώμα εργασίας" unassigned: "Μη Αναθετημένο" - x_more: "%{count} περισσότερα..." + x_more: "%{count} ακόμα..." backlogs_active: "ενεργό" backlogs_any: "οποιoδήποτε" backlogs_card_specification: "Μέγεθος ετικέτας για εκτύπωση καρτών" - backlogs_inactive: "Project shows no activity" + backlogs_inactive: "Το έργο δεν φαίνεται να έχει δραστηριότητα" backlogs_points_burn_direction: "Points burn up/down" backlogs_product_backlog: "Backlog προϊόντος" backlogs_product_backlog_is_empty: "Το backlog του προϊόντος είναι άδειο" - backlogs_product_backlog_unsized: "The top of the product backlog has unsized stories" - backlogs_sizing_inconsistent: "Story sizes vary against their estimates" + backlogs_product_backlog_unsized: "Η κορυφή του backlog προϊόντων έχει μη εκτιμημένα μεγέθη ιστοριών" + backlogs_sizing_inconsistent: "Τα μεγέθη ιστοριών ποικίλλουν συγκριτικά με τις εκτιμήσεις τους" backlogs_sprint_notes_missing: "Closed sprints without retrospective/review notes" backlogs_sprint_unestimated: "Closed or active sprints with unestimated stories" backlogs_sprint_unsized: "Project has stories on active or recently closed sprints that were not sized" backlogs_sprints: "Sprints" backlogs_story: "Ιστορία" - backlogs_story_type: "Story types" - backlogs_task: "Καθήκον" - backlogs_task_type: "Task type" + backlogs_story_type: "Τύποι ιστορίας" + backlogs_task: "Εργασία" + backlogs_task_type: "Τύπος εργασίας" backlogs_velocity_missing: "Δεν ήταν δυνατός ο υπολογισμός ταχύτητας για αυτό το έργο" backlogs_velocity_varies: "Η ταχύτητα διαφέρει σημαντικά σε σχέση με τα sprints" backlogs_wiki_template: "Πρότυπο για τη σελίδα wiki του sprint" @@ -113,8 +107,8 @@ el: backlogs_empty_action_text: "Για να ξεκινήσετε με τα backlogs, δημιουργήστε μια καινούργια έκδοση και αναθέστε την σε μια στήλη backlog." button_edit_wiki: "Επεξεργασία σελίδας wiki" error_intro_plural: "Παρουσιάστηκαν τα ακόλουθα σφάλματα:" - error_intro_singular: "The following error was encountered:" - error_outro: "Please correct the above errors before submitting again." + error_intro_singular: "Συναντήθηκε το ακόλουθο σφάλμα:" + error_outro: "Παρακαλούμε διορθώστε τα παραπάνω σφάλματα πριν το ξαναυποβάλλετε." event_sprint_description: "%{summary}: %{url}\n%{description}" event_sprint_summary: "%{project}: %{summary}" ideal: "ιδανικός" @@ -122,7 +116,7 @@ el: label_back_to_project: "Επιστροφή στη σελίδα έργου" label_backlog: "Backlog" label_backlogs: "Backlogs" - label_backlogs_unconfigured: "You have not configured Backlogs yet. Please go to %{administration} > %{plugins}, then click on the %{configure} link for this plugin. Once you have set the fields, come back to this page to start using the tool." + label_backlogs_unconfigured: "Δεν έχετε διαμορφώσει τα Backlogs ακόμη. Παρακαλούμε πηγαίνετε στο %{administration} > %{plugins}, έπειτα κάντε κλικ στον σύνδεσμο %{configure} για αυτό το πρόσθετο. Μόλις έχετε ορίσει τα πεδία, επιστρέψτε σε αυτή την σελίδα για να αρχίσετε να χρησιμοποιείτε το εργαλείο." label_blocks_ids: "Ταυτότητες μπλοκαρισμένων πακέτων εργασίας" label_burndown: "Burndown" label_column_in_backlog: "Στήλη στο backlog" @@ -130,29 +124,29 @@ el: label_work_package_hierarchy: "Ιεραρχία πακέτου εργασίας" label_master_backlog: "Κύριο Backlog" label_not_prioritized: "δεν έχει προτεραιότητα" - label_points: "points" + label_points: "πόντοι" label_points_burn_down: "Κάτω" label_points_burn_up: "Πάνω" label_product_backlog: "backlog προϊόντος" label_select_all: "Επιλογή όλων" label_sprint_backlog: "sprint backlog" label_sprint_cards: "Εξαγωγή καρτών" - label_sprint_impediments: "Sprint Impediments" + label_sprint_impediments: "Εμπόδια Sprint" label_sprint_name: "Sprint \"%{name}\"" - label_sprint_velocity: "Velocity %{velocity}, based on %{sprints} sprints with an average %{days} days" - label_stories: "Stories" - label_stories_tasks: "Stories/Tasks" - label_task_board: "Πίνακας καθηκόντων" + label_sprint_velocity: "Ταχύτητα %{velocity}, με βάση τα %{sprints} sprints με μέσο όρο %{days} ημέρες" + label_stories: "Ιστορίες" + label_stories_tasks: "Ιστορίες/Εργασίες" + label_task_board: "Πίνακας εργασιών" label_version_setting: "Εκδόσεις" label_version: 'Έκδοση' label_webcal: "Τροφοδοσία Webcal" label_wiki: "Wiki" - permission_view_master_backlog: "View master backlog" - permission_view_taskboards: "View taskboards" + permission_view_master_backlog: "Εμφάνιση του κύριου backlog" + permission_view_taskboards: "Εμφάνιση πινάκων εργασίας" permission_update_sprints: "Ενημέρωση των sprints" points_accepted: "points accepted" - points_committed: "points committed" - points_resolved: "points resolved" + points_committed: "πόντοι που δεσμεύτηκαν" + points_resolved: "πόντοι που επιλύθηκαν" points_to_accept: "points not accepted" points_to_resolve: "points not resolved" project_module_backlogs: "Backlogs" @@ -160,13 +154,13 @@ el: rb_label_copy_tasks_all: "Όλα" rb_label_copy_tasks_none: "Κανένα" rb_label_copy_tasks_open: "Ανοιχτό" - rb_label_link_to_original: "Include link to original story" + rb_label_link_to_original: "Συμπερίληψη συνδέσμου για την αρχική ιστορία" remaining_hours: "υπολειπόμενες ώρες" required_burn_rate_hours: "required burn rate (hours)" required_burn_rate_points: "required burn rate (points)" todo_work_package_description: "%{summary}: %{url}\n%{description}" todo_work_package_summary: "%{type}: %{summary}" - version_settings_display_label: "Column in backlog" + version_settings_display_label: "Στήλη στο backlog" version_settings_display_option_left: "αριστερά" version_settings_display_option_none: "κανένα" version_settings_display_option_right: "δεξιά" diff --git a/modules/backlogs/config/locales/crowdin/es.yml b/modules/backlogs/config/locales/crowdin/es.yml index 079122be2e..d10dd35b3e 100644 --- a/modules/backlogs/config/locales/crowdin/es.yml +++ b/modules/backlogs/config/locales/crowdin/es.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- es: diff --git a/modules/backlogs/config/locales/crowdin/fi.yml b/modules/backlogs/config/locales/crowdin/fi.yml index d584c17e90..798bf12264 100644 --- a/modules/backlogs/config/locales/crowdin/fi.yml +++ b/modules/backlogs/config/locales/crowdin/fi.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fi: diff --git a/modules/backlogs/config/locales/crowdin/fil.yml b/modules/backlogs/config/locales/crowdin/fil.yml index a02491fb8a..549db3ed01 100644 --- a/modules/backlogs/config/locales/crowdin/fil.yml +++ b/modules/backlogs/config/locales/crowdin/fil.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fil: diff --git a/modules/backlogs/config/locales/crowdin/fr.yml b/modules/backlogs/config/locales/crowdin/fr.yml index fddb8e3b7f..bafef320a1 100644 --- a/modules/backlogs/config/locales/crowdin/fr.yml +++ b/modules/backlogs/config/locales/crowdin/fr.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fr: diff --git a/modules/backlogs/config/locales/crowdin/hr.yml b/modules/backlogs/config/locales/crowdin/hr.yml index 733e51d891..88e6a76296 100644 --- a/modules/backlogs/config/locales/crowdin/hr.yml +++ b/modules/backlogs/config/locales/crowdin/hr.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- hr: diff --git a/modules/backlogs/config/locales/crowdin/hu.yml b/modules/backlogs/config/locales/crowdin/hu.yml index 88d1ace545..348af9ec1f 100644 --- a/modules/backlogs/config/locales/crowdin/hu.yml +++ b/modules/backlogs/config/locales/crowdin/hu.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- hu: diff --git a/modules/backlogs/config/locales/crowdin/id.yml b/modules/backlogs/config/locales/crowdin/id.yml index 758d6f7c3e..a27d2af75e 100644 --- a/modules/backlogs/config/locales/crowdin/id.yml +++ b/modules/backlogs/config/locales/crowdin/id.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- id: diff --git a/modules/backlogs/config/locales/crowdin/it.yml b/modules/backlogs/config/locales/crowdin/it.yml index 8344efc849..d1e46a6e0c 100644 --- a/modules/backlogs/config/locales/crowdin/it.yml +++ b/modules/backlogs/config/locales/crowdin/it.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- it: diff --git a/modules/backlogs/config/locales/crowdin/ja.yml b/modules/backlogs/config/locales/crowdin/ja.yml index 50a5fe1eac..858e187513 100644 --- a/modules/backlogs/config/locales/crowdin/ja.yml +++ b/modules/backlogs/config/locales/crowdin/ja.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ja: diff --git a/modules/backlogs/config/locales/crowdin/js-ar.yml b/modules/backlogs/config/locales/crowdin/js-ar.yml index 3b2a7304b2..3b4ccf3fb9 100644 --- a/modules/backlogs/config/locales/crowdin/js-ar.yml +++ b/modules/backlogs/config/locales/crowdin/js-ar.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ar: js: diff --git a/modules/backlogs/config/locales/crowdin/js-bg.yml b/modules/backlogs/config/locales/crowdin/js-bg.yml index f0e252f5d3..70238ba055 100644 --- a/modules/backlogs/config/locales/crowdin/js-bg.yml +++ b/modules/backlogs/config/locales/crowdin/js-bg.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ bg: js: diff --git a/modules/backlogs/config/locales/crowdin/js-ca.yml b/modules/backlogs/config/locales/crowdin/js-ca.yml index 277d5449b8..10094910ec 100644 --- a/modules/backlogs/config/locales/crowdin/js-ca.yml +++ b/modules/backlogs/config/locales/crowdin/js-ca.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ca: js: diff --git a/modules/backlogs/config/locales/crowdin/js-cs.yml b/modules/backlogs/config/locales/crowdin/js-cs.yml index 7f7697a989..6f4f2c3b38 100644 --- a/modules/backlogs/config/locales/crowdin/js-cs.yml +++ b/modules/backlogs/config/locales/crowdin/js-cs.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ cs: js: diff --git a/modules/backlogs/config/locales/crowdin/js-da.yml b/modules/backlogs/config/locales/crowdin/js-da.yml index 7df9e1353b..843de3b49a 100644 --- a/modules/backlogs/config/locales/crowdin/js-da.yml +++ b/modules/backlogs/config/locales/crowdin/js-da.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ da: js: diff --git a/modules/backlogs/config/locales/crowdin/js-de.yml b/modules/backlogs/config/locales/crowdin/js-de.yml index 7e481c7c80..c7a18b4e08 100644 --- a/modules/backlogs/config/locales/crowdin/js-de.yml +++ b/modules/backlogs/config/locales/crowdin/js-de.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ de: js: diff --git a/modules/backlogs/config/locales/crowdin/js-el.yml b/modules/backlogs/config/locales/crowdin/js-el.yml index 3cbe7f6cbb..7f28b7e61e 100644 --- a/modules/backlogs/config/locales/crowdin/js-el.yml +++ b/modules/backlogs/config/locales/crowdin/js-el.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,11 +17,11 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ el: js: work_packages: properties: - storyPoints: "Story Points" + storyPoints: "Πόντοι Ιστορίας" remainingTime: "Υπολειπόμενες Ώρες" diff --git a/modules/backlogs/config/locales/crowdin/js-es.yml b/modules/backlogs/config/locales/crowdin/js-es.yml index 1045cce421..15b9bd44e9 100644 --- a/modules/backlogs/config/locales/crowdin/js-es.yml +++ b/modules/backlogs/config/locales/crowdin/js-es.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ es: js: diff --git a/modules/backlogs/config/locales/crowdin/js-fi.yml b/modules/backlogs/config/locales/crowdin/js-fi.yml index edd8ef92f9..bd2739c5c3 100644 --- a/modules/backlogs/config/locales/crowdin/js-fi.yml +++ b/modules/backlogs/config/locales/crowdin/js-fi.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fi: js: diff --git a/modules/backlogs/config/locales/crowdin/js-fil.yml b/modules/backlogs/config/locales/crowdin/js-fil.yml index 42cefb4627..f1266414b2 100644 --- a/modules/backlogs/config/locales/crowdin/js-fil.yml +++ b/modules/backlogs/config/locales/crowdin/js-fil.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fil: js: diff --git a/modules/backlogs/config/locales/crowdin/js-fr.yml b/modules/backlogs/config/locales/crowdin/js-fr.yml index 07b15d06b6..0ee21fe83d 100644 --- a/modules/backlogs/config/locales/crowdin/js-fr.yml +++ b/modules/backlogs/config/locales/crowdin/js-fr.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fr: js: diff --git a/modules/backlogs/config/locales/crowdin/js-hr.yml b/modules/backlogs/config/locales/crowdin/js-hr.yml index a0ad76bfe5..7e5cd4c4a8 100644 --- a/modules/backlogs/config/locales/crowdin/js-hr.yml +++ b/modules/backlogs/config/locales/crowdin/js-hr.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hr: js: diff --git a/modules/backlogs/config/locales/crowdin/js-hu.yml b/modules/backlogs/config/locales/crowdin/js-hu.yml index 9a83107fe2..c8aef96877 100644 --- a/modules/backlogs/config/locales/crowdin/js-hu.yml +++ b/modules/backlogs/config/locales/crowdin/js-hu.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hu: js: diff --git a/modules/backlogs/config/locales/crowdin/js-id.yml b/modules/backlogs/config/locales/crowdin/js-id.yml index 06124ecca8..5b7278c060 100644 --- a/modules/backlogs/config/locales/crowdin/js-id.yml +++ b/modules/backlogs/config/locales/crowdin/js-id.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ id: js: diff --git a/modules/backlogs/config/locales/crowdin/js-it.yml b/modules/backlogs/config/locales/crowdin/js-it.yml index cfe6a9afb8..7849b19fe0 100644 --- a/modules/backlogs/config/locales/crowdin/js-it.yml +++ b/modules/backlogs/config/locales/crowdin/js-it.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ it: js: diff --git a/modules/backlogs/config/locales/crowdin/js-ja.yml b/modules/backlogs/config/locales/crowdin/js-ja.yml index f500714f37..b25576edce 100644 --- a/modules/backlogs/config/locales/crowdin/js-ja.yml +++ b/modules/backlogs/config/locales/crowdin/js-ja.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ja: js: diff --git a/modules/backlogs/config/locales/crowdin/js-ko.yml b/modules/backlogs/config/locales/crowdin/js-ko.yml index 7dc3dedc67..b23398499a 100644 --- a/modules/backlogs/config/locales/crowdin/js-ko.yml +++ b/modules/backlogs/config/locales/crowdin/js-ko.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ko: js: diff --git a/modules/backlogs/config/locales/crowdin/js-lt.yml b/modules/backlogs/config/locales/crowdin/js-lt.yml index f68ae78201..6ce5f2c861 100644 --- a/modules/backlogs/config/locales/crowdin/js-lt.yml +++ b/modules/backlogs/config/locales/crowdin/js-lt.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ lt: js: diff --git a/modules/backlogs/config/locales/crowdin/js-nl.yml b/modules/backlogs/config/locales/crowdin/js-nl.yml index 3ed67a1127..f8b1fb16ab 100644 --- a/modules/backlogs/config/locales/crowdin/js-nl.yml +++ b/modules/backlogs/config/locales/crowdin/js-nl.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ nl: js: diff --git a/modules/backlogs/config/locales/crowdin/js-no.yml b/modules/backlogs/config/locales/crowdin/js-no.yml index b696ea5bff..6f9d38ba85 100644 --- a/modules/backlogs/config/locales/crowdin/js-no.yml +++ b/modules/backlogs/config/locales/crowdin/js-no.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ "no": js: diff --git a/modules/backlogs/config/locales/crowdin/js-pl.yml b/modules/backlogs/config/locales/crowdin/js-pl.yml index 5d61a5f743..2b9258d0f4 100644 --- a/modules/backlogs/config/locales/crowdin/js-pl.yml +++ b/modules/backlogs/config/locales/crowdin/js-pl.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pl: js: diff --git a/modules/backlogs/config/locales/crowdin/js-pt-BR.yml b/modules/backlogs/config/locales/crowdin/js-pt-BR.yml index 660e7880a8..349c122ded 100644 --- a/modules/backlogs/config/locales/crowdin/js-pt-BR.yml +++ b/modules/backlogs/config/locales/crowdin/js-pt-BR.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt-BR: js: diff --git a/modules/backlogs/config/locales/crowdin/js-pt.yml b/modules/backlogs/config/locales/crowdin/js-pt.yml index 4a497db730..eff910615f 100644 --- a/modules/backlogs/config/locales/crowdin/js-pt.yml +++ b/modules/backlogs/config/locales/crowdin/js-pt.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt: js: diff --git a/modules/backlogs/config/locales/crowdin/js-ro.yml b/modules/backlogs/config/locales/crowdin/js-ro.yml index 8c0e5b1f44..fa9f0d6921 100644 --- a/modules/backlogs/config/locales/crowdin/js-ro.yml +++ b/modules/backlogs/config/locales/crowdin/js-ro.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ro: js: diff --git a/modules/backlogs/config/locales/crowdin/js-ru.yml b/modules/backlogs/config/locales/crowdin/js-ru.yml index 9f715f479e..b7de1d8556 100644 --- a/modules/backlogs/config/locales/crowdin/js-ru.yml +++ b/modules/backlogs/config/locales/crowdin/js-ru.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ru: js: diff --git a/modules/backlogs/config/locales/crowdin/js-sk.yml b/modules/backlogs/config/locales/crowdin/js-sk.yml index 16832b6625..9a066cdd8b 100644 --- a/modules/backlogs/config/locales/crowdin/js-sk.yml +++ b/modules/backlogs/config/locales/crowdin/js-sk.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sk: js: diff --git a/modules/backlogs/config/locales/crowdin/js-sv.yml b/modules/backlogs/config/locales/crowdin/js-sv.yml index 9e9df1970f..8c491932ed 100644 --- a/modules/backlogs/config/locales/crowdin/js-sv.yml +++ b/modules/backlogs/config/locales/crowdin/js-sv.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sv: js: diff --git a/modules/backlogs/config/locales/crowdin/js-tr.yml b/modules/backlogs/config/locales/crowdin/js-tr.yml index 0bf9f10156..de002df06f 100644 --- a/modules/backlogs/config/locales/crowdin/js-tr.yml +++ b/modules/backlogs/config/locales/crowdin/js-tr.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ tr: js: diff --git a/modules/backlogs/config/locales/crowdin/js-uk.yml b/modules/backlogs/config/locales/crowdin/js-uk.yml index 470376ce62..1c9474969c 100644 --- a/modules/backlogs/config/locales/crowdin/js-uk.yml +++ b/modules/backlogs/config/locales/crowdin/js-uk.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ uk: js: diff --git a/modules/backlogs/config/locales/crowdin/js-vi.yml b/modules/backlogs/config/locales/crowdin/js-vi.yml index 1f42ef554d..addf1dc3eb 100644 --- a/modules/backlogs/config/locales/crowdin/js-vi.yml +++ b/modules/backlogs/config/locales/crowdin/js-vi.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ vi: js: diff --git a/modules/backlogs/config/locales/crowdin/js-zh-CN.yml b/modules/backlogs/config/locales/crowdin/js-zh-CN.yml index a3592baf01..48d9460f62 100644 --- a/modules/backlogs/config/locales/crowdin/js-zh-CN.yml +++ b/modules/backlogs/config/locales/crowdin/js-zh-CN.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-CN: js: diff --git a/modules/backlogs/config/locales/crowdin/js-zh-TW.yml b/modules/backlogs/config/locales/crowdin/js-zh-TW.yml index 617bb93cda..5b618c46e9 100644 --- a/modules/backlogs/config/locales/crowdin/js-zh-TW.yml +++ b/modules/backlogs/config/locales/crowdin/js-zh-TW.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-TW: js: diff --git a/modules/backlogs/config/locales/crowdin/ko.yml b/modules/backlogs/config/locales/crowdin/ko.yml index dced655372..4135945eba 100644 --- a/modules/backlogs/config/locales/crowdin/ko.yml +++ b/modules/backlogs/config/locales/crowdin/ko.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ko: diff --git a/modules/backlogs/config/locales/crowdin/lt.yml b/modules/backlogs/config/locales/crowdin/lt.yml index fd93d5bc99..b8b6b8789c 100644 --- a/modules/backlogs/config/locales/crowdin/lt.yml +++ b/modules/backlogs/config/locales/crowdin/lt.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- lt: diff --git a/modules/backlogs/config/locales/crowdin/nl.yml b/modules/backlogs/config/locales/crowdin/nl.yml index bcb6a2f30e..b4a38132b1 100644 --- a/modules/backlogs/config/locales/crowdin/nl.yml +++ b/modules/backlogs/config/locales/crowdin/nl.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- nl: diff --git a/modules/backlogs/config/locales/crowdin/no.yml b/modules/backlogs/config/locales/crowdin/no.yml index 1f57ebe92a..ab9dfcba48 100644 --- a/modules/backlogs/config/locales/crowdin/no.yml +++ b/modules/backlogs/config/locales/crowdin/no.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- "no": diff --git a/modules/backlogs/config/locales/crowdin/pl.yml b/modules/backlogs/config/locales/crowdin/pl.yml index 03bef37831..74cb303c1d 100644 --- a/modules/backlogs/config/locales/crowdin/pl.yml +++ b/modules/backlogs/config/locales/crowdin/pl.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pl: diff --git a/modules/backlogs/config/locales/crowdin/pt-BR.yml b/modules/backlogs/config/locales/crowdin/pt-BR.yml index e54c3fad76..af05e40098 100644 --- a/modules/backlogs/config/locales/crowdin/pt-BR.yml +++ b/modules/backlogs/config/locales/crowdin/pt-BR.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pt-BR: diff --git a/modules/backlogs/config/locales/crowdin/pt.yml b/modules/backlogs/config/locales/crowdin/pt.yml index bcfb2b00ba..89d3051a45 100644 --- a/modules/backlogs/config/locales/crowdin/pt.yml +++ b/modules/backlogs/config/locales/crowdin/pt.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pt: diff --git a/modules/backlogs/config/locales/crowdin/ro.yml b/modules/backlogs/config/locales/crowdin/ro.yml index 74657b1033..c5392b7b4a 100644 --- a/modules/backlogs/config/locales/crowdin/ro.yml +++ b/modules/backlogs/config/locales/crowdin/ro.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ro: diff --git a/modules/backlogs/config/locales/crowdin/ru.yml b/modules/backlogs/config/locales/crowdin/ru.yml index 1605cda0f7..4c473b49cd 100644 --- a/modules/backlogs/config/locales/crowdin/ru.yml +++ b/modules/backlogs/config/locales/crowdin/ru.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ru: diff --git a/modules/backlogs/config/locales/crowdin/sk.yml b/modules/backlogs/config/locales/crowdin/sk.yml index 5dd1a36e1f..452d458d0c 100644 --- a/modules/backlogs/config/locales/crowdin/sk.yml +++ b/modules/backlogs/config/locales/crowdin/sk.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- sk: diff --git a/modules/backlogs/config/locales/crowdin/sv.yml b/modules/backlogs/config/locales/crowdin/sv.yml index a6264d55cc..e2e68f82d3 100644 --- a/modules/backlogs/config/locales/crowdin/sv.yml +++ b/modules/backlogs/config/locales/crowdin/sv.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- sv: diff --git a/modules/backlogs/config/locales/crowdin/tr.yml b/modules/backlogs/config/locales/crowdin/tr.yml index 7ad1a754cc..6285bfe25f 100644 --- a/modules/backlogs/config/locales/crowdin/tr.yml +++ b/modules/backlogs/config/locales/crowdin/tr.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- tr: diff --git a/modules/backlogs/config/locales/crowdin/uk.yml b/modules/backlogs/config/locales/crowdin/uk.yml index 6f87d9ff17..18dadf76e3 100644 --- a/modules/backlogs/config/locales/crowdin/uk.yml +++ b/modules/backlogs/config/locales/crowdin/uk.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- uk: diff --git a/modules/backlogs/config/locales/crowdin/vi.yml b/modules/backlogs/config/locales/crowdin/vi.yml index bf98b002e5..50f339952d 100644 --- a/modules/backlogs/config/locales/crowdin/vi.yml +++ b/modules/backlogs/config/locales/crowdin/vi.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- vi: diff --git a/modules/backlogs/config/locales/crowdin/zh-CN.yml b/modules/backlogs/config/locales/crowdin/zh-CN.yml index 16de0f8216..c1a44ad336 100644 --- a/modules/backlogs/config/locales/crowdin/zh-CN.yml +++ b/modules/backlogs/config/locales/crowdin/zh-CN.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- zh-CN: diff --git a/modules/backlogs/config/locales/crowdin/zh-TW.yml b/modules/backlogs/config/locales/crowdin/zh-TW.yml index 13cf9d298f..2f966edac6 100644 --- a/modules/backlogs/config/locales/crowdin/zh-TW.yml +++ b/modules/backlogs/config/locales/crowdin/zh-TW.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- zh-TW: diff --git a/modules/bcf/app/contracts/bcf/viewpoints/create_contract.rb b/modules/bcf/app/contracts/bcf/viewpoints/create_contract.rb index 3fa259494e..21c21a7ceb 100644 --- a/modules/bcf/app/contracts/bcf/viewpoints/create_contract.rb +++ b/modules/bcf/app/contracts/bcf/viewpoints/create_contract.rb @@ -131,7 +131,7 @@ module Bcf::Viewpoints if ocjson.keys != ORTHOGONAL_CAMERA_PROPERTIES || ocjson.except('view_to_world_scale').any? { |_, direction| invalid_direction?(direction) } || - !ocjson['view_to_world_scale'].is_a?(Float) + !ocjson['view_to_world_scale'].is_a?(Numeric) errors.add(:json_viewpoint, :invalid_orthogonal_camera) end end @@ -141,7 +141,7 @@ module Bcf::Viewpoints if pcjson.keys != PERSPECTIVE_CAMERA_PROPERTIES || pcjson.except('field_of_view').any? { |_, direction| invalid_direction?(direction) } || - !pcjson['field_of_view'].is_a?(Float) + !pcjson['field_of_view'].is_a?(Numeric) errors.add(:json_viewpoint, :invalid_perspective_camera) end end @@ -246,7 +246,7 @@ module Bcf::Viewpoints def invalid_direction?(direction) !direction.is_a?(Hash) || direction.keys != WHITELISTED_DIMENSIONS || - direction.values.any? { |v| !v.is_a? Float } + direction.values.any? { |v| !v.is_a? Numeric } end alias_method :invalid_point?, :invalid_direction? diff --git a/modules/bcf/config/locales/crowdin/de.yml b/modules/bcf/config/locales/crowdin/de.yml index 0743e73630..9e590e425f 100644 --- a/modules/bcf/config/locales/crowdin/de.yml +++ b/modules/bcf/config/locales/crowdin/de.yml @@ -63,21 +63,21 @@ de: permission_manage_bcf: "BCF-Fälle importieren und verwalten" oauth: scopes: - bcf_v2_1: "Full access to the BCF v2.1 API" - bcf_v2_1_text: "Application will receive full read & write access to the OpenProject BCF API v2.1 to perform actions on your behalf." + bcf_v2_1: "Voller Zugriff auf die BCF v2.1 API" + bcf_v2_1_text: "Die Anwendung erhält vollen Lese- und Schreibzugriff auf die OpenProject-API, um Aktionen in Ihrem Namen durchzuführen." activerecord: errors: models: bcf/viewpoint: - bitmaps_not_writable: "bitmaps is not writable as it is not yet implemented." - index_not_integer: "index is not an integer." - invalid_clipping_planes: "clipping_planes is invalid." - invalid_components: "components is invalid." - invalid_lines: "lines is invalid." - invalid_orthogonal_camera: "orthogonal_camera is invalid." - invalid_perspective_camera: "perspective_camera is invalid." - mismatching_guid: "The guid in the json_viewpoint does not match the model's guid." - no_json: "Is not a well structured json." - snapshot_type_unsupported: "snapshot_type needs to be either 'png' or 'jpg'." - snapshot_data_blank: "snapshot_data needs to be provided." - unsupported_key: "An unsupported json property is included." + bitmaps_not_writable: "bitmaps ist noch nicht schreibbar, da es noch nicht implementiert wurde." + index_not_integer: "index ist keine natürliche Zahl." + invalid_clipping_planes: "clipping_planes ist ungültig." + invalid_components: "-Komponenten sind ungültig." + invalid_lines: "linien sind ungültig." + invalid_orthogonal_camera: "orthogonal_camera ist ungültig." + invalid_perspective_camera: "perspective_camera ist ungültig." + mismatching_guid: "Die GUID im json_viewpoint stimmt nicht mit der GUID des Models überein." + no_json: "Ist kein gut strukturiertes JSON." + snapshot_type_unsupported: "snapshot_type muss entweder 'png' oder 'jpg' sein." + snapshot_data_blank: "snapshot_data muss angegeben werden." + unsupported_key: "Eine nicht unterstützte JSON-Eigenschaft ist enthalten." diff --git a/modules/bcf/config/locales/crowdin/el.yml b/modules/bcf/config/locales/crowdin/el.yml index 7d195cde9d..9d80a4faa9 100644 --- a/modules/bcf/config/locales/crowdin/el.yml +++ b/modules/bcf/config/locales/crowdin/el.yml @@ -20,37 +20,37 @@ el: export: 'Εξαγωγή' import_update_comment: '(Ενημερώθηκε στην εισαγωγή BCF)' import_failed: 'Δεν είναι δυνατή η εισαγωγή του BCF αρχείου: %{error}' - import_successful: 'Imported %{count} BCF issues' + import_successful: 'Εισήχθησαν %{count} ζητήματα BCF' import_canceled: 'η εισαγωγή BCF-XML ακυρώθηκε.' type_not_active: "Ο τύπος του ζητήματος δεν είναι ενεργοποιημένος για αυτό το έργο." import: - num_issues_found: '%{x_bcf_issues} are contained in the BCF-XML file, their details are listed below.' + num_issues_found: '%{x_bcf_issues} περιέχονται στο αρχείο BCF-XML, οι λεπτομέρειες τους παρατίθενται παρακάτω.' button_prepare: 'Προετοιμασία εισαγωγής' button_perform_import: 'Επιβεβαιώση εισαγωγής' button_proceed: 'Συνέχεια' button_back_to_list: 'Επιστροφή στη λίστα' - no_permission_to_add_members: 'You do not have sufficient permissions to add them as members to the project.' - contact_project_admin: 'Contact your project admin to add them as members and start this import again.' - continue_anyways: 'Do you want to proceed and finish the import anyways?' + no_permission_to_add_members: 'Δεν έχετε επαρκή δικαιώματα για να τους προσθέσετε ως μέλη αυτού του έργου.' + contact_project_admin: 'Επικοινωνήστε με τον διαχειριστή έργου σας για να τους προσθέσετε ως μέλη και να επανεκκινήσετε την εισαγωγή.' + continue_anyways: 'Θέλετε να προχωρήσετε και να ολοκληρώσετε την εισαγωγή ανεξαρτήτως;' description: "Provide a BCF-XML v2.1 file to import into this project. You can examine its contents before performing the import." - invalid_types_found: 'Invalid topic type names found' + invalid_types_found: 'Βρέθηκαν μη έγκυρα ονόματα τύπου θέματος' invalid_statuses_found: 'Βρέθηκαν μη έγκυρα ονόματα κατάστασης' - invalid_priorities_found: 'Invalid priority names found' - invalid_emails_found: 'Invalid email addresses found' - unknown_emails_found: 'Unknown email addresses found' + invalid_priorities_found: 'Βρέθηκαν μη έγκυρα ονόματα προτεραιότητας' + invalid_emails_found: 'Βρέθηκαν μη έγκυρες διευθύνσεις email' + unknown_emails_found: 'Βρέθηκαν άγνωστες διευθύνσεις email' unknown_property: 'Άγνωστη ιδιότητα' - non_members_found: 'Non project members found' - import_types_as: 'Set all these types to' - import_statuses_as: 'Set all these statuses to' - import_priorities_as: 'Set all these priorities to' - invite_as_members_with_role: 'Invite them as members to the project "%{project}" with role' - add_as_members_with_role: 'Add them as members to the project "%{project}" with role' + non_members_found: 'Βρέθηκαν μέλη που δεν ανήκουν στο έργο' + import_types_as: 'Ορίστε όλους αυτούς τους τύπους σε' + import_statuses_as: 'Ορίστε όλες αυτές τις καταστάσεις σε' + import_priorities_as: 'Ορίστε όλες αυτές τις προτεραιότητες σε' + invite_as_members_with_role: 'Προσκαλέστε τους ως μέλη στο έργο "%{project}" με τον ρόλο' + add_as_members_with_role: 'Προσθέστε τους ως μέλη στο έργο "%{project}" με τον ρόλο' no_type_provided: 'Δεν δόθηκε κανένας τύπος' no_status_provided: 'Δεν δόθηκε καμία κατάσταση' no_priority_provided: 'Δεν δόθηκε καμιά προτεραιότητα' - perform_description: "Do you want to import or update the issues listed above?" - replace_with_system_user: 'Replace them with "System" user' - import_as_system_user: 'Import them as "System" user.' + perform_description: "Θέλετε να εισάγετε ή να ενημερώσετε τα ζητήματα που παρατίθενται παραπάνω;" + replace_with_system_user: 'Αντικατάσταση τους με τον χρήστη "Συστήματος"' + import_as_system_user: 'Εισαγωγή ως χρήστης "Συστήματος".' what_to_do: "Τι θέλετε να κάνετε;" work_package_has_newer_changes: "Outdated! This topic was not updated as the latest changes on the server were newer than the \"ModifiedDate\" of the imported topic. However, comments to the topic were imported." export: diff --git a/modules/bcf/lib/open_project/bcf/bcf_json/viewpoint_reader.rb b/modules/bcf/lib/open_project/bcf/bcf_json/viewpoint_reader.rb index 76f32d0ea3..12ff9d252e 100644 --- a/modules/bcf/lib/open_project/bcf/bcf_json/viewpoint_reader.rb +++ b/modules/bcf/lib/open_project/bcf/bcf_json/viewpoint_reader.rb @@ -1,3 +1,5 @@ +require 'bigdecimal' + module OpenProject::Bcf module BcfJson class ViewpointReader @@ -84,9 +86,9 @@ module OpenProject::Bcf hash[key].transform_values! do |v| if v.is_a?(Hash) - v.transform_values!(&:to_f) + v.transform_values! { |val| to_numeric(val) } else - v.to_f + to_numeric(v) end end end @@ -95,7 +97,7 @@ module OpenProject::Bcf return unless hash['lines'] hash['lines'] = hash['lines']['line'].map! do |line| - line.deep_transform_values!(&:to_f) + line.deep_transform_values! { |val| to_numeric(val) } end end @@ -103,7 +105,7 @@ module OpenProject::Bcf return unless hash['clipping_planes'] hash['clipping_planes'] = hash['clipping_planes']['clipping_plane'].map! do |plane| - plane.deep_transform_values!(&:to_f) + plane.deep_transform_values! { |val| to_numeric(val) } end end @@ -118,13 +120,13 @@ module OpenProject::Bcf hash['bitmaps'] = bitmaps.map! do |bitmap| bitmap['bitmap_type'] = bitmap.delete('bitmap').downcase bitmap['bitmap_data'] = bitmap.delete('reference') - bitmap['height'] = bitmap['height'].to_f + bitmap['height'] = to_numeric(bitmap['height']) %w[location normal up].each do |key| next unless bitmap.key?(key) # Transform all coordinates to floats - bitmap[key].transform_values!(&:to_f) + bitmap[key].transform_values! { |val| to_numeric(val) } end bitmap @@ -179,6 +181,15 @@ module OpenProject::Bcf # Remove the old node hash['components'].delete('view_setup_hints') end + + def to_numeric(anything) + num = BigDecimal.new(anything.to_s) + if num.frac == 0 + num.to_i + else + num.to_f + end + end end end end diff --git a/modules/bcf/spec/fixtures/viewpoints/full_viewpoint.bcfv.json b/modules/bcf/spec/fixtures/viewpoints/full_viewpoint.bcfv.json index 226d110421..5d9d3476fb 100644 --- a/modules/bcf/spec/fixtures/viewpoints/full_viewpoint.bcfv.json +++ b/modules/bcf/spec/fixtures/viewpoints/full_viewpoint.bcfv.json @@ -79,69 +79,69 @@ "y": 0.126656300502579, "z": 0.990215996212637 }, - "field_of_view": 60.0 + "field_of_view": 60 }, "lines": [ { "start_point": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "end_point": { - "x": 0.0, - "y": 0.0, - "z": 1.0 + "x": 0, + "y": 0, + "z": 1 } }, { "start_point": { - "x": 0.0, - "y": 0.0, - "z": 1.0 + "x": 0, + "y": 0, + "z": 1 }, "end_point": { - "x": 0.0, - "y": 1.0, - "z": 1.0 + "x": 0, + "y": 1, + "z": 1 } }, { "start_point": { - "x": 0.0, - "y": 1.0, - "z": 1.0 + "x": 0, + "y": 1, + "z": 1 }, "end_point": { - "x": 1.0, - "y": 1.0, - "z": 1.0 + "x": 1, + "y": 1, + "z": 1 } } ], "clipping_planes": [ { "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "direction": { - "x": 0.0, - "y": 0.0, - "z": 1.0 + "x": 0, + "y": 0, + "z": 1 } }, { "location": { - "x": 0.0, - "y": 0.0, - "z": 0.0 + "x": 0, + "y": 0, + "z": 0 }, "direction": { - "x": 0.0, - "y": 1.0, - "z": 0.0 + "x": 0, + "y": 1, + "z": 0 } } ], @@ -157,12 +157,12 @@ "normal": { "x": -0.9999999999999999, "y": 1.253656364893038E-16, - "z": 0.0 + "z": 0 }, "up": { "x": -5.43903050550883E-34, "y": -4.338533794284917E-18, - "z": 1.0 + "z": 1 }, "height": 1666.1814563907683 }, @@ -170,21 +170,21 @@ "bitmap_type": "jpg", "bitmap_data": "3f6ac03e-de8e-4c5e-b3f0-c7bf5f87fe51/bitmaps-e6f5a36a-c60b-4fcc-815f-a1dd939ebc87.jpg", "location": { - "x": 1.0, - "y": 2.0, - "z": 3.0 + "x": 1, + "y": 2, + "z": 3 }, "normal": { - "x": -3.0, + "x": -3, "y": 1.253656364893038E-16, - "z": 0.0 + "z": 0 }, "up": { "x": 30.1234, - "y": -9000.0, - "z": 1.0 + "y": -9000, + "z": 1 }, - "height": 10.0 + "height": 10 } ] } diff --git a/modules/bcf/spec/fixtures/viewpoints/minimal.bcfv.json b/modules/bcf/spec/fixtures/viewpoints/minimal.bcfv.json index de121a4c73..0711338b58 100644 --- a/modules/bcf/spec/fixtures/viewpoints/minimal.bcfv.json +++ b/modules/bcf/spec/fixtures/viewpoints/minimal.bcfv.json @@ -7,15 +7,15 @@ "z": -1234.1234 }, "camera_direction": { - "x": -1.0, - "y": -2.0, - "z": -3.0 + "x": -1, + "y": -2, + "z": -3 }, "camera_up_vector": { "x": 0.223629, "y": 0.209889, "z": 0.951807 }, - "field_of_view": 180.0 + "field_of_view": 180 } } \ No newline at end of file diff --git a/modules/bcf/spec/fixtures/viewpoints/neubau_sc_1.bcfv.json b/modules/bcf/spec/fixtures/viewpoints/neubau_sc_1.bcfv.json index 4aee7f776f..f2053f87fb 100644 --- a/modules/bcf/spec/fixtures/viewpoints/neubau_sc_1.bcfv.json +++ b/modules/bcf/spec/fixtures/viewpoints/neubau_sc_1.bcfv.json @@ -548,6 +548,6 @@ "y": 0.209889, "z": 0.951807 }, - "field_of_view": 60.0 + "field_of_view": 60 } } \ No newline at end of file diff --git a/modules/bcf/spec/requests/api/bcf/v2_1/viewpoints_api_spec.rb b/modules/bcf/spec/requests/api/bcf/v2_1/viewpoints_api_spec.rb index 9f6bd434d8..714ac2de54 100644 --- a/modules/bcf/spec/requests/api/bcf/v2_1/viewpoints_api_spec.rb +++ b/modules/bcf/spec/requests/api/bcf/v2_1/viewpoints_api_spec.rb @@ -61,7 +61,7 @@ describe 'BCF 2.1 viewpoints resource', type: :request, content_type: :json, wit FactoryBot.create(:work_package, project: project) end end - shared_let(:bcf_issue) { FactoryBot.create(:bcf_issue_with_viewpoint, work_package: work_package) } + let(:bcf_issue) { FactoryBot.create(:bcf_issue_with_viewpoint, work_package: work_package) } let(:viewpoint) { bcf_issue.viewpoints.first } let(:viewpoint_json) { viewpoint.json_viewpoint } @@ -140,7 +140,6 @@ describe 'BCF 2.1 viewpoints resource', type: :request, content_type: :json, wit context 'when snapshot present' do before do login_as(current_user) - bcf_issue get path end diff --git a/modules/costs/config/locales/crowdin/ar.yml b/modules/costs/config/locales/crowdin/ar.yml index dc4c60f13f..9d6ded2001 100644 --- a/modules/costs/config/locales/crowdin/ar.yml +++ b/modules/costs/config/locales/crowdin/ar.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ar: diff --git a/modules/costs/config/locales/crowdin/bg.yml b/modules/costs/config/locales/crowdin/bg.yml index f804a2b638..f1650647a7 100644 --- a/modules/costs/config/locales/crowdin/bg.yml +++ b/modules/costs/config/locales/crowdin/bg.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- bg: diff --git a/modules/costs/config/locales/crowdin/ca.yml b/modules/costs/config/locales/crowdin/ca.yml index cad2196ef5..3eb6778df0 100644 --- a/modules/costs/config/locales/crowdin/ca.yml +++ b/modules/costs/config/locales/crowdin/ca.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ca: diff --git a/modules/costs/config/locales/crowdin/cs.yml b/modules/costs/config/locales/crowdin/cs.yml index e184dc5e97..921ddc5481 100644 --- a/modules/costs/config/locales/crowdin/cs.yml +++ b/modules/costs/config/locales/crowdin/cs.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- cs: diff --git a/modules/costs/config/locales/crowdin/da.yml b/modules/costs/config/locales/crowdin/da.yml index d020ca5ac8..e7580a5f29 100644 --- a/modules/costs/config/locales/crowdin/da.yml +++ b/modules/costs/config/locales/crowdin/da.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- da: diff --git a/modules/costs/config/locales/crowdin/de.yml b/modules/costs/config/locales/crowdin/de.yml index 1e3cf6ba47..7049c9d25d 100644 --- a/modules/costs/config/locales/crowdin/de.yml +++ b/modules/costs/config/locales/crowdin/de.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- de: diff --git a/modules/costs/config/locales/crowdin/el.yml b/modules/costs/config/locales/crowdin/el.yml index 4bd0c2e98b..25adae2379 100644 --- a/modules/costs/config/locales/crowdin/el.yml +++ b/modules/costs/config/locales/crowdin/el.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- el: @@ -25,7 +32,7 @@ el: author: "Συγγραφέας" available: "Διαθέσιμο" budget: "Προγραμματισμένο" - budget_ratio: "Spent (ratio)" + budget_ratio: "Δαπανημένα (αναλογία)" created_on: "Δημιουργήθηκε στις" description: "Περιγραφή" fixed_date: "Καθορισμένη ημερομηνία" @@ -36,7 +43,7 @@ el: updated_on: "Τροποποιήθηκε" cost_type: unit: "Όνομα μονάδας" - unit_plural: "Pluralized unit name" + unit_plural: "Πληθυντικός ονόματος μονάδας" work_package: costs_by_type: "Δαπανημένες μονάδες" cost_object_subject: "Τίτλος προϋπολογισμού" @@ -46,143 +53,143 @@ el: spent_costs: "Δαπανημένο κόστος" spent_units: "Δαπανημένες μονάδες" rate: - rate: "Rate" + rate: "Αμοιβή" user: - default_rates: "Default rates" + default_rates: "Προεπιλεγμένη αμοιβή" variable_cost_object: - labor_budget: "Planned labor costs" - material_budget: "Planned unit costs" + labor_budget: "Σχεδιασμένο κόστος εργασίας" + material_budget: "Σχεδιασμένο κόστος μονάδας" models: cost_object: "Προϋπολογισμός" cost_type: one: "Τύπος κόστους" other: "Τύποι κόστους" material_budget_item: "Μονάδα" - rate: "Rate" + rate: "Αμοιβή" errors: models: work_package: is_not_a_valid_target_for_cost_entries: "Το πακέτο εργασίας #%{id} δεν είναι έγκυρος στόχος για ανάθεση των καταχωρήσεων κόστους." nullify_is_not_valid_for_cost_entries: "Οι καταχωρίσεις κόστους δεν μπορούν να ανατεθούν σε ένα έργο." attributes: - budget: "Planned costs" + budget: "Σχεδιασμένο κόστος" comment: "Σχόλιο" cost_object: "Προϋπολογισμός" cost_type: "Τύπος κόστους" - costs: "Costs" - current_rate: "Current rate" + costs: "Κόστος" + current_rate: "Τρέχουσα αμοιβή" hours: "Ώρες" units: "Μονάδες" valid_from: "Έγκυρο από" - button_add_budget_item: "Add planned costs" + button_add_budget_item: "Προσθήκη σχεδιασμένου κόστους" button_add_cost_object: "Προσθήκη προϋπολογισμού" button_add_cost_type: "Προσθέστε τύπο κόστους" - button_add_rate: "Add rate" + button_add_rate: "Πρόσθεση αμοιβής" button_cancel_edit_budget: "Ακύρωση επεξεργασίας προϋπολογισμού" button_cancel_edit_costs: "Ακύρωση επεξεργασίας κόστους" - button_log_costs: "Log unit costs" + button_log_costs: "Καταγραφή κόστους μονάδας" button_log_time: "Καταγραφή χρόνου" caption_booked_on_project: "Booked on project" caption_default: "Προεπιλογή" - caption_default_rate_history_for: "Default rate history for %{user}" + caption_default_rate_history_for: "Προεπιλεγμένο ιστορικό αμοιβής για %{user}" caption_labor: "Εργασία" - caption_labor_costs: "Actual labor costs" - caption_locked_on: "Locked on" - caption_material_costs: "Actual unit costs" + caption_labor_costs: "Πραγματικό κόστος εργασίας" + caption_locked_on: "Κλείδωμα στις" + caption_material_costs: "Πραγματικό κόστος μονάδας" caption_materials: "Μονάδες" - caption_rate_history: "Rate history" - caption_rate_history_for: "Rate history for %{user}" - caption_rate_history_for_project: "Rate history for %{user} in project %{project}" - caption_save_rate: "Save rate" - caption_set_rate: "Set current rate" - caption_show_locked: "Show locked types" + caption_rate_history: "Ιστορικό αμοιβής" + caption_rate_history_for: "Ιστορικό αμοιβής για %{user}" + caption_rate_history_for_project: "Ιστορικό αμοιβής για %{user} στο έργο %{project}" + caption_save_rate: "Αποθηκεύση αμοιβής" + caption_set_rate: "Ορίστε την τρέχουσα αμοιβή" + caption_show_locked: "Εμφάνιση κλειδομένων τύπων" cost_objects_title: "Προϋπολογισμοί" label_cost_type_plural: "Τύποι κόστους" currency_delimiter: "," currency_separator: "." - description_date_for_new_rate: "Date for new rate" + description_date_for_new_rate: "Ημερομηνία για νέα αμοιβή" events: - cost_object: "Budget edited" - group_by_others: "not in any group" - help_click_to_edit: "Click here to edit." - help_currency_format: "Format of displayed currency values. %n is replaced with the currency value, %u ist replaced with the currency unit." - help_override_rate: "Enter a value here to override the default rate." + cost_object: "Ο προϋπολογισμός επεξεργάστηκε" + group_by_others: "δεν είναι σε καμία ομάδα" + help_click_to_edit: "Κάντε κλικ εδώ για επεξεργασία." + help_currency_format: "Μορφοποίηση των νομισματικών τιμών που εμφανίζονται. %n αντικαθίσταται με την τρέχουσα τιμή, %u αντικαθίσταται με την τρέχουσα μονάδα." + help_override_rate: "Εισάγετε μια τιμή εδώ για να αντικαταστήσετε την τρέχουσα αμοιβή." label_between: "μεταξύ" - label_cost_filter_add: "Add cost entry filter" - label_costlog: "Logged unit costs" + label_cost_filter_add: "Προσθήκη φίλτρου καταχώρησης κόστους" + label_costlog: "Καταγεγραμμένο κόστος μονάδας" label_cost_object: "Προϋπολογισμός" - label_cost_object_id: "Budget #%{id}" - label_cost_object_new: "New budget" + label_cost_object_id: "Προϋπολογισμός #%{id}" + label_cost_object_new: "Νέος προϋπολογισμός" label_cost_object_plural: "Προϋπολογισμοί" - label_cost_plural: "Costs" - label_cost_report: "Cost report" - label_cost_type_specific: "Budget #%{id}: %{name}" - label_costs_per_page: "Costs per page" - label_currency: "Currency" - label_currency_format: "Format of currency" - label_current_default_rate: "Current default rate" + label_cost_plural: "Κόστος" + label_cost_report: "Αναφορά κόστους" + label_cost_type_specific: "Προϋπολογισμός#%{id}: %{name}" + label_costs_per_page: "Κόστος ανά σελίδα" + label_currency: "Νόμισμα" + label_currency_format: "Μορφοποίηση του νομίσματος" + label_current_default_rate: "Τρέχουσα προεπιλεγμένη αμοιβή" label_date_on: "σε" - label_deleted_cost_types: "Deleted cost types" - label_locked_cost_types: "Locked cost types" + label_deleted_cost_types: "Διαγραμμένοι τύποι κόστους" + label_locked_cost_types: "Κλειδωμένοι τύποι κόστους" label_deliverable: "Προϋπολογισμός" - label_display_cost_entries: "Display unit costs" - label_display_time_entries: "Display reported hours" - label_display_types: "Display types" + label_display_cost_entries: "Εμφάνιση μονάδων κόστους" + label_display_time_entries: "Εμφάνιση αναφερόμενων ωρών" + label_display_types: "Εμφάνιση τύπων" label_edit: "Επεξεργασία" - label_fixed_cost_object: "Fixed budget" + label_fixed_cost_object: "Σταθερός προϋπολογισμός" label_fixed_date: "Καθορισμένη ημερομηνία" - label_generic_user: "Generic user" + label_generic_user: "Γενικός χρήστης" label_greater_or_equal: ">=" label_group_by: "Ομαδοποίηση κατά" - label_group_by_add: "Add grouping field" - label_hourly_rate: "Hourly rate" - label_include_deleted: "Include deleted" - label_work_package_filter_add: "Add work package filter" + label_group_by_add: "Προσθήκη πεδίου ομαδοποίησης" + label_hourly_rate: "Ωριαία αμοιβή" + label_include_deleted: "Συμπεριλάβετε τα διαγραμμένα" + label_work_package_filter_add: "Προσθήκη φίλτρου πακέτου εργασίας" label_kind: "Τύπος" label_less_or_equal: "<=" - label_log_costs: "Log unit costs" + label_log_costs: "Καταγραφή κόστους μονάδας" label_no: "Όχι" label_option_plural: "Επιλογές" label_overall_costs: "Συνολικό κόστος" - label_rate: "Rate" - label_rate_plural: "Rates" + label_rate: "Αμοιβή" + label_rate_plural: "Αμοιβές" label_status_finished: "Ολοκληρωμένο" - label_units: "Cost units" + label_units: "Μονάδες κόστους" label_user: "Χρήστης" - label_until: "until" + label_until: "μέχρι" label_valid_from: "Έγκυρο από" label_variable_cost_object: "Variable rate based budget" label_view_all_cost_objects: "Προβολή όλων των προϋπολογισμών" label_yes: "Ναι" - notice_cost_object_conflict: "WorkPackages must be of the same project." - notice_no_cost_objects_available: "No budgets available." - notice_something_wrong: "Something went wrong. Please try again." + notice_cost_object_conflict: "Τα Πακέτα Εργασίας πρέπει να είναι από το ίδιο έργο." + notice_no_cost_objects_available: "Δεν υπάρχουν διαθέσιμοι προϋπολογισμοί." + notice_something_wrong: "Κάτι πήγε στραβά. Παρακαλούμε προσπαθήστε ξανά." notice_successful_restore: "Επιτυχής επαναφορά." notice_successful_lock: "Κλειδώθηκε επιτυχώς." - notice_cost_logged_successfully: 'Unit cost logged successfully.' + notice_cost_logged_successfully: 'Η μονάδα κόστους καταγράφηκε επιτυχώς.' permission_edit_cost_entries: "Edit booked unit costs" permission_edit_cost_objects: "Επεξεργασία προϋπολογισμών" permission_edit_own_cost_entries: "Edit own booked unit costs" - permission_edit_hourly_rates: "Edit hourly rates" - permission_edit_own_hourly_rate: "Edit own hourly rates" - permission_edit_rates: "Edit rates" + permission_edit_hourly_rates: "Επεξεργασία ωριαίων αμοιβών" + permission_edit_own_hourly_rate: "Επεξεργασία των δικών μου ωριαίων αμοιβών" + permission_edit_rates: "Επεξεργασία αμοιβών" permission_log_costs: "Book unit costs" permission_log_own_costs: "Book unit costs for oneself" permission_view_cost_entries: "View booked costs" permission_view_cost_objects: "Προβολή προϋπολογισμών" - permission_view_cost_rates: "View cost rates" - permission_view_hourly_rates: "View all hourly rates" + permission_view_cost_rates: "Εμφάνιση κόστους αμοιβών" + permission_view_hourly_rates: "Εμφάνιση όλων των ωριαίων αμοιβών" permission_view_own_cost_entries: "View own booked costs" - permission_view_own_hourly_rate: "View own hourly rate" + permission_view_own_hourly_rate: "Εμφάνιση των δικών μου ωριαίων αμοιβών" permission_view_own_time_entries: "Προβολή του δικού μου χρόνου που δαπανήθηκε" project_module_costs_module: "Προϋπολογισμοί" - text_assign_time_and_cost_entries_to_project: "Assign reported hours and costs to the project" - text_cost_object_change_type_confirmation: "Are you sure? This operation will destroy information of the specific budget type." - text_destroy_cost_entries_question: "%{cost_entries} were reported on the work packages you are about to delete. What do you want to do ?" + text_assign_time_and_cost_entries_to_project: "Ανάθεση αναφερόμενων ωρών και κόστους στο έργο" + text_cost_object_change_type_confirmation: "Είστε βέβαιοι; Αυτή η διαδικασία θα καταστρέψει πληροφορίες για το συγκεκριμένο τύπο προϋπολογισμού." + text_destroy_cost_entries_question: "%{cost_entries} αναφέρθηκαν στα πακέτα εργασίας που πρόκειται να διαγράψετε. Τι θέλετε να κάνετε;" text_destroy_time_and_cost_entries: "Delete reported hours and costs" - text_destroy_time_and_cost_entries_question: "%{hours} hours, %{cost_entries} were reported on the work packages you are about to delete. What do you want to do ?" + text_destroy_time_and_cost_entries_question: "%{hours} ώρες, %{cost_entries} αναφέρθηκαν στα πακέτα εργασίας που πρόκειται να διαγράψετε. Τι θέλετε να κάνετε;" text_reassign_time_and_cost_entries: "Reassign reported hours and costs to this work package:" - text_warning_hidden_elements: "Some entries may have been excluded from the aggregation." + text_warning_hidden_elements: "Μερικές καταχωρήσεις μπορεί να έχουν εξαιρεθεί από την συνάθροιση." week: "εβδομάδα" js: text_are_you_sure: "Είστε σίγουρος/η;" diff --git a/modules/costs/config/locales/crowdin/es.yml b/modules/costs/config/locales/crowdin/es.yml index 76daf30424..ab4879d6e1 100644 --- a/modules/costs/config/locales/crowdin/es.yml +++ b/modules/costs/config/locales/crowdin/es.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- es: diff --git a/modules/costs/config/locales/crowdin/fi.yml b/modules/costs/config/locales/crowdin/fi.yml index 840c9b861e..f851eb0901 100644 --- a/modules/costs/config/locales/crowdin/fi.yml +++ b/modules/costs/config/locales/crowdin/fi.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fi: diff --git a/modules/costs/config/locales/crowdin/fil.yml b/modules/costs/config/locales/crowdin/fil.yml index ce1a82de1e..93a55d4023 100644 --- a/modules/costs/config/locales/crowdin/fil.yml +++ b/modules/costs/config/locales/crowdin/fil.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fil: diff --git a/modules/costs/config/locales/crowdin/fr.yml b/modules/costs/config/locales/crowdin/fr.yml index 5fde6444aa..2323c9da04 100644 --- a/modules/costs/config/locales/crowdin/fr.yml +++ b/modules/costs/config/locales/crowdin/fr.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fr: diff --git a/modules/costs/config/locales/crowdin/hr.yml b/modules/costs/config/locales/crowdin/hr.yml index 1bdc3381ce..efa1a04da7 100644 --- a/modules/costs/config/locales/crowdin/hr.yml +++ b/modules/costs/config/locales/crowdin/hr.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- hr: diff --git a/modules/costs/config/locales/crowdin/hu.yml b/modules/costs/config/locales/crowdin/hu.yml index 2186b9e0be..c4349a021d 100644 --- a/modules/costs/config/locales/crowdin/hu.yml +++ b/modules/costs/config/locales/crowdin/hu.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- hu: diff --git a/modules/costs/config/locales/crowdin/id.yml b/modules/costs/config/locales/crowdin/id.yml index 80f8a4085d..7f291c6681 100644 --- a/modules/costs/config/locales/crowdin/id.yml +++ b/modules/costs/config/locales/crowdin/id.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- id: diff --git a/modules/costs/config/locales/crowdin/it.yml b/modules/costs/config/locales/crowdin/it.yml index eb74c846e2..af58e62065 100644 --- a/modules/costs/config/locales/crowdin/it.yml +++ b/modules/costs/config/locales/crowdin/it.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- it: diff --git a/modules/costs/config/locales/crowdin/ja.yml b/modules/costs/config/locales/crowdin/ja.yml index 3af436a42d..b08603c11d 100644 --- a/modules/costs/config/locales/crowdin/ja.yml +++ b/modules/costs/config/locales/crowdin/ja.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ja: diff --git a/modules/costs/config/locales/crowdin/js-ar.yml b/modules/costs/config/locales/crowdin/js-ar.yml index 980db0e1c9..40de813b03 100644 --- a/modules/costs/config/locales/crowdin/js-ar.yml +++ b/modules/costs/config/locales/crowdin/js-ar.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ar: js: diff --git a/modules/costs/config/locales/crowdin/js-bg.yml b/modules/costs/config/locales/crowdin/js-bg.yml index 7259cc4357..100f4e7c9f 100644 --- a/modules/costs/config/locales/crowdin/js-bg.yml +++ b/modules/costs/config/locales/crowdin/js-bg.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ bg: js: diff --git a/modules/costs/config/locales/crowdin/js-ca.yml b/modules/costs/config/locales/crowdin/js-ca.yml index 691272795f..c99bbfebaf 100644 --- a/modules/costs/config/locales/crowdin/js-ca.yml +++ b/modules/costs/config/locales/crowdin/js-ca.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ca: js: diff --git a/modules/costs/config/locales/crowdin/js-cs.yml b/modules/costs/config/locales/crowdin/js-cs.yml index 27f433166e..1ddeb4c844 100644 --- a/modules/costs/config/locales/crowdin/js-cs.yml +++ b/modules/costs/config/locales/crowdin/js-cs.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ cs: js: diff --git a/modules/costs/config/locales/crowdin/js-da.yml b/modules/costs/config/locales/crowdin/js-da.yml index cee13b71cd..31b85fc2eb 100644 --- a/modules/costs/config/locales/crowdin/js-da.yml +++ b/modules/costs/config/locales/crowdin/js-da.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ da: js: diff --git a/modules/costs/config/locales/crowdin/js-de.yml b/modules/costs/config/locales/crowdin/js-de.yml index b805a3b2c1..46170808c0 100644 --- a/modules/costs/config/locales/crowdin/js-de.yml +++ b/modules/costs/config/locales/crowdin/js-de.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ de: js: diff --git a/modules/costs/config/locales/crowdin/js-el.yml b/modules/costs/config/locales/crowdin/js-el.yml index f583b00548..f2905ea879 100644 --- a/modules/costs/config/locales/crowdin/js-el.yml +++ b/modules/costs/config/locales/crowdin/js-el.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,17 +17,17 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ el: js: work_packages: property_groups: - costs: "Costs" + costs: "Κόστος" properties: costObject: "Προϋπολογισμός" overallCosts: "Συνολικό κόστος" spentUnits: "Δαπανημένες μονάδες" - button_log_costs: "Log unit costs" + button_log_costs: "Καταγραφή κόστους μονάδας" label_hour: "ώρα" label_hours: "ώρες" diff --git a/modules/costs/config/locales/crowdin/js-es.yml b/modules/costs/config/locales/crowdin/js-es.yml index bd6713629a..d07d487d83 100644 --- a/modules/costs/config/locales/crowdin/js-es.yml +++ b/modules/costs/config/locales/crowdin/js-es.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ es: js: diff --git a/modules/costs/config/locales/crowdin/js-fi.yml b/modules/costs/config/locales/crowdin/js-fi.yml index 40aeaa7a3b..232fb45d3a 100644 --- a/modules/costs/config/locales/crowdin/js-fi.yml +++ b/modules/costs/config/locales/crowdin/js-fi.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fi: js: diff --git a/modules/costs/config/locales/crowdin/js-fil.yml b/modules/costs/config/locales/crowdin/js-fil.yml index e373e978c0..acc9c21581 100644 --- a/modules/costs/config/locales/crowdin/js-fil.yml +++ b/modules/costs/config/locales/crowdin/js-fil.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fil: js: diff --git a/modules/costs/config/locales/crowdin/js-fr.yml b/modules/costs/config/locales/crowdin/js-fr.yml index 69f1544016..c26df88b04 100644 --- a/modules/costs/config/locales/crowdin/js-fr.yml +++ b/modules/costs/config/locales/crowdin/js-fr.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fr: js: diff --git a/modules/costs/config/locales/crowdin/js-hr.yml b/modules/costs/config/locales/crowdin/js-hr.yml index 4580c06184..f0b5e37e11 100644 --- a/modules/costs/config/locales/crowdin/js-hr.yml +++ b/modules/costs/config/locales/crowdin/js-hr.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hr: js: diff --git a/modules/costs/config/locales/crowdin/js-hu.yml b/modules/costs/config/locales/crowdin/js-hu.yml index f0faccddbb..18049f0e92 100644 --- a/modules/costs/config/locales/crowdin/js-hu.yml +++ b/modules/costs/config/locales/crowdin/js-hu.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hu: js: diff --git a/modules/costs/config/locales/crowdin/js-id.yml b/modules/costs/config/locales/crowdin/js-id.yml index 60403ce975..a78fa1a2a2 100644 --- a/modules/costs/config/locales/crowdin/js-id.yml +++ b/modules/costs/config/locales/crowdin/js-id.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ id: js: diff --git a/modules/costs/config/locales/crowdin/js-it.yml b/modules/costs/config/locales/crowdin/js-it.yml index 2df8424e26..e551ac17f0 100644 --- a/modules/costs/config/locales/crowdin/js-it.yml +++ b/modules/costs/config/locales/crowdin/js-it.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ it: js: diff --git a/modules/costs/config/locales/crowdin/js-ja.yml b/modules/costs/config/locales/crowdin/js-ja.yml index 9751bfbc7e..81b38111be 100644 --- a/modules/costs/config/locales/crowdin/js-ja.yml +++ b/modules/costs/config/locales/crowdin/js-ja.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ja: js: diff --git a/modules/costs/config/locales/crowdin/js-ko.yml b/modules/costs/config/locales/crowdin/js-ko.yml index 726745e973..aa8bc86f10 100644 --- a/modules/costs/config/locales/crowdin/js-ko.yml +++ b/modules/costs/config/locales/crowdin/js-ko.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ko: js: diff --git a/modules/costs/config/locales/crowdin/js-lt.yml b/modules/costs/config/locales/crowdin/js-lt.yml index 13889008da..5f5d6d5d35 100644 --- a/modules/costs/config/locales/crowdin/js-lt.yml +++ b/modules/costs/config/locales/crowdin/js-lt.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ lt: js: diff --git a/modules/costs/config/locales/crowdin/js-nl.yml b/modules/costs/config/locales/crowdin/js-nl.yml index fdccc1ff5a..7d32ed35be 100644 --- a/modules/costs/config/locales/crowdin/js-nl.yml +++ b/modules/costs/config/locales/crowdin/js-nl.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ nl: js: diff --git a/modules/costs/config/locales/crowdin/js-no.yml b/modules/costs/config/locales/crowdin/js-no.yml index c52d4976db..6b5571e8ed 100644 --- a/modules/costs/config/locales/crowdin/js-no.yml +++ b/modules/costs/config/locales/crowdin/js-no.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ "no": js: diff --git a/modules/costs/config/locales/crowdin/js-pl.yml b/modules/costs/config/locales/crowdin/js-pl.yml index f4b4ce456e..7c990c3243 100644 --- a/modules/costs/config/locales/crowdin/js-pl.yml +++ b/modules/costs/config/locales/crowdin/js-pl.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pl: js: diff --git a/modules/costs/config/locales/crowdin/js-pt-BR.yml b/modules/costs/config/locales/crowdin/js-pt-BR.yml index d41eb59509..5835df60b2 100644 --- a/modules/costs/config/locales/crowdin/js-pt-BR.yml +++ b/modules/costs/config/locales/crowdin/js-pt-BR.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt-BR: js: diff --git a/modules/costs/config/locales/crowdin/js-pt.yml b/modules/costs/config/locales/crowdin/js-pt.yml index 8da3316740..fb69fe8be8 100644 --- a/modules/costs/config/locales/crowdin/js-pt.yml +++ b/modules/costs/config/locales/crowdin/js-pt.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt: js: diff --git a/modules/costs/config/locales/crowdin/js-ro.yml b/modules/costs/config/locales/crowdin/js-ro.yml index dd5cdca052..7545ddac8a 100644 --- a/modules/costs/config/locales/crowdin/js-ro.yml +++ b/modules/costs/config/locales/crowdin/js-ro.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ro: js: diff --git a/modules/costs/config/locales/crowdin/js-ru.yml b/modules/costs/config/locales/crowdin/js-ru.yml index e71f581af8..76cf506e49 100644 --- a/modules/costs/config/locales/crowdin/js-ru.yml +++ b/modules/costs/config/locales/crowdin/js-ru.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ru: js: diff --git a/modules/costs/config/locales/crowdin/js-sk.yml b/modules/costs/config/locales/crowdin/js-sk.yml index 3bdda139bb..ba1106b22c 100644 --- a/modules/costs/config/locales/crowdin/js-sk.yml +++ b/modules/costs/config/locales/crowdin/js-sk.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sk: js: diff --git a/modules/costs/config/locales/crowdin/js-sv.yml b/modules/costs/config/locales/crowdin/js-sv.yml index a8c4de18de..00ff53702a 100644 --- a/modules/costs/config/locales/crowdin/js-sv.yml +++ b/modules/costs/config/locales/crowdin/js-sv.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sv: js: diff --git a/modules/costs/config/locales/crowdin/js-tr.yml b/modules/costs/config/locales/crowdin/js-tr.yml index 9736030e05..1440be4d05 100644 --- a/modules/costs/config/locales/crowdin/js-tr.yml +++ b/modules/costs/config/locales/crowdin/js-tr.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ tr: js: diff --git a/modules/costs/config/locales/crowdin/js-uk.yml b/modules/costs/config/locales/crowdin/js-uk.yml index 9df5176096..5277b996d3 100644 --- a/modules/costs/config/locales/crowdin/js-uk.yml +++ b/modules/costs/config/locales/crowdin/js-uk.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ uk: js: diff --git a/modules/costs/config/locales/crowdin/js-vi.yml b/modules/costs/config/locales/crowdin/js-vi.yml index ffb053c37b..1760944ba6 100644 --- a/modules/costs/config/locales/crowdin/js-vi.yml +++ b/modules/costs/config/locales/crowdin/js-vi.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ vi: js: diff --git a/modules/costs/config/locales/crowdin/js-zh-CN.yml b/modules/costs/config/locales/crowdin/js-zh-CN.yml index 2415ef8ed0..cad14d068c 100644 --- a/modules/costs/config/locales/crowdin/js-zh-CN.yml +++ b/modules/costs/config/locales/crowdin/js-zh-CN.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-CN: js: diff --git a/modules/costs/config/locales/crowdin/js-zh-TW.yml b/modules/costs/config/locales/crowdin/js-zh-TW.yml index 925e7b5566..f5bc56e728 100644 --- a/modules/costs/config/locales/crowdin/js-zh-TW.yml +++ b/modules/costs/config/locales/crowdin/js-zh-TW.yml @@ -1,17 +1,11 @@ #-- copyright -#OpenProject Backlogs Plugin -#Copyright (C)2013-2014 the OpenProject Foundation (OPF) -#Copyright (C)2011 Stephan Eckardt, Tim Felgentreff, Marnen Laibow-Koser, Sandro Munda -#Copyright (C)2010-2011 friflaj -#Copyright (C)2010 Maxime Guilbot, Andrew Vit, Joakim Kolsjö, ibussieres, Daniel Passos, Jason Vasquez, jpic, Emiliano Heyns -#Copyright (C)2009-2010 Mark Maglana -#Copyright (C)2009 Joe Heck, Nate Lowrie -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. -#OpenProject Backlogs is a derivative work based on ChiliProject Backlogs. -#The copyright follows: -#Copyright (C) 2010-2011 - Emiliano Heyns, Mark Maglana, friflaj -#Copyright (C) 2011 - Jens Ulferts, Gregor Schmidt - Finn GmbH - Berlin, Germany +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -23,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-TW: js: diff --git a/modules/costs/config/locales/crowdin/ko.yml b/modules/costs/config/locales/crowdin/ko.yml index e07f6a5672..345e4db1b3 100644 --- a/modules/costs/config/locales/crowdin/ko.yml +++ b/modules/costs/config/locales/crowdin/ko.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ko: diff --git a/modules/costs/config/locales/crowdin/lt.yml b/modules/costs/config/locales/crowdin/lt.yml index a88e110b22..340442bb58 100644 --- a/modules/costs/config/locales/crowdin/lt.yml +++ b/modules/costs/config/locales/crowdin/lt.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- lt: diff --git a/modules/costs/config/locales/crowdin/nl.yml b/modules/costs/config/locales/crowdin/nl.yml index 8091f83c6d..4bec95da8b 100644 --- a/modules/costs/config/locales/crowdin/nl.yml +++ b/modules/costs/config/locales/crowdin/nl.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- nl: diff --git a/modules/costs/config/locales/crowdin/no.yml b/modules/costs/config/locales/crowdin/no.yml index b4ca3d5e13..ed50178428 100644 --- a/modules/costs/config/locales/crowdin/no.yml +++ b/modules/costs/config/locales/crowdin/no.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- "no": diff --git a/modules/costs/config/locales/crowdin/pl.yml b/modules/costs/config/locales/crowdin/pl.yml index 4872967854..a135198bed 100644 --- a/modules/costs/config/locales/crowdin/pl.yml +++ b/modules/costs/config/locales/crowdin/pl.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pl: diff --git a/modules/costs/config/locales/crowdin/pt-BR.yml b/modules/costs/config/locales/crowdin/pt-BR.yml index 6cdb79a88d..4f9e1c6ca5 100644 --- a/modules/costs/config/locales/crowdin/pt-BR.yml +++ b/modules/costs/config/locales/crowdin/pt-BR.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pt-BR: diff --git a/modules/costs/config/locales/crowdin/pt.yml b/modules/costs/config/locales/crowdin/pt.yml index 68eea2521f..0c400600ce 100644 --- a/modules/costs/config/locales/crowdin/pt.yml +++ b/modules/costs/config/locales/crowdin/pt.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pt: diff --git a/modules/costs/config/locales/crowdin/ro.yml b/modules/costs/config/locales/crowdin/ro.yml index 2cffd70852..124b0b6502 100644 --- a/modules/costs/config/locales/crowdin/ro.yml +++ b/modules/costs/config/locales/crowdin/ro.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ro: diff --git a/modules/costs/config/locales/crowdin/ru.yml b/modules/costs/config/locales/crowdin/ru.yml index 9650ca23b1..e4d7008d5b 100644 --- a/modules/costs/config/locales/crowdin/ru.yml +++ b/modules/costs/config/locales/crowdin/ru.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ru: diff --git a/modules/costs/config/locales/crowdin/sk.yml b/modules/costs/config/locales/crowdin/sk.yml index c3f4ebe9b2..a947ec409c 100644 --- a/modules/costs/config/locales/crowdin/sk.yml +++ b/modules/costs/config/locales/crowdin/sk.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- sk: diff --git a/modules/costs/config/locales/crowdin/sv.yml b/modules/costs/config/locales/crowdin/sv.yml index 67ef1c1165..0626628efd 100644 --- a/modules/costs/config/locales/crowdin/sv.yml +++ b/modules/costs/config/locales/crowdin/sv.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- sv: diff --git a/modules/costs/config/locales/crowdin/tr.yml b/modules/costs/config/locales/crowdin/tr.yml index a91bc0abb7..fb6a77a57c 100644 --- a/modules/costs/config/locales/crowdin/tr.yml +++ b/modules/costs/config/locales/crowdin/tr.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- tr: diff --git a/modules/costs/config/locales/crowdin/uk.yml b/modules/costs/config/locales/crowdin/uk.yml index ddaded678d..ff86d2b918 100644 --- a/modules/costs/config/locales/crowdin/uk.yml +++ b/modules/costs/config/locales/crowdin/uk.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- uk: diff --git a/modules/costs/config/locales/crowdin/vi.yml b/modules/costs/config/locales/crowdin/vi.yml index eebf6bd016..eb0986feb2 100644 --- a/modules/costs/config/locales/crowdin/vi.yml +++ b/modules/costs/config/locales/crowdin/vi.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- vi: diff --git a/modules/costs/config/locales/crowdin/zh-CN.yml b/modules/costs/config/locales/crowdin/zh-CN.yml index a8d568dbc6..d039f87170 100644 --- a/modules/costs/config/locales/crowdin/zh-CN.yml +++ b/modules/costs/config/locales/crowdin/zh-CN.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- zh-CN: diff --git a/modules/costs/config/locales/crowdin/zh-TW.yml b/modules/costs/config/locales/crowdin/zh-TW.yml index 5b1e8b3d90..d6d6113baa 100644 --- a/modules/costs/config/locales/crowdin/zh-TW.yml +++ b/modules/costs/config/locales/crowdin/zh-TW.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Costs Plugin -#Copyright (C) 2009 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- zh-TW: diff --git a/modules/costs/lib/open_project/costs/engine.rb b/modules/costs/lib/open_project/costs/engine.rb index 2f2a775ef1..11c0ecfedb 100644 --- a/modules/costs/lib/open_project/costs/engine.rb +++ b/modules/costs/lib/open_project/costs/engine.rb @@ -103,6 +103,7 @@ module OpenProject::Costs add_tab_entry :user, name: 'rates', partial: 'users/rates', + path: ->(params) { tab_edit_user_path(params[:user], tab: :rates) }, label: :caption_rate_history add_api_attribute on: :work_package, ar_name: :cost_object_id diff --git a/modules/documents/config/locales/crowdin/ar.yml b/modules/documents/config/locales/crowdin/ar.yml index e641ad5eb0..459f994057 100644 --- a/modules/documents/config/locales/crowdin/ar.yml +++ b/modules/documents/config/locales/crowdin/ar.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ar: activerecord: diff --git a/modules/documents/config/locales/crowdin/bg.yml b/modules/documents/config/locales/crowdin/bg.yml index 66ecae7f0c..eb705b8076 100644 --- a/modules/documents/config/locales/crowdin/bg.yml +++ b/modules/documents/config/locales/crowdin/bg.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ bg: activerecord: diff --git a/modules/documents/config/locales/crowdin/ca.yml b/modules/documents/config/locales/crowdin/ca.yml index b6255ee723..c83de01bf8 100644 --- a/modules/documents/config/locales/crowdin/ca.yml +++ b/modules/documents/config/locales/crowdin/ca.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ca: activerecord: diff --git a/modules/documents/config/locales/crowdin/cs.yml b/modules/documents/config/locales/crowdin/cs.yml index 27d90fbf14..94483b2df4 100644 --- a/modules/documents/config/locales/crowdin/cs.yml +++ b/modules/documents/config/locales/crowdin/cs.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ cs: activerecord: diff --git a/modules/documents/config/locales/crowdin/da.yml b/modules/documents/config/locales/crowdin/da.yml index 6ff0d069cc..ec7ef302d8 100644 --- a/modules/documents/config/locales/crowdin/da.yml +++ b/modules/documents/config/locales/crowdin/da.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ da: activerecord: diff --git a/modules/documents/config/locales/crowdin/de.yml b/modules/documents/config/locales/crowdin/de.yml index 89384ffed0..5a5c4cb13a 100644 --- a/modules/documents/config/locales/crowdin/de.yml +++ b/modules/documents/config/locales/crowdin/de.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ de: activerecord: diff --git a/modules/documents/config/locales/crowdin/el.yml b/modules/documents/config/locales/crowdin/el.yml index 43e8e8b062..7d0e5bde71 100644 --- a/modules/documents/config/locales/crowdin/el.yml +++ b/modules/documents/config/locales/crowdin/el.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ el: activerecord: diff --git a/modules/documents/config/locales/crowdin/es.yml b/modules/documents/config/locales/crowdin/es.yml index c428e55c51..6338a00248 100644 --- a/modules/documents/config/locales/crowdin/es.yml +++ b/modules/documents/config/locales/crowdin/es.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ es: activerecord: diff --git a/modules/documents/config/locales/crowdin/fi.yml b/modules/documents/config/locales/crowdin/fi.yml index 68d3eb2877..a2cb4b50d3 100644 --- a/modules/documents/config/locales/crowdin/fi.yml +++ b/modules/documents/config/locales/crowdin/fi.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fi: activerecord: diff --git a/modules/documents/config/locales/crowdin/fil.yml b/modules/documents/config/locales/crowdin/fil.yml index 1b65651171..cdcdb5af32 100644 --- a/modules/documents/config/locales/crowdin/fil.yml +++ b/modules/documents/config/locales/crowdin/fil.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fil: activerecord: diff --git a/modules/documents/config/locales/crowdin/fr.yml b/modules/documents/config/locales/crowdin/fr.yml index ce452d410e..f3ac7152ee 100644 --- a/modules/documents/config/locales/crowdin/fr.yml +++ b/modules/documents/config/locales/crowdin/fr.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fr: activerecord: diff --git a/modules/documents/config/locales/crowdin/hr.yml b/modules/documents/config/locales/crowdin/hr.yml index 7fb69f89ae..8666ce26b5 100644 --- a/modules/documents/config/locales/crowdin/hr.yml +++ b/modules/documents/config/locales/crowdin/hr.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hr: activerecord: diff --git a/modules/documents/config/locales/crowdin/hu.yml b/modules/documents/config/locales/crowdin/hu.yml index 7b75a26a8f..db36edf456 100644 --- a/modules/documents/config/locales/crowdin/hu.yml +++ b/modules/documents/config/locales/crowdin/hu.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hu: activerecord: diff --git a/modules/documents/config/locales/crowdin/id.yml b/modules/documents/config/locales/crowdin/id.yml index 5cab5ccfed..7dc36a2c53 100644 --- a/modules/documents/config/locales/crowdin/id.yml +++ b/modules/documents/config/locales/crowdin/id.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ id: activerecord: diff --git a/modules/documents/config/locales/crowdin/it.yml b/modules/documents/config/locales/crowdin/it.yml index 2372626564..12022ded4a 100644 --- a/modules/documents/config/locales/crowdin/it.yml +++ b/modules/documents/config/locales/crowdin/it.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ it: activerecord: diff --git a/modules/documents/config/locales/crowdin/ja.yml b/modules/documents/config/locales/crowdin/ja.yml index 72712c4beb..f0e12fc624 100644 --- a/modules/documents/config/locales/crowdin/ja.yml +++ b/modules/documents/config/locales/crowdin/ja.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ja: activerecord: diff --git a/modules/documents/config/locales/crowdin/ko.yml b/modules/documents/config/locales/crowdin/ko.yml index 29f21b3f8a..08cbd53c1b 100644 --- a/modules/documents/config/locales/crowdin/ko.yml +++ b/modules/documents/config/locales/crowdin/ko.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ko: activerecord: diff --git a/modules/documents/config/locales/crowdin/lt.yml b/modules/documents/config/locales/crowdin/lt.yml index b98df8706f..8b1c6566c1 100644 --- a/modules/documents/config/locales/crowdin/lt.yml +++ b/modules/documents/config/locales/crowdin/lt.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ lt: activerecord: diff --git a/modules/documents/config/locales/crowdin/nl.yml b/modules/documents/config/locales/crowdin/nl.yml index 604f457bfc..98c7c5e1c2 100644 --- a/modules/documents/config/locales/crowdin/nl.yml +++ b/modules/documents/config/locales/crowdin/nl.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ nl: activerecord: diff --git a/modules/documents/config/locales/crowdin/no.yml b/modules/documents/config/locales/crowdin/no.yml index bded4afcfd..841484977f 100644 --- a/modules/documents/config/locales/crowdin/no.yml +++ b/modules/documents/config/locales/crowdin/no.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ "no": activerecord: diff --git a/modules/documents/config/locales/crowdin/pl.yml b/modules/documents/config/locales/crowdin/pl.yml index 3ce42a21f2..5736e262ee 100644 --- a/modules/documents/config/locales/crowdin/pl.yml +++ b/modules/documents/config/locales/crowdin/pl.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pl: activerecord: diff --git a/modules/documents/config/locales/crowdin/pt-BR.yml b/modules/documents/config/locales/crowdin/pt-BR.yml index 54b5a1cf89..f59e1877a5 100644 --- a/modules/documents/config/locales/crowdin/pt-BR.yml +++ b/modules/documents/config/locales/crowdin/pt-BR.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt-BR: activerecord: diff --git a/modules/documents/config/locales/crowdin/pt.yml b/modules/documents/config/locales/crowdin/pt.yml index 54532b1a9a..f8abbd1915 100644 --- a/modules/documents/config/locales/crowdin/pt.yml +++ b/modules/documents/config/locales/crowdin/pt.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt: activerecord: diff --git a/modules/documents/config/locales/crowdin/ro.yml b/modules/documents/config/locales/crowdin/ro.yml index ca957b06f7..2857e28315 100644 --- a/modules/documents/config/locales/crowdin/ro.yml +++ b/modules/documents/config/locales/crowdin/ro.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ro: activerecord: diff --git a/modules/documents/config/locales/crowdin/ru.yml b/modules/documents/config/locales/crowdin/ru.yml index 9461ca49ed..86a6191284 100644 --- a/modules/documents/config/locales/crowdin/ru.yml +++ b/modules/documents/config/locales/crowdin/ru.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ru: activerecord: diff --git a/modules/documents/config/locales/crowdin/sk.yml b/modules/documents/config/locales/crowdin/sk.yml index 2197f0ad66..e3e658bc92 100644 --- a/modules/documents/config/locales/crowdin/sk.yml +++ b/modules/documents/config/locales/crowdin/sk.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sk: activerecord: diff --git a/modules/documents/config/locales/crowdin/sv.yml b/modules/documents/config/locales/crowdin/sv.yml index 26ee0129cf..4605a925f1 100644 --- a/modules/documents/config/locales/crowdin/sv.yml +++ b/modules/documents/config/locales/crowdin/sv.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sv: activerecord: diff --git a/modules/documents/config/locales/crowdin/tr.yml b/modules/documents/config/locales/crowdin/tr.yml index 4c35afcfe3..b11e8b0b6d 100644 --- a/modules/documents/config/locales/crowdin/tr.yml +++ b/modules/documents/config/locales/crowdin/tr.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ tr: activerecord: diff --git a/modules/documents/config/locales/crowdin/uk.yml b/modules/documents/config/locales/crowdin/uk.yml index f55bcc649c..a292ad774c 100644 --- a/modules/documents/config/locales/crowdin/uk.yml +++ b/modules/documents/config/locales/crowdin/uk.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ uk: activerecord: diff --git a/modules/documents/config/locales/crowdin/vi.yml b/modules/documents/config/locales/crowdin/vi.yml index 52e78d9e49..00833442e0 100644 --- a/modules/documents/config/locales/crowdin/vi.yml +++ b/modules/documents/config/locales/crowdin/vi.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ vi: activerecord: diff --git a/modules/documents/config/locales/crowdin/zh-CN.yml b/modules/documents/config/locales/crowdin/zh-CN.yml index aa1a7eed06..68d97f6d6f 100644 --- a/modules/documents/config/locales/crowdin/zh-CN.yml +++ b/modules/documents/config/locales/crowdin/zh-CN.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-CN: activerecord: diff --git a/modules/documents/config/locales/crowdin/zh-TW.yml b/modules/documents/config/locales/crowdin/zh-TW.yml index 125407e3ea..bea85f26d7 100644 --- a/modules/documents/config/locales/crowdin/zh-TW.yml +++ b/modules/documents/config/locales/crowdin/zh-TW.yml @@ -1,11 +1,10 @@ #-- copyright -#OpenProject Documents Plugin -#Former OpenProject Core functionality extracted into a plugin. -#Copyright (C) 2009-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. #OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: -#Copyright (C) 2006-2013 Jean-Philippe Lang +#Copyright (C) 2006-2017 Jean-Philippe Lang #Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License @@ -18,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.rdoc for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-TW: activerecord: diff --git a/modules/documents/lib/open_project/documents/patches/custom_fields_helper_patch.rb b/modules/documents/lib/open_project/documents/patches/custom_fields_helper_patch.rb index efcb5c7eb7..b102ea38da 100644 --- a/modules/documents/lib/open_project/documents/patches/custom_fields_helper_patch.rb +++ b/modules/documents/lib/open_project/documents/patches/custom_fields_helper_patch.rb @@ -37,6 +37,7 @@ module OpenProject::Documents::Patches super << { name: 'DocumentCategoryCustomField', partial: 'custom_fields/tab', + path: custom_fields_path(tab: :DocumentCategoryCustomField), label: DocumentCategory::OptionName } end diff --git a/modules/github_integration/config/locales/crowdin/ar.yml b/modules/github_integration/config/locales/crowdin/ar.yml index cfd29f57d0..3081a77d04 100644 --- a/modules/github_integration/config/locales/crowdin/ar.yml +++ b/modules/github_integration/config/locales/crowdin/ar.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ar: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/bg.yml b/modules/github_integration/config/locales/crowdin/bg.yml index f9ded22922..8a70caa955 100644 --- a/modules/github_integration/config/locales/crowdin/bg.yml +++ b/modules/github_integration/config/locales/crowdin/bg.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ bg: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/ca.yml b/modules/github_integration/config/locales/crowdin/ca.yml index 8e7967f3cb..19e4061c82 100644 --- a/modules/github_integration/config/locales/crowdin/ca.yml +++ b/modules/github_integration/config/locales/crowdin/ca.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ca: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/cs.yml b/modules/github_integration/config/locales/crowdin/cs.yml index 5ce02cd4ab..47385e46ef 100644 --- a/modules/github_integration/config/locales/crowdin/cs.yml +++ b/modules/github_integration/config/locales/crowdin/cs.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ cs: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/da.yml b/modules/github_integration/config/locales/crowdin/da.yml index 09d5f27f67..270b304357 100644 --- a/modules/github_integration/config/locales/crowdin/da.yml +++ b/modules/github_integration/config/locales/crowdin/da.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ da: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/de.yml b/modules/github_integration/config/locales/crowdin/de.yml index 57492cfab6..f35f47efab 100644 --- a/modules/github_integration/config/locales/crowdin/de.yml +++ b/modules/github_integration/config/locales/crowdin/de.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ de: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/el.yml b/modules/github_integration/config/locales/crowdin/el.yml index d35050a1d9..9fdd5c237d 100644 --- a/modules/github_integration/config/locales/crowdin/el.yml +++ b/modules/github_integration/config/locales/crowdin/el.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ el: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/es.yml b/modules/github_integration/config/locales/crowdin/es.yml index 3e7e24e9d2..144280225c 100644 --- a/modules/github_integration/config/locales/crowdin/es.yml +++ b/modules/github_integration/config/locales/crowdin/es.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ es: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/fi.yml b/modules/github_integration/config/locales/crowdin/fi.yml index ade7ce327f..5f28ab72f9 100644 --- a/modules/github_integration/config/locales/crowdin/fi.yml +++ b/modules/github_integration/config/locales/crowdin/fi.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fi: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/fil.yml b/modules/github_integration/config/locales/crowdin/fil.yml index 787e34a6b8..25df028848 100644 --- a/modules/github_integration/config/locales/crowdin/fil.yml +++ b/modules/github_integration/config/locales/crowdin/fil.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fil: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/fr.yml b/modules/github_integration/config/locales/crowdin/fr.yml index 102eaffb04..a2945496a9 100644 --- a/modules/github_integration/config/locales/crowdin/fr.yml +++ b/modules/github_integration/config/locales/crowdin/fr.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fr: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/hr.yml b/modules/github_integration/config/locales/crowdin/hr.yml index c75b736ef8..c7a0298619 100644 --- a/modules/github_integration/config/locales/crowdin/hr.yml +++ b/modules/github_integration/config/locales/crowdin/hr.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hr: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/hu.yml b/modules/github_integration/config/locales/crowdin/hu.yml index e0f36be51c..639fdca1a3 100644 --- a/modules/github_integration/config/locales/crowdin/hu.yml +++ b/modules/github_integration/config/locales/crowdin/hu.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hu: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/id.yml b/modules/github_integration/config/locales/crowdin/id.yml index 947642014e..cd9f630561 100644 --- a/modules/github_integration/config/locales/crowdin/id.yml +++ b/modules/github_integration/config/locales/crowdin/id.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ id: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/it.yml b/modules/github_integration/config/locales/crowdin/it.yml index 0919133233..5e89d81cea 100644 --- a/modules/github_integration/config/locales/crowdin/it.yml +++ b/modules/github_integration/config/locales/crowdin/it.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ it: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/ja.yml b/modules/github_integration/config/locales/crowdin/ja.yml index 06648ecc72..ea352e4301 100644 --- a/modules/github_integration/config/locales/crowdin/ja.yml +++ b/modules/github_integration/config/locales/crowdin/ja.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ja: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/ko.yml b/modules/github_integration/config/locales/crowdin/ko.yml index 4154d5abcf..2940aba105 100644 --- a/modules/github_integration/config/locales/crowdin/ko.yml +++ b/modules/github_integration/config/locales/crowdin/ko.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ko: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/lt.yml b/modules/github_integration/config/locales/crowdin/lt.yml index caeeace6ee..2c35b13fd5 100644 --- a/modules/github_integration/config/locales/crowdin/lt.yml +++ b/modules/github_integration/config/locales/crowdin/lt.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ lt: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/nl.yml b/modules/github_integration/config/locales/crowdin/nl.yml index 9db477e1eb..79dbc96b06 100644 --- a/modules/github_integration/config/locales/crowdin/nl.yml +++ b/modules/github_integration/config/locales/crowdin/nl.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ nl: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/no.yml b/modules/github_integration/config/locales/crowdin/no.yml index 6e346b571b..b9545cf0d7 100644 --- a/modules/github_integration/config/locales/crowdin/no.yml +++ b/modules/github_integration/config/locales/crowdin/no.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ "no": github_integration: diff --git a/modules/github_integration/config/locales/crowdin/pl.yml b/modules/github_integration/config/locales/crowdin/pl.yml index ee7dc61835..45a87ebf91 100644 --- a/modules/github_integration/config/locales/crowdin/pl.yml +++ b/modules/github_integration/config/locales/crowdin/pl.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pl: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/pt-BR.yml b/modules/github_integration/config/locales/crowdin/pt-BR.yml index 3eba3fbf2c..eee0a6f222 100644 --- a/modules/github_integration/config/locales/crowdin/pt-BR.yml +++ b/modules/github_integration/config/locales/crowdin/pt-BR.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt-BR: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/pt.yml b/modules/github_integration/config/locales/crowdin/pt.yml index 6e370ec0aa..cc39aaf5b5 100644 --- a/modules/github_integration/config/locales/crowdin/pt.yml +++ b/modules/github_integration/config/locales/crowdin/pt.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/ro.yml b/modules/github_integration/config/locales/crowdin/ro.yml index 014f279f67..03b55b9920 100644 --- a/modules/github_integration/config/locales/crowdin/ro.yml +++ b/modules/github_integration/config/locales/crowdin/ro.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ro: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/ru.yml b/modules/github_integration/config/locales/crowdin/ru.yml index 5dcf9bce78..f623587b0a 100644 --- a/modules/github_integration/config/locales/crowdin/ru.yml +++ b/modules/github_integration/config/locales/crowdin/ru.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ru: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/sk.yml b/modules/github_integration/config/locales/crowdin/sk.yml index 0b02313f50..533770b671 100644 --- a/modules/github_integration/config/locales/crowdin/sk.yml +++ b/modules/github_integration/config/locales/crowdin/sk.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sk: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/sv.yml b/modules/github_integration/config/locales/crowdin/sv.yml index b3680ff965..62d538512c 100644 --- a/modules/github_integration/config/locales/crowdin/sv.yml +++ b/modules/github_integration/config/locales/crowdin/sv.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sv: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/tr.yml b/modules/github_integration/config/locales/crowdin/tr.yml index c5ef5fc143..d090fd2b63 100644 --- a/modules/github_integration/config/locales/crowdin/tr.yml +++ b/modules/github_integration/config/locales/crowdin/tr.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ tr: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/uk.yml b/modules/github_integration/config/locales/crowdin/uk.yml index 462efb7f31..b257290f7e 100644 --- a/modules/github_integration/config/locales/crowdin/uk.yml +++ b/modules/github_integration/config/locales/crowdin/uk.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ uk: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/vi.yml b/modules/github_integration/config/locales/crowdin/vi.yml index 21c9a0be07..ff371dc82f 100644 --- a/modules/github_integration/config/locales/crowdin/vi.yml +++ b/modules/github_integration/config/locales/crowdin/vi.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ vi: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/zh-CN.yml b/modules/github_integration/config/locales/crowdin/zh-CN.yml index a4dcaab9b8..0d46cee2a9 100644 --- a/modules/github_integration/config/locales/crowdin/zh-CN.yml +++ b/modules/github_integration/config/locales/crowdin/zh-CN.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-CN: github_integration: diff --git a/modules/github_integration/config/locales/crowdin/zh-TW.yml b/modules/github_integration/config/locales/crowdin/zh-TW.yml index 1c6dd86ef7..f1ec3e3fe3 100644 --- a/modules/github_integration/config/locales/crowdin/zh-TW.yml +++ b/modules/github_integration/config/locales/crowdin/zh-TW.yml @@ -1,12 +1,23 @@ #-- copyright -#OpenProject is a project management system. -#Copyright (C) 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. +#This program is distributed in the hope that it will be useful, +#but WITHOUT ANY WARRANTY; without even the implied warranty of +#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +#GNU General Public License for more details. #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-TW: github_integration: diff --git a/modules/global_roles/config/locales/crowdin/ar.yml b/modules/global_roles/config/locales/crowdin/ar.yml index 9d4b9abdf5..0423e280c2 100644 --- a/modules/global_roles/config/locales/crowdin/ar.yml +++ b/modules/global_roles/config/locales/crowdin/ar.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ar: error_can_not_be_assigned: لا يمكن تعيين الدور لهذا المستخدم diff --git a/modules/global_roles/config/locales/crowdin/bg.yml b/modules/global_roles/config/locales/crowdin/bg.yml index fc4c73ddef..1a3a3d5559 100644 --- a/modules/global_roles/config/locales/crowdin/bg.yml +++ b/modules/global_roles/config/locales/crowdin/bg.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ bg: error_can_not_be_assigned: The role can not be assigned to this user diff --git a/modules/global_roles/config/locales/crowdin/ca.yml b/modules/global_roles/config/locales/crowdin/ca.yml index b2cc32a321..b846a212c8 100644 --- a/modules/global_roles/config/locales/crowdin/ca.yml +++ b/modules/global_roles/config/locales/crowdin/ca.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ca: error_can_not_be_assigned: The role can not be assigned to this user diff --git a/modules/global_roles/config/locales/crowdin/cs.yml b/modules/global_roles/config/locales/crowdin/cs.yml index 482ca45ef0..f57896277d 100644 --- a/modules/global_roles/config/locales/crowdin/cs.yml +++ b/modules/global_roles/config/locales/crowdin/cs.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ cs: error_can_not_be_assigned: Roli nelze přiřadit k tomuto uživateli diff --git a/modules/global_roles/config/locales/crowdin/da.yml b/modules/global_roles/config/locales/crowdin/da.yml index 9978639872..b7bce269d0 100644 --- a/modules/global_roles/config/locales/crowdin/da.yml +++ b/modules/global_roles/config/locales/crowdin/da.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ da: error_can_not_be_assigned: The role can not be assigned to this user diff --git a/modules/global_roles/config/locales/crowdin/de.yml b/modules/global_roles/config/locales/crowdin/de.yml index 68fb650345..d10dd8c4ea 100644 --- a/modules/global_roles/config/locales/crowdin/de.yml +++ b/modules/global_roles/config/locales/crowdin/de.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ de: error_can_not_be_assigned: Die Rolle kann diesem Nutzer nicht zugewiesen werden diff --git a/modules/global_roles/config/locales/crowdin/el.yml b/modules/global_roles/config/locales/crowdin/el.yml index 33a6aaa683..bd179aefd8 100644 --- a/modules/global_roles/config/locales/crowdin/el.yml +++ b/modules/global_roles/config/locales/crowdin/el.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ el: error_can_not_be_assigned: Ο ρόλος δεν μπορεί να δοθεί στον χρήστη diff --git a/modules/global_roles/config/locales/crowdin/es.yml b/modules/global_roles/config/locales/crowdin/es.yml index 6b38641856..c236d23fe6 100644 --- a/modules/global_roles/config/locales/crowdin/es.yml +++ b/modules/global_roles/config/locales/crowdin/es.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ es: error_can_not_be_assigned: No se puede asignar el rol a este usuario diff --git a/modules/global_roles/config/locales/crowdin/fi.yml b/modules/global_roles/config/locales/crowdin/fi.yml index 283a25d7b9..367be4e9d4 100644 --- a/modules/global_roles/config/locales/crowdin/fi.yml +++ b/modules/global_roles/config/locales/crowdin/fi.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ fi: error_can_not_be_assigned: Roolia ei voi antaa tälle käyttäjälle diff --git a/modules/global_roles/config/locales/crowdin/fil.yml b/modules/global_roles/config/locales/crowdin/fil.yml index a378ea1a09..ca770b41be 100644 --- a/modules/global_roles/config/locales/crowdin/fil.yml +++ b/modules/global_roles/config/locales/crowdin/fil.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ fil: error_can_not_be_assigned: The role can not be assigned to this user diff --git a/modules/global_roles/config/locales/crowdin/fr.yml b/modules/global_roles/config/locales/crowdin/fr.yml index 3d21c828f4..eed8b9fe3d 100644 --- a/modules/global_roles/config/locales/crowdin/fr.yml +++ b/modules/global_roles/config/locales/crowdin/fr.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ fr: error_can_not_be_assigned: Le rôle ne peut pas être assigné à cet utilisateur diff --git a/modules/global_roles/config/locales/crowdin/hr.yml b/modules/global_roles/config/locales/crowdin/hr.yml index bd64bba928..e36d4517bb 100644 --- a/modules/global_roles/config/locales/crowdin/hr.yml +++ b/modules/global_roles/config/locales/crowdin/hr.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ hr: error_can_not_be_assigned: Rola ne može biti dodijeljena ovom korisniku diff --git a/modules/global_roles/config/locales/crowdin/hu.yml b/modules/global_roles/config/locales/crowdin/hu.yml index 045907299d..348f7be8c5 100644 --- a/modules/global_roles/config/locales/crowdin/hu.yml +++ b/modules/global_roles/config/locales/crowdin/hu.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ hu: error_can_not_be_assigned: A szerep nem rendelhető ehhez a felhasználóhoz diff --git a/modules/global_roles/config/locales/crowdin/id.yml b/modules/global_roles/config/locales/crowdin/id.yml index 5dff118f49..094c4d2547 100644 --- a/modules/global_roles/config/locales/crowdin/id.yml +++ b/modules/global_roles/config/locales/crowdin/id.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ id: error_can_not_be_assigned: Peran tidak dapat ditugaskan untuk pengguna ini diff --git a/modules/global_roles/config/locales/crowdin/it.yml b/modules/global_roles/config/locales/crowdin/it.yml index 609a441537..562a5be760 100644 --- a/modules/global_roles/config/locales/crowdin/it.yml +++ b/modules/global_roles/config/locales/crowdin/it.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ it: error_can_not_be_assigned: Il ruolo non può essere assegnato a questo utente diff --git a/modules/global_roles/config/locales/crowdin/ja.yml b/modules/global_roles/config/locales/crowdin/ja.yml index 8a63a706ae..b12285e269 100644 --- a/modules/global_roles/config/locales/crowdin/ja.yml +++ b/modules/global_roles/config/locales/crowdin/ja.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ja: error_can_not_be_assigned: このユーザーに役割を割り当てることはできません diff --git a/modules/global_roles/config/locales/crowdin/ko.yml b/modules/global_roles/config/locales/crowdin/ko.yml index 8bd5ea72b5..c637bea533 100644 --- a/modules/global_roles/config/locales/crowdin/ko.yml +++ b/modules/global_roles/config/locales/crowdin/ko.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ko: error_can_not_be_assigned: 역할을 이 사용자에게 할당할 수 없습니다. diff --git a/modules/global_roles/config/locales/crowdin/lt.yml b/modules/global_roles/config/locales/crowdin/lt.yml index 92e9c79816..a5cbdead43 100644 --- a/modules/global_roles/config/locales/crowdin/lt.yml +++ b/modules/global_roles/config/locales/crowdin/lt.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ lt: error_can_not_be_assigned: Rolė negali būti priskirta šiam vartotojui diff --git a/modules/global_roles/config/locales/crowdin/nl.yml b/modules/global_roles/config/locales/crowdin/nl.yml index bd63900b2b..b20eb5d290 100644 --- a/modules/global_roles/config/locales/crowdin/nl.yml +++ b/modules/global_roles/config/locales/crowdin/nl.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ nl: error_can_not_be_assigned: De functie kan niet worden toegewezen aan deze gebruiker diff --git a/modules/global_roles/config/locales/crowdin/no.yml b/modules/global_roles/config/locales/crowdin/no.yml index fe0997a30d..249b21f725 100644 --- a/modules/global_roles/config/locales/crowdin/no.yml +++ b/modules/global_roles/config/locales/crowdin/no.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ "no": error_can_not_be_assigned: The role can not be assigned to this user diff --git a/modules/global_roles/config/locales/crowdin/pl.yml b/modules/global_roles/config/locales/crowdin/pl.yml index 6df50913c5..c387e0207a 100644 --- a/modules/global_roles/config/locales/crowdin/pl.yml +++ b/modules/global_roles/config/locales/crowdin/pl.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ pl: error_can_not_be_assigned: Rola nie może być przypisana do tego użytkownika diff --git a/modules/global_roles/config/locales/crowdin/pt-BR.yml b/modules/global_roles/config/locales/crowdin/pt-BR.yml index df7c063d78..e2e6386301 100644 --- a/modules/global_roles/config/locales/crowdin/pt-BR.yml +++ b/modules/global_roles/config/locales/crowdin/pt-BR.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ pt-BR: error_can_not_be_assigned: O papel não pode ser atribuído a este usuário diff --git a/modules/global_roles/config/locales/crowdin/pt.yml b/modules/global_roles/config/locales/crowdin/pt.yml index 442416dcb1..57db8aab83 100644 --- a/modules/global_roles/config/locales/crowdin/pt.yml +++ b/modules/global_roles/config/locales/crowdin/pt.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ pt: error_can_not_be_assigned: O papel não pode ser atribuído a este utilizador diff --git a/modules/global_roles/config/locales/crowdin/ro.yml b/modules/global_roles/config/locales/crowdin/ro.yml index 493be97fa7..0367838340 100644 --- a/modules/global_roles/config/locales/crowdin/ro.yml +++ b/modules/global_roles/config/locales/crowdin/ro.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ro: error_can_not_be_assigned: The role can not be assigned to this user diff --git a/modules/global_roles/config/locales/crowdin/ru.yml b/modules/global_roles/config/locales/crowdin/ru.yml index 6bdb704c84..a26babaf60 100644 --- a/modules/global_roles/config/locales/crowdin/ru.yml +++ b/modules/global_roles/config/locales/crowdin/ru.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ru: error_can_not_be_assigned: Роль не может быть назначена для этого пользователя diff --git a/modules/global_roles/config/locales/crowdin/sk.yml b/modules/global_roles/config/locales/crowdin/sk.yml index 4616e3a5d7..d15a3da413 100644 --- a/modules/global_roles/config/locales/crowdin/sk.yml +++ b/modules/global_roles/config/locales/crowdin/sk.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ sk: error_can_not_be_assigned: Rola nemôže byť priradená tomuto používateľovi diff --git a/modules/global_roles/config/locales/crowdin/sv.yml b/modules/global_roles/config/locales/crowdin/sv.yml index 7049d2e6ce..5dbb1e9c53 100644 --- a/modules/global_roles/config/locales/crowdin/sv.yml +++ b/modules/global_roles/config/locales/crowdin/sv.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ sv: error_can_not_be_assigned: Rollen kan inte tilldelas denna användare diff --git a/modules/global_roles/config/locales/crowdin/tr.yml b/modules/global_roles/config/locales/crowdin/tr.yml index 1c688ec99f..559c2cf50c 100644 --- a/modules/global_roles/config/locales/crowdin/tr.yml +++ b/modules/global_roles/config/locales/crowdin/tr.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ tr: error_can_not_be_assigned: Bu kullanıcı için rol atanabilir değil diff --git a/modules/global_roles/config/locales/crowdin/uk.yml b/modules/global_roles/config/locales/crowdin/uk.yml index 70fd9df371..b8bd764729 100644 --- a/modules/global_roles/config/locales/crowdin/uk.yml +++ b/modules/global_roles/config/locales/crowdin/uk.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ uk: error_can_not_be_assigned: Роль не може бути призначена цьому користувачеві diff --git a/modules/global_roles/config/locales/crowdin/vi.yml b/modules/global_roles/config/locales/crowdin/vi.yml index 9dd7c83734..d756ca8c66 100644 --- a/modules/global_roles/config/locales/crowdin/vi.yml +++ b/modules/global_roles/config/locales/crowdin/vi.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ vi: error_can_not_be_assigned: The role can not be assigned to this user diff --git a/modules/global_roles/config/locales/crowdin/zh-CN.yml b/modules/global_roles/config/locales/crowdin/zh-CN.yml index 8e38e02d2b..000419d97e 100644 --- a/modules/global_roles/config/locales/crowdin/zh-CN.yml +++ b/modules/global_roles/config/locales/crowdin/zh-CN.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-CN: error_can_not_be_assigned: 无法将角色分配给此用户 diff --git a/modules/global_roles/config/locales/crowdin/zh-TW.yml b/modules/global_roles/config/locales/crowdin/zh-TW.yml index 4aff5cf16c..352b8d4701 100644 --- a/modules/global_roles/config/locales/crowdin/zh-TW.yml +++ b/modules/global_roles/config/locales/crowdin/zh-TW.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Global Roles Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-TW: error_can_not_be_assigned: 無法將角色指派給此使用者 diff --git a/modules/global_roles/lib/open_project/global_roles/engine.rb b/modules/global_roles/lib/open_project/global_roles/engine.rb index fa5146a5fa..e44fdae490 100644 --- a/modules/global_roles/lib/open_project/global_roles/engine.rb +++ b/modules/global_roles/lib/open_project/global_roles/engine.rb @@ -49,6 +49,7 @@ module OpenProject::GlobalRoles add_tab_entry :user, name: 'global_roles', partial: 'users/global_roles', + path: ->(params) { tab_edit_user_path(params[:user], tab: :global_roles) }, label: :global_roles initializer 'patch helper' do diff --git a/modules/global_roles/spec/features/global_role_assignment_spec.rb b/modules/global_roles/spec/features/global_role_assignment_spec.rb index 9f09584c50..25d180bf4a 100644 --- a/modules/global_roles/spec/features/global_role_assignment_spec.rb +++ b/modules/global_roles/spec/features/global_role_assignment_spec.rb @@ -57,8 +57,8 @@ describe 'Global role: Global role assignment', type: :feature, js: true do it 'allows global roles management' do # When I go to the edit page of the user called "bob" visit edit_user_path user - # And I click on "tab-global_roles" - page.find('#tab-global_roles').click + # And I click on "Global Roles" + click_link 'Global Roles' # Then I should see "global_role1" within "#table_principal_roles" page.within('#table_principal_roles') do expect(page).to have_text 'global_role1' diff --git a/modules/grids/config/locales/crowdin/js-el.yml b/modules/grids/config/locales/crowdin/js-el.yml index 32620ea23c..15ad0bac5f 100644 --- a/modules/grids/config/locales/crowdin/js-el.yml +++ b/modules/grids/config/locales/crowdin/js-el.yml @@ -30,13 +30,13 @@ el: no_results: 'Δεν έχουν οριστεί προσαρμοσμένα πεδία για έργα.' project_status: title: 'Κατάσταση έργου' - on_track: 'On track' - off_track: 'Off track' - at_risk: 'At risk' + on_track: 'Eντός πορείας' + off_track: 'Eκτός πορείας' + at_risk: 'Σε κίνδυνο' not_set: 'Μη ορισμένο' subprojects: title: 'Υποέργα' - no_results: 'Δεν υπάρχουν υποπρογράμματα.' + no_results: 'Δεν υπάρχουν υποέργα.' time_entries_list: title: 'Χρόνος που δαπανήθηκε (τις τελευταίες 7 ημέρες)' no_results: 'Δεν υπάρχουν καταχωρήσεις χρόνου για τις τελευταίες 7 ημέρες.' diff --git a/modules/meeting/app/controllers/meeting_contents_controller.rb b/modules/meeting/app/controllers/meeting_contents_controller.rb index b68ddec2d9..48995e8026 100644 --- a/modules/meeting/app/controllers/meeting_contents_controller.rb +++ b/modules/meeting/app/controllers/meeting_contents_controller.rb @@ -38,6 +38,8 @@ class MeetingContentsController < ApplicationController helper :watchers helper :meetings + helper_method :gon + before_action :find_meeting, :find_content before_action :authorize diff --git a/modules/meeting/app/controllers/meetings_controller.rb b/modules/meeting/app/controllers/meetings_controller.rb index 7291dfa7ff..f3f47cca5f 100644 --- a/modules/meeting/app/controllers/meetings_controller.rb +++ b/modules/meeting/app/controllers/meetings_controller.rb @@ -35,6 +35,7 @@ class MeetingsController < ApplicationController helper :watchers helper :meeting_contents + helper_method :gon include WatchersHelper include PaginationHelper diff --git a/modules/meeting/app/views/meetings/show.html.erb b/modules/meeting/app/views/meetings/show.html.erb index 7097fd021c..6de2772ce9 100644 --- a/modules/meeting/app/views/meetings/show.html.erb +++ b/modules/meeting/app/views/meetings/show.html.erb @@ -88,8 +88,8 @@ See docs/COPYRIGHT.rdoc for more details.
    -<%= render_tabs [{:name => 'agenda', :action => :create_meeting_agendas, :partial => 'meeting_contents/show', :label => :label_meeting_agenda, :content => @meeting.agenda || @meeting.build_agenda, :content_type => "meeting_agenda"}, - {:name => 'minutes', :action => :create_meeting_minutes, :partial => 'meeting_contents/show', :label => :label_meeting_minutes, :content => @meeting.minutes || @meeting.build_minutes, :content_type => "meeting_minutes"}] %> +<%= render_tabs [{:name => 'agenda', :action => :create_meeting_agendas, :partial => 'meeting_contents/show', :path => meeting_agenda_path(@meeting), :label => :label_meeting_agenda, :content => @meeting.agenda || @meeting.build_agenda, :content_type => "meeting_agenda"}, + {:name => 'minutes', :action => :create_meeting_minutes, :partial => 'meeting_contents/show', :path => meeting_minutes_path(@meeting), :label => :label_meeting_minutes, :content => @meeting.minutes || @meeting.build_minutes, :content_type => "meeting_minutes"}] %> <% if @meeting.journals.changing.present? %>
    diff --git a/modules/meeting/config/locales/crowdin/ar.yml b/modules/meeting/config/locales/crowdin/ar.yml index 4a909df303..2de804e4bc 100644 --- a/modules/meeting/config/locales/crowdin/ar.yml +++ b/modules/meeting/config/locales/crowdin/ar.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n ar: diff --git a/modules/meeting/config/locales/crowdin/bg.yml b/modules/meeting/config/locales/crowdin/bg.yml index b572d6f5a6..3e8e0c78fb 100644 --- a/modules/meeting/config/locales/crowdin/bg.yml +++ b/modules/meeting/config/locales/crowdin/bg.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n bg: diff --git a/modules/meeting/config/locales/crowdin/ca.yml b/modules/meeting/config/locales/crowdin/ca.yml index af38a7e8f1..df3008e060 100644 --- a/modules/meeting/config/locales/crowdin/ca.yml +++ b/modules/meeting/config/locales/crowdin/ca.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n ca: diff --git a/modules/meeting/config/locales/crowdin/cs.yml b/modules/meeting/config/locales/crowdin/cs.yml index a21ec55045..196a58414d 100644 --- a/modules/meeting/config/locales/crowdin/cs.yml +++ b/modules/meeting/config/locales/crowdin/cs.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n cs: diff --git a/modules/meeting/config/locales/crowdin/da.yml b/modules/meeting/config/locales/crowdin/da.yml index 1de0e58574..c13a11f037 100644 --- a/modules/meeting/config/locales/crowdin/da.yml +++ b/modules/meeting/config/locales/crowdin/da.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n da: diff --git a/modules/meeting/config/locales/crowdin/de.yml b/modules/meeting/config/locales/crowdin/de.yml index fd5c2e7ac0..8a451cc1a3 100644 --- a/modules/meeting/config/locales/crowdin/de.yml +++ b/modules/meeting/config/locales/crowdin/de.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n de: diff --git a/modules/meeting/config/locales/crowdin/el.yml b/modules/meeting/config/locales/crowdin/el.yml index 62a8e2e51c..a5bf474c03 100644 --- a/modules/meeting/config/locales/crowdin/el.yml +++ b/modules/meeting/config/locales/crowdin/el.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n el: @@ -50,7 +57,7 @@ el: label_meeting_open: "Ανοιχτό" label_meeting_agenda_close: "Κλείστε την ατζέντα για να ξεκινήσετε τα Πρακτικά" label_meeting_date_time: "Ημερομηνία/Ώρα" - label_meeting_diff: "Diff" + label_meeting_diff: "Διαφορά" label_notify: "Αποστολή για αναθεώρηση" label_icalendar: "Αποστολή στο iCalendar" label_version: "Έκδοση" @@ -62,15 +69,15 @@ el: permission_edit_meetings: "Επεξεργασία συναντήσεων" permission_delete_meetings: "Διαγραφή συναντήσεων" permission_view_meetings: "Εμφάνιση συναντήσεων" - permission_create_meeting_agendas: "Manage agendas" - permission_close_meeting_agendas: "Close agendas" - permission_send_meeting_agendas_notification: "Send review notification for agendas" + permission_create_meeting_agendas: "Διαχείριση ατζέντας" + permission_close_meeting_agendas: "Κλείσιμο ατζέντας" + permission_send_meeting_agendas_notification: "Αποστολή ειδοποίηση αναθεώρησης για ατζέντες" permission_create_meeting_minutes: "Διαχείριση πρακτικών" permission_send_meeting_minutes_notification: "Αποστολή ειδοποίηση αναθεώρησης για τα πρακτικά" project_module_meetings: "Συναντήσεις" text_duration_in_hours: "Διάρκεια σε ώρες" text_in_hours: "σε ώρες" - text_meeting_agenda_for_meeting: 'agenda for the meeting "%{meeting}"' + text_meeting_agenda_for_meeting: 'ατζέντα για τη συνάντηση "%{meeting}"' text_meeting_closing_are_you_sure: "Είστε βέβαιοι ότι θέλετε να κλείσετε τη συνάντηση;" text_meeting_agenda_open_are_you_sure: "Το μη αποθηκευμένο περιεχόμενο στα πρακτικά θα χαθεί! Συνέχεια;" text_meeting_minutes_for_meeting: 'πρακτικά για τη συνάντηση "%{meeting}"' diff --git a/modules/meeting/config/locales/crowdin/es.yml b/modules/meeting/config/locales/crowdin/es.yml index ff4b4810e4..4eee36da1d 100644 --- a/modules/meeting/config/locales/crowdin/es.yml +++ b/modules/meeting/config/locales/crowdin/es.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n es: diff --git a/modules/meeting/config/locales/crowdin/fi.yml b/modules/meeting/config/locales/crowdin/fi.yml index 5e27e15318..243b538440 100644 --- a/modules/meeting/config/locales/crowdin/fi.yml +++ b/modules/meeting/config/locales/crowdin/fi.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n fi: diff --git a/modules/meeting/config/locales/crowdin/fil.yml b/modules/meeting/config/locales/crowdin/fil.yml index a46d545774..12dd15227a 100644 --- a/modules/meeting/config/locales/crowdin/fil.yml +++ b/modules/meeting/config/locales/crowdin/fil.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n fil: diff --git a/modules/meeting/config/locales/crowdin/fr.yml b/modules/meeting/config/locales/crowdin/fr.yml index 7981ee669a..bb0222cd75 100644 --- a/modules/meeting/config/locales/crowdin/fr.yml +++ b/modules/meeting/config/locales/crowdin/fr.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n fr: diff --git a/modules/meeting/config/locales/crowdin/hr.yml b/modules/meeting/config/locales/crowdin/hr.yml index f7b1388587..bdc91ab4a9 100644 --- a/modules/meeting/config/locales/crowdin/hr.yml +++ b/modules/meeting/config/locales/crowdin/hr.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n hr: diff --git a/modules/meeting/config/locales/crowdin/hu.yml b/modules/meeting/config/locales/crowdin/hu.yml index 07b1393870..b502fc3dbc 100644 --- a/modules/meeting/config/locales/crowdin/hu.yml +++ b/modules/meeting/config/locales/crowdin/hu.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n hu: diff --git a/modules/meeting/config/locales/crowdin/id.yml b/modules/meeting/config/locales/crowdin/id.yml index 9689c921bd..60515ce8e8 100644 --- a/modules/meeting/config/locales/crowdin/id.yml +++ b/modules/meeting/config/locales/crowdin/id.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n id: diff --git a/modules/meeting/config/locales/crowdin/it.yml b/modules/meeting/config/locales/crowdin/it.yml index ff9871b902..559f364f84 100644 --- a/modules/meeting/config/locales/crowdin/it.yml +++ b/modules/meeting/config/locales/crowdin/it.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n it: diff --git a/modules/meeting/config/locales/crowdin/ja.yml b/modules/meeting/config/locales/crowdin/ja.yml index f5d6130009..d9d983e333 100644 --- a/modules/meeting/config/locales/crowdin/ja.yml +++ b/modules/meeting/config/locales/crowdin/ja.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n ja: diff --git a/modules/meeting/config/locales/crowdin/ko.yml b/modules/meeting/config/locales/crowdin/ko.yml index 470d38782f..1c204233a1 100644 --- a/modules/meeting/config/locales/crowdin/ko.yml +++ b/modules/meeting/config/locales/crowdin/ko.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n ko: diff --git a/modules/meeting/config/locales/crowdin/lt.yml b/modules/meeting/config/locales/crowdin/lt.yml index f4241222e6..e1e61f2428 100644 --- a/modules/meeting/config/locales/crowdin/lt.yml +++ b/modules/meeting/config/locales/crowdin/lt.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n lt: diff --git a/modules/meeting/config/locales/crowdin/nl.yml b/modules/meeting/config/locales/crowdin/nl.yml index 3b32d44f80..391804baa8 100644 --- a/modules/meeting/config/locales/crowdin/nl.yml +++ b/modules/meeting/config/locales/crowdin/nl.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n nl: diff --git a/modules/meeting/config/locales/crowdin/no.yml b/modules/meeting/config/locales/crowdin/no.yml index 9d58016fd5..3546aa872a 100644 --- a/modules/meeting/config/locales/crowdin/no.yml +++ b/modules/meeting/config/locales/crowdin/no.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n "no": diff --git a/modules/meeting/config/locales/crowdin/pl.yml b/modules/meeting/config/locales/crowdin/pl.yml index dc7383cf54..7a089ebfef 100644 --- a/modules/meeting/config/locales/crowdin/pl.yml +++ b/modules/meeting/config/locales/crowdin/pl.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n pl: diff --git a/modules/meeting/config/locales/crowdin/pt-BR.yml b/modules/meeting/config/locales/crowdin/pt-BR.yml index 6657b6939f..23cd090546 100644 --- a/modules/meeting/config/locales/crowdin/pt-BR.yml +++ b/modules/meeting/config/locales/crowdin/pt-BR.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n pt-BR: diff --git a/modules/meeting/config/locales/crowdin/pt.yml b/modules/meeting/config/locales/crowdin/pt.yml index 98acd5aeaa..eb2682b47d 100644 --- a/modules/meeting/config/locales/crowdin/pt.yml +++ b/modules/meeting/config/locales/crowdin/pt.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n pt: diff --git a/modules/meeting/config/locales/crowdin/ro.yml b/modules/meeting/config/locales/crowdin/ro.yml index 76bbac60dc..4fd594b199 100644 --- a/modules/meeting/config/locales/crowdin/ro.yml +++ b/modules/meeting/config/locales/crowdin/ro.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n ro: diff --git a/modules/meeting/config/locales/crowdin/ru.yml b/modules/meeting/config/locales/crowdin/ru.yml index a10f64627e..6b470008e0 100644 --- a/modules/meeting/config/locales/crowdin/ru.yml +++ b/modules/meeting/config/locales/crowdin/ru.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n ru: diff --git a/modules/meeting/config/locales/crowdin/sk.yml b/modules/meeting/config/locales/crowdin/sk.yml index 0a0f7c8fea..0a34358234 100644 --- a/modules/meeting/config/locales/crowdin/sk.yml +++ b/modules/meeting/config/locales/crowdin/sk.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n sk: diff --git a/modules/meeting/config/locales/crowdin/sv.yml b/modules/meeting/config/locales/crowdin/sv.yml index 5a4b1bc669..9233cc67d3 100644 --- a/modules/meeting/config/locales/crowdin/sv.yml +++ b/modules/meeting/config/locales/crowdin/sv.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n sv: diff --git a/modules/meeting/config/locales/crowdin/tr.yml b/modules/meeting/config/locales/crowdin/tr.yml index be68286e20..388f33676b 100644 --- a/modules/meeting/config/locales/crowdin/tr.yml +++ b/modules/meeting/config/locales/crowdin/tr.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n tr: diff --git a/modules/meeting/config/locales/crowdin/uk.yml b/modules/meeting/config/locales/crowdin/uk.yml index c6de34aed0..c55f724df0 100644 --- a/modules/meeting/config/locales/crowdin/uk.yml +++ b/modules/meeting/config/locales/crowdin/uk.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n uk: diff --git a/modules/meeting/config/locales/crowdin/vi.yml b/modules/meeting/config/locales/crowdin/vi.yml index 06dcd48fd0..829bea62cc 100644 --- a/modules/meeting/config/locales/crowdin/vi.yml +++ b/modules/meeting/config/locales/crowdin/vi.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n vi: diff --git a/modules/meeting/config/locales/crowdin/zh-CN.yml b/modules/meeting/config/locales/crowdin/zh-CN.yml index 7837053aaf..b00d5446dc 100644 --- a/modules/meeting/config/locales/crowdin/zh-CN.yml +++ b/modules/meeting/config/locales/crowdin/zh-CN.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n zh-CN: diff --git a/modules/meeting/config/locales/crowdin/zh-TW.yml b/modules/meeting/config/locales/crowdin/zh-TW.yml index 5dd2c4ab0f..dde6c94e20 100644 --- a/modules/meeting/config/locales/crowdin/zh-TW.yml +++ b/modules/meeting/config/locales/crowdin/zh-TW.yml @@ -1,8 +1,15 @@ #-- copyright -#OpenProject Meeting Plugin -#Copyright (C) 2011-2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -10,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ #English strings go here for Rails i18n zh-TW: diff --git a/modules/meeting/features/meeting_close.feature b/modules/meeting/features/meeting_close.feature index 948445ada0..29ac05a2f4 100644 --- a/modules/meeting/features/meeting_close.feature +++ b/modules/meeting/features/meeting_close.feature @@ -60,7 +60,7 @@ Feature: Close and open meeting agendas | close_meeting_agendas | When I am already logged in as "alice" And I go to the show page of the meeting called "Bobs Meeting" - And I follow "Minutes" within ".tabs" + And I follow "Minutes" within ".scrollable-tabs" Then I should not see "Edit" within ".meeting_minutes" And I should see "Close the agenda to begin the Minutes" within ".meeting_minutes" diff --git a/modules/meeting/spec/features/meetings_copy_spec.rb b/modules/meeting/spec/features/meetings_copy_spec.rb index 8c3fdbfc12..a256d74159 100644 --- a/modules/meeting/spec/features/meetings_copy_spec.rb +++ b/modules/meeting/spec/features/meetings_copy_spec.rb @@ -28,7 +28,7 @@ require 'spec_helper' -describe 'Meetings copy', type: :feature do +describe 'Meetings copy', type: :feature, js: true do let(:project) { FactoryBot.create :project, enabled_module_names: %w[meetings] } let(:user) do FactoryBot.create(:user, diff --git a/modules/meeting/spec/features/meetings_show_spec.rb b/modules/meeting/spec/features/meetings_show_spec.rb index 8683c25fc6..f491752740 100644 --- a/modules/meeting/spec/features/meetings_show_spec.rb +++ b/modules/meeting/spec/features/meetings_show_spec.rb @@ -96,7 +96,7 @@ describe 'Meetings', type: :feature, js: true do it 'can not edit the minutes' do visit meeting_path(meeting) - find('#tab-minutes').click + click_link 'Minutes' expect(page).to have_no_selector('.meeting_minutes', text: 'Edit') expect(page).to have_selector('.meeting_minutes', text: 'There is currently nothing to display') end diff --git a/modules/openid_connect/config/locales/crowdin/el.yml b/modules/openid_connect/config/locales/crowdin/el.yml index 12489dbc35..c3200c27ea 100644 --- a/modules/openid_connect/config/locales/crowdin/el.yml +++ b/modules/openid_connect/config/locales/crowdin/el.yml @@ -1,6 +1,6 @@ el: logout_warning: > - Έχετε αποσυνδεθεί. Τα περιεχόμενα οποιασδήποτε φόρμας που υποβάλλετε ενδέχεται να χαθούν. Παρακαλώ [συνδεθείτε]. + Έχετε αποσυνδεθεί. Τα περιεχόμενα οποιασδήποτε φόρμας που υποβάλετε ενδέχεται να χαθούν. Παρακαλούμε [συνδεθείτε]. activemodel: attributes: openid_connect/provider: @@ -8,12 +8,12 @@ el: display_name: Εμφανιζόμενο όνομα identifier: Αναγνωριστικό secret: Μυστικό - scope: Εμβέλεια + scope: Φυσικό Αντικείμενο openid_connect: menu_title: Πάροχοι OpenID providers: label_add_new: Προσθήκη νέου παρόχου OpenID label_edit: Επεξεργασία παρόχου OpenID %{name} - no_results_table: Δεν έχουν καθοριστεί πάροχοι. + no_results_table: Δεν έχουν οριστεί πάροχοι ακόμη. plural: Πάροχοι OpenID singular: Πάροχος OpenID diff --git a/modules/pdf_export/config/locales/crowdin/ar.yml b/modules/pdf_export/config/locales/crowdin/ar.yml index 2a13675a93..07953b3163 100644 --- a/modules/pdf_export/config/locales/crowdin/ar.yml +++ b/modules/pdf_export/config/locales/crowdin/ar.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ar: error_can_not_delete_export_card_configuration: "لا يمكن حذف هذا التنسيق." diff --git a/modules/pdf_export/config/locales/crowdin/bg.yml b/modules/pdf_export/config/locales/crowdin/bg.yml index c222395d65..b516d79bd2 100644 --- a/modules/pdf_export/config/locales/crowdin/bg.yml +++ b/modules/pdf_export/config/locales/crowdin/bg.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ bg: error_can_not_delete_export_card_configuration: "This config cannot be deleted." diff --git a/modules/pdf_export/config/locales/crowdin/ca.yml b/modules/pdf_export/config/locales/crowdin/ca.yml index b96cfefda1..cbd674c4e8 100644 --- a/modules/pdf_export/config/locales/crowdin/ca.yml +++ b/modules/pdf_export/config/locales/crowdin/ca.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ca: error_can_not_delete_export_card_configuration: "This config cannot be deleted." diff --git a/modules/pdf_export/config/locales/crowdin/cs.yml b/modules/pdf_export/config/locales/crowdin/cs.yml index 4fe6d04bdc..6a28a4c0c0 100644 --- a/modules/pdf_export/config/locales/crowdin/cs.yml +++ b/modules/pdf_export/config/locales/crowdin/cs.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ cs: error_can_not_delete_export_card_configuration: "This config cannot be deleted." diff --git a/modules/pdf_export/config/locales/crowdin/da.yml b/modules/pdf_export/config/locales/crowdin/da.yml index 0e054f869a..5efa0b591a 100644 --- a/modules/pdf_export/config/locales/crowdin/da.yml +++ b/modules/pdf_export/config/locales/crowdin/da.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ da: error_can_not_delete_export_card_configuration: "Denne opsætning kan ikke slettes." diff --git a/modules/pdf_export/config/locales/crowdin/de.yml b/modules/pdf_export/config/locales/crowdin/de.yml index c97768741a..0c33af0d9e 100644 --- a/modules/pdf_export/config/locales/crowdin/de.yml +++ b/modules/pdf_export/config/locales/crowdin/de.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ de: error_can_not_delete_export_card_configuration: "Diese Konfiguration kann nicht gelöscht werden." diff --git a/modules/pdf_export/config/locales/crowdin/el.yml b/modules/pdf_export/config/locales/crowdin/el.yml index a405c0c6a6..d55999a295 100644 --- a/modules/pdf_export/config/locales/crowdin/el.yml +++ b/modules/pdf_export/config/locales/crowdin/el.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ el: error_can_not_delete_export_card_configuration: "Αυτό το αρχείο ρυθμίσεων δεν μπορεί να διαγραφεί." diff --git a/modules/pdf_export/config/locales/crowdin/es.yml b/modules/pdf_export/config/locales/crowdin/es.yml index df0e14d712..6fd3b9064e 100644 --- a/modules/pdf_export/config/locales/crowdin/es.yml +++ b/modules/pdf_export/config/locales/crowdin/es.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ es: error_can_not_delete_export_card_configuration: "Esta configuración no puede ser eliminada." diff --git a/modules/pdf_export/config/locales/crowdin/fi.yml b/modules/pdf_export/config/locales/crowdin/fi.yml index 4891057522..8b0e781884 100644 --- a/modules/pdf_export/config/locales/crowdin/fi.yml +++ b/modules/pdf_export/config/locales/crowdin/fi.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fi: error_can_not_delete_export_card_configuration: "Tätä konfiguraatioa ei voi poistaa." diff --git a/modules/pdf_export/config/locales/crowdin/fil.yml b/modules/pdf_export/config/locales/crowdin/fil.yml index dac225328e..81f512cab6 100644 --- a/modules/pdf_export/config/locales/crowdin/fil.yml +++ b/modules/pdf_export/config/locales/crowdin/fil.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fil: error_can_not_delete_export_card_configuration: "This config cannot be deleted." diff --git a/modules/pdf_export/config/locales/crowdin/fr.yml b/modules/pdf_export/config/locales/crowdin/fr.yml index 80fcffe78f..d0e99ffbbe 100644 --- a/modules/pdf_export/config/locales/crowdin/fr.yml +++ b/modules/pdf_export/config/locales/crowdin/fr.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ fr: error_can_not_delete_export_card_configuration: "Cette configuration ne peut pas être supprimée." diff --git a/modules/pdf_export/config/locales/crowdin/hr.yml b/modules/pdf_export/config/locales/crowdin/hr.yml index e8c9734db1..7ae1d92d74 100644 --- a/modules/pdf_export/config/locales/crowdin/hr.yml +++ b/modules/pdf_export/config/locales/crowdin/hr.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hr: error_can_not_delete_export_card_configuration: "Ova konfiguracija ne može biti izbrisana." diff --git a/modules/pdf_export/config/locales/crowdin/hu.yml b/modules/pdf_export/config/locales/crowdin/hu.yml index 3f06850adb..d21ca4b9e2 100644 --- a/modules/pdf_export/config/locales/crowdin/hu.yml +++ b/modules/pdf_export/config/locales/crowdin/hu.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ hu: error_can_not_delete_export_card_configuration: "Ez az elrendezés nem törölhető." diff --git a/modules/pdf_export/config/locales/crowdin/id.yml b/modules/pdf_export/config/locales/crowdin/id.yml index d156fc43f2..69f7b4a90e 100644 --- a/modules/pdf_export/config/locales/crowdin/id.yml +++ b/modules/pdf_export/config/locales/crowdin/id.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ id: error_can_not_delete_export_card_configuration: "Konfigurasi ini tidak dapat dihapus." diff --git a/modules/pdf_export/config/locales/crowdin/it.yml b/modules/pdf_export/config/locales/crowdin/it.yml index f77fbc6de6..d124ff9bfa 100644 --- a/modules/pdf_export/config/locales/crowdin/it.yml +++ b/modules/pdf_export/config/locales/crowdin/it.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ it: error_can_not_delete_export_card_configuration: "Questa configurazione non può essere eliminata." diff --git a/modules/pdf_export/config/locales/crowdin/ja.yml b/modules/pdf_export/config/locales/crowdin/ja.yml index 5004325943..ea00c72ac2 100644 --- a/modules/pdf_export/config/locales/crowdin/ja.yml +++ b/modules/pdf_export/config/locales/crowdin/ja.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ja: error_can_not_delete_export_card_configuration: "この設定は削除できません。" diff --git a/modules/pdf_export/config/locales/crowdin/ko.yml b/modules/pdf_export/config/locales/crowdin/ko.yml index 31ad88b9fc..a05ec75355 100644 --- a/modules/pdf_export/config/locales/crowdin/ko.yml +++ b/modules/pdf_export/config/locales/crowdin/ko.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ko: error_can_not_delete_export_card_configuration: "이 구성은 삭제할 수 없습니다" diff --git a/modules/pdf_export/config/locales/crowdin/lt.yml b/modules/pdf_export/config/locales/crowdin/lt.yml index 9b72412a00..84ca0dae86 100644 --- a/modules/pdf_export/config/locales/crowdin/lt.yml +++ b/modules/pdf_export/config/locales/crowdin/lt.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ lt: error_can_not_delete_export_card_configuration: "Ši konfigūracija negali būti ištrinta." diff --git a/modules/pdf_export/config/locales/crowdin/nl.yml b/modules/pdf_export/config/locales/crowdin/nl.yml index ebb02030a4..39772b1541 100644 --- a/modules/pdf_export/config/locales/crowdin/nl.yml +++ b/modules/pdf_export/config/locales/crowdin/nl.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ nl: error_can_not_delete_export_card_configuration: "Deze configuratie kan niet verwijderd worden." diff --git a/modules/pdf_export/config/locales/crowdin/no.yml b/modules/pdf_export/config/locales/crowdin/no.yml index 0d272c3b2a..08678a7360 100644 --- a/modules/pdf_export/config/locales/crowdin/no.yml +++ b/modules/pdf_export/config/locales/crowdin/no.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ "no": error_can_not_delete_export_card_configuration: "Denne konfigurasjonen kan ikke slettes." diff --git a/modules/pdf_export/config/locales/crowdin/pl.yml b/modules/pdf_export/config/locales/crowdin/pl.yml index 2f07752a26..0b7a6c1ba1 100644 --- a/modules/pdf_export/config/locales/crowdin/pl.yml +++ b/modules/pdf_export/config/locales/crowdin/pl.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pl: error_can_not_delete_export_card_configuration: "Konfiguracja nie może być usunięta." diff --git a/modules/pdf_export/config/locales/crowdin/pt-BR.yml b/modules/pdf_export/config/locales/crowdin/pt-BR.yml index 42c8c20dc1..1f0d2f1498 100644 --- a/modules/pdf_export/config/locales/crowdin/pt-BR.yml +++ b/modules/pdf_export/config/locales/crowdin/pt-BR.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt-BR: error_can_not_delete_export_card_configuration: "Esta configuração não pode ser excluída." diff --git a/modules/pdf_export/config/locales/crowdin/pt.yml b/modules/pdf_export/config/locales/crowdin/pt.yml index eb83445fc9..f201ed05b2 100644 --- a/modules/pdf_export/config/locales/crowdin/pt.yml +++ b/modules/pdf_export/config/locales/crowdin/pt.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ pt: error_can_not_delete_export_card_configuration: "Esta configuração não pode ser apagada." diff --git a/modules/pdf_export/config/locales/crowdin/ro.yml b/modules/pdf_export/config/locales/crowdin/ro.yml index 52f6ab70c3..f787bb6798 100644 --- a/modules/pdf_export/config/locales/crowdin/ro.yml +++ b/modules/pdf_export/config/locales/crowdin/ro.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ro: error_can_not_delete_export_card_configuration: "This config cannot be deleted." diff --git a/modules/pdf_export/config/locales/crowdin/ru.yml b/modules/pdf_export/config/locales/crowdin/ru.yml index a837d95bd1..285c6bbf3a 100644 --- a/modules/pdf_export/config/locales/crowdin/ru.yml +++ b/modules/pdf_export/config/locales/crowdin/ru.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ ru: error_can_not_delete_export_card_configuration: "Невозможно удалить эту конфигурацию." diff --git a/modules/pdf_export/config/locales/crowdin/sk.yml b/modules/pdf_export/config/locales/crowdin/sk.yml index 68121b17a2..c1e76c395c 100644 --- a/modules/pdf_export/config/locales/crowdin/sk.yml +++ b/modules/pdf_export/config/locales/crowdin/sk.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sk: error_can_not_delete_export_card_configuration: "Táto konfigurácia nemôže byť odstránená." diff --git a/modules/pdf_export/config/locales/crowdin/sv.yml b/modules/pdf_export/config/locales/crowdin/sv.yml index 451601e246..e550c848d5 100644 --- a/modules/pdf_export/config/locales/crowdin/sv.yml +++ b/modules/pdf_export/config/locales/crowdin/sv.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ sv: error_can_not_delete_export_card_configuration: "Denna konfiguration kan inte tas bort." diff --git a/modules/pdf_export/config/locales/crowdin/tr.yml b/modules/pdf_export/config/locales/crowdin/tr.yml index ac336396e8..faa5a1b4a4 100644 --- a/modules/pdf_export/config/locales/crowdin/tr.yml +++ b/modules/pdf_export/config/locales/crowdin/tr.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ tr: error_can_not_delete_export_card_configuration: "Konfigürasyon Silinemedi." diff --git a/modules/pdf_export/config/locales/crowdin/uk.yml b/modules/pdf_export/config/locales/crowdin/uk.yml index ab780bd645..466602edd0 100644 --- a/modules/pdf_export/config/locales/crowdin/uk.yml +++ b/modules/pdf_export/config/locales/crowdin/uk.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ uk: error_can_not_delete_export_card_configuration: "Цей файл неможливо видалити." diff --git a/modules/pdf_export/config/locales/crowdin/vi.yml b/modules/pdf_export/config/locales/crowdin/vi.yml index b4cac7a384..c752a014fe 100644 --- a/modules/pdf_export/config/locales/crowdin/vi.yml +++ b/modules/pdf_export/config/locales/crowdin/vi.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ vi: error_can_not_delete_export_card_configuration: "This config cannot be deleted." diff --git a/modules/pdf_export/config/locales/crowdin/zh-CN.yml b/modules/pdf_export/config/locales/crowdin/zh-CN.yml index 58a173b720..8fa0b911a4 100644 --- a/modules/pdf_export/config/locales/crowdin/zh-CN.yml +++ b/modules/pdf_export/config/locales/crowdin/zh-CN.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-CN: error_can_not_delete_export_card_configuration: "无法删除此配置。" diff --git a/modules/pdf_export/config/locales/crowdin/zh-TW.yml b/modules/pdf_export/config/locales/crowdin/zh-TW.yml index 7c71a15a5e..a337782343 100644 --- a/modules/pdf_export/config/locales/crowdin/zh-TW.yml +++ b/modules/pdf_export/config/locales/crowdin/zh-TW.yml @@ -1,8 +1,11 @@ #-- copyright -#OpenProject PDF Export Plugin -#Copyright (C)2014 the OpenProject Foundation (OPF) -#This program is free software; you can redistribute it and/or modify it under -#the terms of the GNU General Public License version 3. +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License #as published by the Free Software Foundation; either version 2 @@ -14,7 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -#See doc/COPYRIGHT.md for more details. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-TW: error_can_not_delete_export_card_configuration: "不能刪除設定。" diff --git a/modules/reporting/config/locales/crowdin/ar.yml b/modules/reporting/config/locales/crowdin/ar.yml index caddf63bd0..a5e181bc6e 100644 --- a/modules/reporting/config/locales/crowdin/ar.yml +++ b/modules/reporting/config/locales/crowdin/ar.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ar: diff --git a/modules/reporting/config/locales/crowdin/bg.yml b/modules/reporting/config/locales/crowdin/bg.yml index 1652a72a9e..6a3b37c09c 100644 --- a/modules/reporting/config/locales/crowdin/bg.yml +++ b/modules/reporting/config/locales/crowdin/bg.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- bg: diff --git a/modules/reporting/config/locales/crowdin/ca.yml b/modules/reporting/config/locales/crowdin/ca.yml index 38c2ba5806..552ddd35bb 100644 --- a/modules/reporting/config/locales/crowdin/ca.yml +++ b/modules/reporting/config/locales/crowdin/ca.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ca: diff --git a/modules/reporting/config/locales/crowdin/cs.yml b/modules/reporting/config/locales/crowdin/cs.yml index 713e74566b..f003b43b29 100644 --- a/modules/reporting/config/locales/crowdin/cs.yml +++ b/modules/reporting/config/locales/crowdin/cs.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- cs: diff --git a/modules/reporting/config/locales/crowdin/da.yml b/modules/reporting/config/locales/crowdin/da.yml index c56a75e4ac..30d8e006aa 100644 --- a/modules/reporting/config/locales/crowdin/da.yml +++ b/modules/reporting/config/locales/crowdin/da.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- da: diff --git a/modules/reporting/config/locales/crowdin/de.yml b/modules/reporting/config/locales/crowdin/de.yml index 3b530b1b0b..625cd300ad 100644 --- a/modules/reporting/config/locales/crowdin/de.yml +++ b/modules/reporting/config/locales/crowdin/de.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- de: diff --git a/modules/reporting/config/locales/crowdin/el.yml b/modules/reporting/config/locales/crowdin/el.yml index 7bcdd5e645..3a9a70bdd9 100644 --- a/modules/reporting/config/locales/crowdin/el.yml +++ b/modules/reporting/config/locales/crowdin/el.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,14 +17,15 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- el: button_save_as: "Αποθήκευση αναφοράς ως..." comments: "Σχόλιο" cost_reports_title: "Αναφορές κόστους" - label_cost_report: "Cost report" - description_drill_down: "Προβολή λεπτομερειών" + label_cost_report: "Αναφορά κόστους" + description_drill_down: "Εμφάνιση λεπτομερειών" description_filter_selection: "Επιλογή" description_multi_select: "Εμφάνιση πολλαπλής επιλογής" description_remove_filter: "Αφαίρεση φίλτρου" @@ -37,7 +44,7 @@ el: label_is_project_with_subprojects: "είναι (περιλαμβάνει υποέργα)" label_work_package_attributes: "Χαρακτηριστικά πακέτου εργασίας" label_less: "<" - label_money: "Cash value" + label_money: "Αξία μετρητών" label_month_reporting: "Μήνας (Δαπανήθηκε)" label_new_report: "Νέα αναφορά κόστους" label_open: "ανοιχτό" diff --git a/modules/reporting/config/locales/crowdin/es.yml b/modules/reporting/config/locales/crowdin/es.yml index be4c2a81c6..ba0e595055 100644 --- a/modules/reporting/config/locales/crowdin/es.yml +++ b/modules/reporting/config/locales/crowdin/es.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- es: diff --git a/modules/reporting/config/locales/crowdin/fi.yml b/modules/reporting/config/locales/crowdin/fi.yml index 7eb1567555..f9ace37a1e 100644 --- a/modules/reporting/config/locales/crowdin/fi.yml +++ b/modules/reporting/config/locales/crowdin/fi.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fi: diff --git a/modules/reporting/config/locales/crowdin/fil.yml b/modules/reporting/config/locales/crowdin/fil.yml index d2b942d852..f746b3fdf3 100644 --- a/modules/reporting/config/locales/crowdin/fil.yml +++ b/modules/reporting/config/locales/crowdin/fil.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fil: diff --git a/modules/reporting/config/locales/crowdin/fr.yml b/modules/reporting/config/locales/crowdin/fr.yml index e0c38efcce..2e39d72363 100644 --- a/modules/reporting/config/locales/crowdin/fr.yml +++ b/modules/reporting/config/locales/crowdin/fr.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fr: diff --git a/modules/reporting/config/locales/crowdin/hr.yml b/modules/reporting/config/locales/crowdin/hr.yml index 0e9469b91b..be178c827b 100644 --- a/modules/reporting/config/locales/crowdin/hr.yml +++ b/modules/reporting/config/locales/crowdin/hr.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- hr: diff --git a/modules/reporting/config/locales/crowdin/hu.yml b/modules/reporting/config/locales/crowdin/hu.yml index dbefe2d1af..6ffa40dca2 100644 --- a/modules/reporting/config/locales/crowdin/hu.yml +++ b/modules/reporting/config/locales/crowdin/hu.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- hu: diff --git a/modules/reporting/config/locales/crowdin/id.yml b/modules/reporting/config/locales/crowdin/id.yml index 3d491a14ab..ce6c9e31c5 100644 --- a/modules/reporting/config/locales/crowdin/id.yml +++ b/modules/reporting/config/locales/crowdin/id.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- id: diff --git a/modules/reporting/config/locales/crowdin/it.yml b/modules/reporting/config/locales/crowdin/it.yml index 118b7d7bec..b7a72b24ad 100644 --- a/modules/reporting/config/locales/crowdin/it.yml +++ b/modules/reporting/config/locales/crowdin/it.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- it: diff --git a/modules/reporting/config/locales/crowdin/ja.yml b/modules/reporting/config/locales/crowdin/ja.yml index f4f6039d21..ce5d779bbe 100644 --- a/modules/reporting/config/locales/crowdin/ja.yml +++ b/modules/reporting/config/locales/crowdin/ja.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ja: diff --git a/modules/reporting/config/locales/crowdin/ko.yml b/modules/reporting/config/locales/crowdin/ko.yml index 1703fbb9e4..23e1357d49 100644 --- a/modules/reporting/config/locales/crowdin/ko.yml +++ b/modules/reporting/config/locales/crowdin/ko.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ko: diff --git a/modules/reporting/config/locales/crowdin/lt.yml b/modules/reporting/config/locales/crowdin/lt.yml index 087ec81576..a1735232db 100644 --- a/modules/reporting/config/locales/crowdin/lt.yml +++ b/modules/reporting/config/locales/crowdin/lt.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- lt: diff --git a/modules/reporting/config/locales/crowdin/nl.yml b/modules/reporting/config/locales/crowdin/nl.yml index e0d945204d..a944119b83 100644 --- a/modules/reporting/config/locales/crowdin/nl.yml +++ b/modules/reporting/config/locales/crowdin/nl.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- nl: diff --git a/modules/reporting/config/locales/crowdin/no.yml b/modules/reporting/config/locales/crowdin/no.yml index 050306685b..d2b1330927 100644 --- a/modules/reporting/config/locales/crowdin/no.yml +++ b/modules/reporting/config/locales/crowdin/no.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- "no": diff --git a/modules/reporting/config/locales/crowdin/pl.yml b/modules/reporting/config/locales/crowdin/pl.yml index 9f46a3b6b1..244b22cb95 100644 --- a/modules/reporting/config/locales/crowdin/pl.yml +++ b/modules/reporting/config/locales/crowdin/pl.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pl: diff --git a/modules/reporting/config/locales/crowdin/pt-BR.yml b/modules/reporting/config/locales/crowdin/pt-BR.yml index 40ab66f7fb..f05494aae7 100644 --- a/modules/reporting/config/locales/crowdin/pt-BR.yml +++ b/modules/reporting/config/locales/crowdin/pt-BR.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pt-BR: diff --git a/modules/reporting/config/locales/crowdin/pt.yml b/modules/reporting/config/locales/crowdin/pt.yml index 9117dcada1..44f7b7b0eb 100644 --- a/modules/reporting/config/locales/crowdin/pt.yml +++ b/modules/reporting/config/locales/crowdin/pt.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pt: diff --git a/modules/reporting/config/locales/crowdin/ro.yml b/modules/reporting/config/locales/crowdin/ro.yml index 1a7d536269..8f211cb80e 100644 --- a/modules/reporting/config/locales/crowdin/ro.yml +++ b/modules/reporting/config/locales/crowdin/ro.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ro: diff --git a/modules/reporting/config/locales/crowdin/ru.yml b/modules/reporting/config/locales/crowdin/ru.yml index 31b674e45a..10239ced0e 100644 --- a/modules/reporting/config/locales/crowdin/ru.yml +++ b/modules/reporting/config/locales/crowdin/ru.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ru: diff --git a/modules/reporting/config/locales/crowdin/sk.yml b/modules/reporting/config/locales/crowdin/sk.yml index e000a1d238..0e536d2367 100644 --- a/modules/reporting/config/locales/crowdin/sk.yml +++ b/modules/reporting/config/locales/crowdin/sk.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- sk: diff --git a/modules/reporting/config/locales/crowdin/sv.yml b/modules/reporting/config/locales/crowdin/sv.yml index 2bc66d521f..80baf63a36 100644 --- a/modules/reporting/config/locales/crowdin/sv.yml +++ b/modules/reporting/config/locales/crowdin/sv.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- sv: diff --git a/modules/reporting/config/locales/crowdin/tr.yml b/modules/reporting/config/locales/crowdin/tr.yml index 6f18e88b86..4529705fb5 100644 --- a/modules/reporting/config/locales/crowdin/tr.yml +++ b/modules/reporting/config/locales/crowdin/tr.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- tr: diff --git a/modules/reporting/config/locales/crowdin/uk.yml b/modules/reporting/config/locales/crowdin/uk.yml index 891c6945f2..a16af76733 100644 --- a/modules/reporting/config/locales/crowdin/uk.yml +++ b/modules/reporting/config/locales/crowdin/uk.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- uk: diff --git a/modules/reporting/config/locales/crowdin/vi.yml b/modules/reporting/config/locales/crowdin/vi.yml index 9e047cd05c..e09ef6e6ab 100644 --- a/modules/reporting/config/locales/crowdin/vi.yml +++ b/modules/reporting/config/locales/crowdin/vi.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- vi: diff --git a/modules/reporting/config/locales/crowdin/zh-CN.yml b/modules/reporting/config/locales/crowdin/zh-CN.yml index 3c8e54d722..c284c3b71a 100644 --- a/modules/reporting/config/locales/crowdin/zh-CN.yml +++ b/modules/reporting/config/locales/crowdin/zh-CN.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- zh-CN: diff --git a/modules/reporting/config/locales/crowdin/zh-TW.yml b/modules/reporting/config/locales/crowdin/zh-TW.yml index 3ad3047562..ab04b524ee 100644 --- a/modules/reporting/config/locales/crowdin/zh-TW.yml +++ b/modules/reporting/config/locales/crowdin/zh-TW.yml @@ -1,9 +1,15 @@ #-- copyright -#OpenProject Reporting Plugin -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- zh-TW: diff --git a/modules/reporting_engine/config/locales/crowdin/ar.yml b/modules/reporting_engine/config/locales/crowdin/ar.yml index f28a230635..a62d83f1aa 100644 --- a/modules/reporting_engine/config/locales/crowdin/ar.yml +++ b/modules/reporting_engine/config/locales/crowdin/ar.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ar: diff --git a/modules/reporting_engine/config/locales/crowdin/bg.yml b/modules/reporting_engine/config/locales/crowdin/bg.yml index 3be07dd27f..3358b68106 100644 --- a/modules/reporting_engine/config/locales/crowdin/bg.yml +++ b/modules/reporting_engine/config/locales/crowdin/bg.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- bg: diff --git a/modules/reporting_engine/config/locales/crowdin/ca.yml b/modules/reporting_engine/config/locales/crowdin/ca.yml index b686284525..7059a5c880 100644 --- a/modules/reporting_engine/config/locales/crowdin/ca.yml +++ b/modules/reporting_engine/config/locales/crowdin/ca.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ca: diff --git a/modules/reporting_engine/config/locales/crowdin/cs.yml b/modules/reporting_engine/config/locales/crowdin/cs.yml index d6e031a52f..4c45494dcb 100644 --- a/modules/reporting_engine/config/locales/crowdin/cs.yml +++ b/modules/reporting_engine/config/locales/crowdin/cs.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- cs: diff --git a/modules/reporting_engine/config/locales/crowdin/da.yml b/modules/reporting_engine/config/locales/crowdin/da.yml index d035cb4f70..fe144f3a67 100644 --- a/modules/reporting_engine/config/locales/crowdin/da.yml +++ b/modules/reporting_engine/config/locales/crowdin/da.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- da: diff --git a/modules/reporting_engine/config/locales/crowdin/de.yml b/modules/reporting_engine/config/locales/crowdin/de.yml index 64238103a9..fe0b994525 100644 --- a/modules/reporting_engine/config/locales/crowdin/de.yml +++ b/modules/reporting_engine/config/locales/crowdin/de.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- de: diff --git a/modules/reporting_engine/config/locales/crowdin/el.yml b/modules/reporting_engine/config/locales/crowdin/el.yml index 18f6f52876..f0c87a9d63 100644 --- a/modules/reporting_engine/config/locales/crowdin/el.yml +++ b/modules/reporting_engine/config/locales/crowdin/el.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,10 +17,11 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- el: - description_drill_down: "Προβολή λεπτομερειών" + description_drill_down: "Εμφάνιση λεπτομερειών" label_click_to_edit: "Κάντε κλικ για επεξεργασία." label_columns: "Στήλες" label_count: "Πλήθος" @@ -23,8 +30,8 @@ el: label_filter_plural: "Φίλτρα" label_greater: ">" label_group_by: "Ομαδοποίηση κατά" - label_group_by_add: "Προσθέστε το χαρακτηριστικό Ομαδοποίηση" - label_inactive: "«αδρανής»" + label_group_by_add: "Προσθήκη χαρακτηριστικού Ομαδοποίησης-κατά" + label_inactive: "«αδρανές»" label_less: "<" label_no: "Όχι" label_none: "(δεν υπάρχουν δεδομένα)" diff --git a/modules/reporting_engine/config/locales/crowdin/es.yml b/modules/reporting_engine/config/locales/crowdin/es.yml index 0617be5f31..166e87ce30 100644 --- a/modules/reporting_engine/config/locales/crowdin/es.yml +++ b/modules/reporting_engine/config/locales/crowdin/es.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- es: diff --git a/modules/reporting_engine/config/locales/crowdin/fi.yml b/modules/reporting_engine/config/locales/crowdin/fi.yml index 8b66a9a1a4..361549b977 100644 --- a/modules/reporting_engine/config/locales/crowdin/fi.yml +++ b/modules/reporting_engine/config/locales/crowdin/fi.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fi: diff --git a/modules/reporting_engine/config/locales/crowdin/fil.yml b/modules/reporting_engine/config/locales/crowdin/fil.yml index 5f80eb5ef8..bcfedf2adb 100644 --- a/modules/reporting_engine/config/locales/crowdin/fil.yml +++ b/modules/reporting_engine/config/locales/crowdin/fil.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fil: diff --git a/modules/reporting_engine/config/locales/crowdin/fr.yml b/modules/reporting_engine/config/locales/crowdin/fr.yml index ee37e9def5..6b2e6a6137 100644 --- a/modules/reporting_engine/config/locales/crowdin/fr.yml +++ b/modules/reporting_engine/config/locales/crowdin/fr.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- fr: diff --git a/modules/reporting_engine/config/locales/crowdin/hr.yml b/modules/reporting_engine/config/locales/crowdin/hr.yml index 606e728fea..0a7e07f105 100644 --- a/modules/reporting_engine/config/locales/crowdin/hr.yml +++ b/modules/reporting_engine/config/locales/crowdin/hr.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- hr: diff --git a/modules/reporting_engine/config/locales/crowdin/hu.yml b/modules/reporting_engine/config/locales/crowdin/hu.yml index 3d27933e78..1c752d5409 100644 --- a/modules/reporting_engine/config/locales/crowdin/hu.yml +++ b/modules/reporting_engine/config/locales/crowdin/hu.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- hu: diff --git a/modules/reporting_engine/config/locales/crowdin/id.yml b/modules/reporting_engine/config/locales/crowdin/id.yml index c834bb60f0..4cacb2da39 100644 --- a/modules/reporting_engine/config/locales/crowdin/id.yml +++ b/modules/reporting_engine/config/locales/crowdin/id.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- id: diff --git a/modules/reporting_engine/config/locales/crowdin/it.yml b/modules/reporting_engine/config/locales/crowdin/it.yml index 5bfb35c63a..bca543825f 100644 --- a/modules/reporting_engine/config/locales/crowdin/it.yml +++ b/modules/reporting_engine/config/locales/crowdin/it.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- it: diff --git a/modules/reporting_engine/config/locales/crowdin/ja.yml b/modules/reporting_engine/config/locales/crowdin/ja.yml index 7eaec01817..791cb93680 100644 --- a/modules/reporting_engine/config/locales/crowdin/ja.yml +++ b/modules/reporting_engine/config/locales/crowdin/ja.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ja: diff --git a/modules/reporting_engine/config/locales/crowdin/js-ar.yml b/modules/reporting_engine/config/locales/crowdin/js-ar.yml index 918d13b677..a9c9264f5f 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-ar.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-ar.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ar: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-bg.yml b/modules/reporting_engine/config/locales/crowdin/js-bg.yml index a693fbc3db..a2dfe0227d 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-bg.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-bg.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ bg: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-ca.yml b/modules/reporting_engine/config/locales/crowdin/js-ca.yml index 1cd6e26f40..16695be36b 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-ca.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-ca.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ca: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-cs.yml b/modules/reporting_engine/config/locales/crowdin/js-cs.yml index d5a339d079..66f55f6940 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-cs.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-cs.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ cs: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-da.yml b/modules/reporting_engine/config/locales/crowdin/js-da.yml index 9029f38bef..de1fc334d7 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-da.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-da.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ da: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-de.yml b/modules/reporting_engine/config/locales/crowdin/js-de.yml index 6f6685cf3b..1e5017035a 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-de.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-de.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ de: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-el.yml b/modules/reporting_engine/config/locales/crowdin/js-el.yml index b20463e9e0..062ccf1d73 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-el.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-el.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ el: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-es.yml b/modules/reporting_engine/config/locales/crowdin/js-es.yml index 65b3b99329..e130ae2415 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-es.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-es.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ es: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-fi.yml b/modules/reporting_engine/config/locales/crowdin/js-fi.yml index b24bc3fbed..8d0436787a 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-fi.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-fi.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ fi: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-fil.yml b/modules/reporting_engine/config/locales/crowdin/js-fil.yml index 2b48101d49..771148954d 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-fil.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-fil.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ fil: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-fr.yml b/modules/reporting_engine/config/locales/crowdin/js-fr.yml index 52ff658bf3..e7924e98ab 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-fr.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-fr.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ fr: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-hr.yml b/modules/reporting_engine/config/locales/crowdin/js-hr.yml index 860af9030c..4900ae3a49 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-hr.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-hr.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ hr: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-hu.yml b/modules/reporting_engine/config/locales/crowdin/js-hu.yml index a479c67993..e033658c2e 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-hu.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-hu.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ hu: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-id.yml b/modules/reporting_engine/config/locales/crowdin/js-id.yml index 99ba037e12..b761880894 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-id.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-id.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ id: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-it.yml b/modules/reporting_engine/config/locales/crowdin/js-it.yml index 0a09f8666b..7b789c5a36 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-it.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-it.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ it: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-ja.yml b/modules/reporting_engine/config/locales/crowdin/js-ja.yml index fd315fa728..bce255223f 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-ja.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-ja.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ja: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-ko.yml b/modules/reporting_engine/config/locales/crowdin/js-ko.yml index 203a53122d..5f6e2a6b60 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-ko.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-ko.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ko: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-lt.yml b/modules/reporting_engine/config/locales/crowdin/js-lt.yml index 9865282710..a973479eea 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-lt.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-lt.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ lt: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-nl.yml b/modules/reporting_engine/config/locales/crowdin/js-nl.yml index 7a3e068506..3a58ba33f9 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-nl.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-nl.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ nl: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-no.yml b/modules/reporting_engine/config/locales/crowdin/js-no.yml index d24ee48ce5..1c11666f88 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-no.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-no.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ "no": js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-pl.yml b/modules/reporting_engine/config/locales/crowdin/js-pl.yml index e3bb40030d..325f372ed9 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-pl.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-pl.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ pl: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-pt-BR.yml b/modules/reporting_engine/config/locales/crowdin/js-pt-BR.yml index dd50fbd26a..123778ed7a 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-pt-BR.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-pt-BR.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ pt-BR: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-pt.yml b/modules/reporting_engine/config/locales/crowdin/js-pt.yml index 8a32ad6d97..c68973af61 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-pt.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-pt.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ pt: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-ro.yml b/modules/reporting_engine/config/locales/crowdin/js-ro.yml index 4781bc5ba5..9c3b01acf4 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-ro.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-ro.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ro: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-ru.yml b/modules/reporting_engine/config/locales/crowdin/js-ru.yml index d0569fbaa6..03a3db4c40 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-ru.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-ru.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ ru: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-sk.yml b/modules/reporting_engine/config/locales/crowdin/js-sk.yml index 9b77190281..43a6c1d8e4 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-sk.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-sk.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ sk: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-sv.yml b/modules/reporting_engine/config/locales/crowdin/js-sv.yml index 6561623016..e98df9fe0a 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-sv.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-sv.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ sv: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-tr.yml b/modules/reporting_engine/config/locales/crowdin/js-tr.yml index 71404cb3a2..2801806089 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-tr.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-tr.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ tr: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-uk.yml b/modules/reporting_engine/config/locales/crowdin/js-uk.yml index 4e41c9a33a..b90d9a0255 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-uk.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-uk.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ uk: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-vi.yml b/modules/reporting_engine/config/locales/crowdin/js-vi.yml index c4aa59fab5..a62d773d63 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-vi.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-vi.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ vi: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-zh-CN.yml b/modules/reporting_engine/config/locales/crowdin/js-zh-CN.yml index c8bf935fd0..1855669a2d 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-zh-CN.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-zh-CN.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-CN: js: diff --git a/modules/reporting_engine/config/locales/crowdin/js-zh-TW.yml b/modules/reporting_engine/config/locales/crowdin/js-zh-TW.yml index f2f20786a3..a7212d90f0 100644 --- a/modules/reporting_engine/config/locales/crowdin/js-zh-TW.yml +++ b/modules/reporting_engine/config/locales/crowdin/js-zh-TW.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ zh-TW: js: diff --git a/modules/reporting_engine/config/locales/crowdin/ko.yml b/modules/reporting_engine/config/locales/crowdin/ko.yml index 51b716fd2c..4f0ad5c83a 100644 --- a/modules/reporting_engine/config/locales/crowdin/ko.yml +++ b/modules/reporting_engine/config/locales/crowdin/ko.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ko: diff --git a/modules/reporting_engine/config/locales/crowdin/lt.yml b/modules/reporting_engine/config/locales/crowdin/lt.yml index 763568ccac..d4b12f9e45 100644 --- a/modules/reporting_engine/config/locales/crowdin/lt.yml +++ b/modules/reporting_engine/config/locales/crowdin/lt.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- lt: diff --git a/modules/reporting_engine/config/locales/crowdin/nl.yml b/modules/reporting_engine/config/locales/crowdin/nl.yml index b7e0b55b6a..c39cba1956 100644 --- a/modules/reporting_engine/config/locales/crowdin/nl.yml +++ b/modules/reporting_engine/config/locales/crowdin/nl.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- nl: diff --git a/modules/reporting_engine/config/locales/crowdin/no.yml b/modules/reporting_engine/config/locales/crowdin/no.yml index 1d237ec205..b38580d356 100644 --- a/modules/reporting_engine/config/locales/crowdin/no.yml +++ b/modules/reporting_engine/config/locales/crowdin/no.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- "no": diff --git a/modules/reporting_engine/config/locales/crowdin/pl.yml b/modules/reporting_engine/config/locales/crowdin/pl.yml index 6f1b960860..940aba5c3a 100644 --- a/modules/reporting_engine/config/locales/crowdin/pl.yml +++ b/modules/reporting_engine/config/locales/crowdin/pl.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pl: diff --git a/modules/reporting_engine/config/locales/crowdin/pt-BR.yml b/modules/reporting_engine/config/locales/crowdin/pt-BR.yml index 7faf0f2bbf..6ad6beb1b4 100644 --- a/modules/reporting_engine/config/locales/crowdin/pt-BR.yml +++ b/modules/reporting_engine/config/locales/crowdin/pt-BR.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pt-BR: diff --git a/modules/reporting_engine/config/locales/crowdin/pt.yml b/modules/reporting_engine/config/locales/crowdin/pt.yml index 52c486f30e..fe2a565702 100644 --- a/modules/reporting_engine/config/locales/crowdin/pt.yml +++ b/modules/reporting_engine/config/locales/crowdin/pt.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- pt: diff --git a/modules/reporting_engine/config/locales/crowdin/ro.yml b/modules/reporting_engine/config/locales/crowdin/ro.yml index 2c4a50f262..fe6e30f34b 100644 --- a/modules/reporting_engine/config/locales/crowdin/ro.yml +++ b/modules/reporting_engine/config/locales/crowdin/ro.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ro: diff --git a/modules/reporting_engine/config/locales/crowdin/ru.yml b/modules/reporting_engine/config/locales/crowdin/ru.yml index e21b0d662e..dbdd53a2b3 100644 --- a/modules/reporting_engine/config/locales/crowdin/ru.yml +++ b/modules/reporting_engine/config/locales/crowdin/ru.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- ru: diff --git a/modules/reporting_engine/config/locales/crowdin/sk.yml b/modules/reporting_engine/config/locales/crowdin/sk.yml index abd3f7fc3f..41a057d70e 100644 --- a/modules/reporting_engine/config/locales/crowdin/sk.yml +++ b/modules/reporting_engine/config/locales/crowdin/sk.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- sk: diff --git a/modules/reporting_engine/config/locales/crowdin/sv.yml b/modules/reporting_engine/config/locales/crowdin/sv.yml index cbfb63d6bf..5eeb9f4bac 100644 --- a/modules/reporting_engine/config/locales/crowdin/sv.yml +++ b/modules/reporting_engine/config/locales/crowdin/sv.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- sv: diff --git a/modules/reporting_engine/config/locales/crowdin/tr.yml b/modules/reporting_engine/config/locales/crowdin/tr.yml index 5bbf13455d..6e946e077a 100644 --- a/modules/reporting_engine/config/locales/crowdin/tr.yml +++ b/modules/reporting_engine/config/locales/crowdin/tr.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- tr: diff --git a/modules/reporting_engine/config/locales/crowdin/uk.yml b/modules/reporting_engine/config/locales/crowdin/uk.yml index 63d5b19dd2..a12d3662ef 100644 --- a/modules/reporting_engine/config/locales/crowdin/uk.yml +++ b/modules/reporting_engine/config/locales/crowdin/uk.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- uk: diff --git a/modules/reporting_engine/config/locales/crowdin/vi.yml b/modules/reporting_engine/config/locales/crowdin/vi.yml index 57f495d658..e30a03b1ee 100644 --- a/modules/reporting_engine/config/locales/crowdin/vi.yml +++ b/modules/reporting_engine/config/locales/crowdin/vi.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- vi: diff --git a/modules/reporting_engine/config/locales/crowdin/zh-CN.yml b/modules/reporting_engine/config/locales/crowdin/zh-CN.yml index cca9baa9ef..b464be3857 100644 --- a/modules/reporting_engine/config/locales/crowdin/zh-CN.yml +++ b/modules/reporting_engine/config/locales/crowdin/zh-CN.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- zh-CN: diff --git a/modules/reporting_engine/config/locales/crowdin/zh-TW.yml b/modules/reporting_engine/config/locales/crowdin/zh-TW.yml index 747556f9d3..a8014f154a 100644 --- a/modules/reporting_engine/config/locales/crowdin/zh-TW.yml +++ b/modules/reporting_engine/config/locales/crowdin/zh-TW.yml @@ -1,9 +1,15 @@ #-- copyright -#ReportingEngine -#Copyright (C) 2010 - 2014 the OpenProject Foundation (OPF) +#OpenProject is an open source project management software. +#Copyright (C) 2012-2020 the OpenProject GmbH +#This program is free software; you can redistribute it and/or +#modify it under the terms of the GNU General Public License version 3. +#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +#Copyright (C) 2006-2017 Jean-Philippe Lang +#Copyright (C) 2010-2013 the ChiliProject Team #This program is free software; you can redistribute it and/or #modify it under the terms of the GNU General Public License -#version 3. +#as published by the Free Software Foundation; either version 2 +#of the License, or (at your option) any later version. #This program is distributed in the hope that it will be useful, #but WITHOUT ANY WARRANTY; without even the implied warranty of #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the @@ -11,6 +17,7 @@ #You should have received a copy of the GNU General Public License #along with this program; if not, write to the Free Software #Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +#See docs/COPYRIGHT.rdoc for more details. #++ #--- zh-TW: diff --git a/modules/two_factor_authentication/config/locales/crowdin/el.yml b/modules/two_factor_authentication/config/locales/crowdin/el.yml index f7ea85305d..266e424bbb 100644 --- a/modules/two_factor_authentication/config/locales/crowdin/el.yml +++ b/modules/two_factor_authentication/config/locales/crowdin/el.yml @@ -14,7 +14,7 @@ el: two_factor_authentication/device/sms: attributes: phone_number: - error_phone_number_format: "must be of format +XX XXXXXXXXX" + error_phone_number_format: "πρέπει να έχει μορφή + XX XXXXXXXXX" models: two_factor_authentication/device: "Συσκευή 2FA" two_factor_authentication/device/sms: "Κινητό Τηλέφωνο" @@ -44,7 +44,7 @@ el: login: enter_backup_code_title: Εισάγετε τον κωδικό αντιγράφων ασφαλείας enter_backup_code_text: Παρακαλούμε εισάγετε έναν έγκυρο κωδικό αντιγράφων ασφαλείας από την λίστα κωδικών σε περίπτωση που δεν έχετε πια πρόσβαση στις καταχωρημένες συσκευές 2FA. - other_device: 'Χρησιμοποιείστε μια διαφορετική συσκευή ή κωδικό αντιγράφων ασφαλείας' + other_device: 'Χρησιμοποιήστε μια διαφορετική συσκευή ή κωδικό αντιγράφων ασφαλείας' settings: title: 'Ρυθμίσεις 2FA' current_configuration: 'Τρέχουσα διαμόρφωση' @@ -61,7 +61,7 @@ el: failed_to_save_settings: 'Αποτυχία ενημέρωσης των ρυθμίσεων 2FA: %{message}' admin: self_edit_path: 'Για να προσθέσετε ή να τροποποιήσετε τις δικές σας συσκευές 2FA, παρακαλούμε πηγαίνετε στο %{self_edit_link}' - self_edit_link_name: 'Ταυτοποίηση δύο παραγόντων στη σελίδα λογαριασμούς σας' + self_edit_link_name: 'Ταυτοποίηση δύο παραγόντων στη σελίδα λογαριασμού σας' self_edit_forbidden: 'Δεν μπορείτε να επεξεργαστείτε τις δικές σας συσκευές 2FA σε αυτό το μονοπάτι. Αντί αυτού πηγαίνετε στο Ο Λογαριασμός μου > Ταυτοποίηση δύο παραγόντων.' no_devices_for_user: 'Δεν έχουν καταχωρηθεί συσκευές 2FA για αυτόν τον χρήστη.' all_devices_deleted: 'Όλες οι συσκευές 2FA αυτού του χρήστη έχουν διαγραφεί' @@ -69,7 +69,7 @@ el: button_delete_all_devices: 'Διαγραφή καταχωρημένων συσκευών 2FA' button_register_mobile_phone_for_user: 'Καταχώρηση κινητού τηλεφώνου' text_2fa_enabled: 'Κατά κάθε σύνδεση, θα ζητείται σε αυτό τον χρήστη να εισάγει ένα OPT token από την προεπιλεγμένη 2FA συσκευή του.' - text_2fa_disabled: "Ο χρήστης δεν έχει ορίσει μια συσκευή 2FA μέσω του 'Σελίδα του λογαριασμού μου'" + text_2fa_disabled: "Ο χρήστης δεν έχει ορίσει μια συσκευή 2FA μέσω της 'Σελίδας λογαριασμού μου'" upsale: title: 'Η ταυτοποίηση δύο παραγόντων είναι λειτουργία έκδοσης επιχειρήσεων' description: 'Ενδυναμώστε τους μηχανισμούς εσωτερικής και εξωτερικής ταυτοποίησης με ένα δεύτερο παράγοντα.' @@ -79,13 +79,13 @@ el: plural: Κωδικοί αντιγράφων ασφαλείας your_codes: για τον %{app_name} λογαριασμό σας %{login} overview_description: | - If you are unable to access your two factor devices, you can use a backup code to regain access to your account. - Use the following button to generate a new set of backup codes. + Αν δεν μπορείτε να αποκτήσετε πρόσβαση στις δύο συσκευές σας, μπορείτε να χρησιμοποιήσετε έναν εφεδρικό κωδικό για να ανακτήσετε πάλι πρόσβαση στο λογαριασμό σας. + Χρησιμοποιήστε το παρακάτω κουμπί για να δημιουργήσετε μια νέα σειρά εφεδρικών κωδικών. generate: - title: Generate backup codes + title: Δημιουργήστε εφεδρικούς κωδικούς keep_safe_as_password: 'Σημαντικό! Χειριστείτε αυτούς τους κωδικούς σαν κωδικούς πρόσβασης.' keep_safe_warning: 'Μπορείτε είτε να τους αποθηκεύσετε στον διαχειριστή κωδικών πρόσβασης σας ή να εκτυπώσετε αυτή τη σελίδα και να την τοποθετήσετε σε ασφαλές μέρος.' - regenerate_warning: 'Warning: If you have created backup codes before, they will be invalidated and will no longer work.' + regenerate_warning: 'Προειδοποίηση: Εάν έχετε δημιουργήσει κωδικούς ασφαλείας πριν, θα ακυρωθούν και δεν θα λειτουργούν πλέον.' devices: add_new: 'Προσθέστε νέα συσκευή 2FA' register: 'Καταχώρηση συσκευής' @@ -113,7 +113,7 @@ el: provisioning_uri: 'Provisioning URI' secret_key: 'Κρυφό κλειδί' time_based: 'Βασισμένο σε χρόνο' - account: 'Account name / Issuer' + account: 'Όνομα λογαριασμού / Εκδότης' setup: | Για να δημιουργήσετε μια ταυτοποίηση δύο παραγόντων με το Google Authenticator, κατεβάστε την εφαρμογή από το Apple App store ή to Google Play Store. Αφού ανοίξετε την εφαρμογή, μπορείτε να σαρώσετε τους ακόλουθους QR κωδικούς για να καταχωρήσετε τη συσκευή σας. question_cannot_scan: | @@ -164,7 +164,7 @@ el: button_continue: 'Συνέχεια' button_make_default: 'Ορισμός ως προεπιλογή' label_unverified_phone: "Το κινητό τηλέφωνο δεν έχει επαληθευτεί ακόμη" - notice_phone_number_format: "Please enter the number in the following format: +XX XXXXXXXX." + notice_phone_number_format: "Καταχωρίστε τον αριθμό με την ακόλουθη μορφή: + XX XXXXXXXX." text_otp_not_receive: "Άλλες μέθοδοι επαλήθευσης" text_send_otp_again: "Αποστολή ξανά του κωδικού πρόσβασης μιας χρήσης μέχρι:" button_resend_otp_form: "Αποστολή ξανά" diff --git a/modules/two_factor_authentication/lib/open_project/two_factor_authentication/engine.rb b/modules/two_factor_authentication/lib/open_project/two_factor_authentication/engine.rb index 3ab964a829..b79a51f896 100644 --- a/modules/two_factor_authentication/lib/open_project/two_factor_authentication/engine.rb +++ b/modules/two_factor_authentication/lib/open_project/two_factor_authentication/engine.rb @@ -53,6 +53,7 @@ module OpenProject::TwoFactorAuthentication add_tab_entry :user, name: 'two_factor_authentication', partial: 'users/two_factor_authentication', + path: ->(params) { tab_edit_user_path(params[:user], tab: :two_factor_authentication) }, label: 'two_factor_authentication.label_two_factor_authentication', only_if: ->(*) { OpenProject::TwoFactorAuthentication::TokenStrategyManager.enabled? } diff --git a/modules/webhooks/config/locales/crowdin/el.yml b/modules/webhooks/config/locales/crowdin/el.yml index 8e25a31d97..0cdb52cf2c 100644 --- a/modules/webhooks/config/locales/crowdin/el.yml +++ b/modules/webhooks/config/locales/crowdin/el.yml @@ -35,10 +35,10 @@ el: deliveries: no_results_table: Δεν έχουν γίνει διανομές για αυτό το webhook. title: 'Πρόσφατες διανομές' - time: 'Delivery time' + time: 'Χρόνος παράδοσης' form: introduction: > - Send a POST request to the payload URL below for any event in the project your subscribe. Payload will correspond to the APIv3 representation of the object being modified. + Στείλτε ένα αίτημα POST στην παρακάτω διεύθυνση payload URL για οποιοδήποτε γεγονός στο έργο που έχετε εγγραφεί. Το payload θα αντιστοιχεί στην αναπαράσταση APIv3 του τροποποιημένου αντικειμένου. apiv3_doc_url: Για περισσότερες πληροφορίες, επισκεφθείτε την τεκμηρίωση API description: placeholder: 'Προαιρετική περιγραφή για το webhook.' diff --git a/spec/features/groups/group_memberships_spec.rb b/spec/features/groups/group_memberships_spec.rb index ad39108d52..8f8a12a998 100644 --- a/spec/features/groups/group_memberships_spec.rb +++ b/spec/features/groups/group_memberships_spec.rb @@ -28,7 +28,7 @@ require 'spec_helper' -feature 'group memberships through groups page', type: :feature do +feature 'group memberships through groups page', type: :feature, js: true do let!(:project) { FactoryBot.create :project, name: 'Project 1', identifier: 'project1' } let(:admin) { FactoryBot.create :admin } @@ -48,7 +48,7 @@ feature 'group memberships through groups page', type: :feature do group.add_member! peter end - scenario 'adding a user to a group adds the user to the project as well', js: true do + scenario 'adding a user to a group adds the user to the project as well' do members_page.visit! expect(members_page).not_to have_user 'Hannibal Smith' @@ -83,7 +83,7 @@ feature 'group memberships through groups page', type: :feature do expect(members_page).not_to have_user 'Hannibal Smith' end - scenario 'removing the group from a project', js: true do + scenario 'removing the group from a project' do group_page.visit! group_page.open_projects_tab! expect(group_page).to have_project 'Project 1' diff --git a/spec/features/work_packages/table/configuration_modal/table_configuration_modal_spec.rb b/spec/features/work_packages/table/configuration_modal/table_configuration_modal_spec.rb index 68f236a82c..fdb08173be 100644 --- a/spec/features/work_packages/table/configuration_modal/table_configuration_modal_spec.rb +++ b/spec/features/work_packages/table/configuration_modal/table_configuration_modal_spec.rb @@ -40,6 +40,6 @@ describe 'Work Package table configuration modal', js: true do expect(page).to have_focus_on('.columns-modal--content input.select2-input') # Expect active tab is columns - expect(page).to have_selector('.tab-show.selected', text: 'Columns') + expect(page).to have_selector('.tab-show.selected', text: 'COLUMNS') end end diff --git a/spec/helpers/tabs_helper_spec.rb b/spec/helpers/tabs_helper_spec.rb new file mode 100644 index 0000000000..633c611917 --- /dev/null +++ b/spec/helpers/tabs_helper_spec.rb @@ -0,0 +1,69 @@ +#-- copyright +# OpenProject is an open source project management software. +# Copyright (C) 2012-2020 the OpenProject GmbH +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License version 3. +# +# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows: +# Copyright (C) 2006-2017 Jean-Philippe Lang +# Copyright (C) 2010-2013 the ChiliProject Team +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +# See docs/COPYRIGHT.rdoc for more details. +#++ + +require 'spec_helper' + +describe TabsHelper, type: :helper do + include TabsHelper + + let(:given_tab) { + { name: 'avatar', + partial: 'avatars/users/avatar_tab', + path: ->(params) { tab_edit_user_path(params[:user], tab: :avatar) }, + label: :label_avatar } + } + + let(:expected_tab) { + { name: 'avatar', + partial: 'avatars/users/avatar_tab', + path: '/users/2/edit/avatar', + label: :label_avatar } + } + + describe 'render_extensible_tabs' do + before do + allow_any_instance_of(TabsHelper) + .to receive(:render_tabs) + .with([ expected_tab ]) + .and_return [ expected_tab ] + + allow(::OpenProject::Ui::ExtensibleTabs) + .to receive(:enabled_tabs) + .with(:user) + .and_return [ given_tab ] + + user = FactoryBot.build(:user, id: 2) + @tabs = render_extensible_tabs(:user, user: user) + end + + it "should return an evaluated path" do + expect(response.status).to eq 200 + expect(@tabs).to eq([ expected_tab ]) + end + end +end diff --git a/spec/support/components/work_packages/table_configuration/filters.rb b/spec/support/components/work_packages/table_configuration/filters.rb index f873869ef8..55231f664c 100644 --- a/spec/support/components/work_packages/table_configuration/filters.rb +++ b/spec/support/components/work_packages/table_configuration/filters.rb @@ -55,7 +55,7 @@ module Components def expect_open modal.expect_open - expect(page).to have_selector('.tab-show.selected', text: 'Filters') + expect(page).to have_selector('.tab-show.selected', text: 'FILTERS') end def expect_closed diff --git a/spec/support/components/work_packages/table_configuration/highlighting.rb b/spec/support/components/work_packages/table_configuration/highlighting.rb index 847b82dc34..3e9626b05f 100644 --- a/spec/support/components/work_packages/table_configuration/highlighting.rb +++ b/spec/support/components/work_packages/table_configuration/highlighting.rb @@ -83,7 +83,7 @@ module Components ::Components::WorkPackages::SettingsMenu.new.open_and_choose 'Configure view' retry_block do - find(".tab-show", text: 'Highlighting', wait: 10).click + find(".tab-show", text: 'HIGHLIGHTING', wait: 10).click end end diff --git a/spec/support/components/work_packages/table_configuration_modal.rb b/spec/support/components/work_packages/table_configuration_modal.rb index d75c3ce45c..3aff039a0c 100644 --- a/spec/support/components/work_packages/table_configuration_modal.rb +++ b/spec/support/components/work_packages/table_configuration_modal.rb @@ -88,11 +88,11 @@ module Components end def expect_disabled_tab(name) - expect(page).to have_selector("#{selector} .tab-show.-disabled", text: name) + expect(page).to have_selector("#{selector} .tab-show.-disabled", text: name.upcase) end def selected_tab(name) - page.find("#{selector} .tab-show.selected", text: name) + page.find("#{selector} .tab-show.selected", text: name.upcase) page.find("#{selector} .tab-content[data-tab-name='#{name}']") end @@ -102,7 +102,7 @@ module Components sleep 1 retry_block do - find("#{selector} .tab-show", text: target, wait: 10).click + find("#{selector} .tab-show", text: target.upcase, wait: 10).click selected_tab(target) end end diff --git a/spec/support/pages/admin/users/edit.rb b/spec/support/pages/admin/users/edit.rb index c9aeaeed76..ed297c3747 100644 --- a/spec/support/pages/admin/users/edit.rb +++ b/spec/support/pages/admin/users/edit.rb @@ -43,7 +43,9 @@ module Pages end def open_projects_tab! - click_on 'tab-memberships' + within('.content--tabs') do + click_on 'Projects' + end end def add_to_project!(project_name, as:) diff --git a/spec/support/pages/groups.rb b/spec/support/pages/groups.rb index 592000614d..65c6daf083 100644 --- a/spec/support/pages/groups.rb +++ b/spec/support/pages/groups.rb @@ -77,11 +77,15 @@ module Pages end def open_users_tab! - click_on 'tab-users' + within('.content--tabs') do + click_on 'Users' + end end def open_projects_tab! - click_on 'tab-memberships' + within('.content--tabs') do + click_on 'Projects' + end end def add_to_project!(project_name, as:) diff --git a/spec/support/rspec_cleanup.rb b/spec/support/rspec_cleanup.rb index cc47306452..919d01a42d 100644 --- a/spec/support/rspec_cleanup.rb +++ b/spec/support/rspec_cleanup.rb @@ -4,8 +4,6 @@ RSpec.configure do |config| # This happens automatically for :mailer specs ActionMailer::Base.delivery_method = :test ActionMailer::Base.deliveries.clear - - RequestStore.clear! end config.append_after(:each) do @@ -13,9 +11,7 @@ RSpec.configure do |config| # by calling code in the app setting changing the locale. I18n.locale = :en unless I18n.locale == :en - # Set the class instance variable @current_user to nil - # to avoid having users from one spec present in the next - ::User.instance_variable_set(:@current_user, nil) + RequestStore.clear! end # We don't want this to be reported on CI as it breaks the build