Checkboxes titles in the trash bin

This commit is contained in:
Karel Pičman 2015-02-02 08:51:36 +01:00
parent ef4df8d9b8
commit bc8499b2c8
21 changed files with 63 additions and 38 deletions

View File

@ -164,9 +164,11 @@ class DmsfController < ApplicationController
selected_files = params[:files] || [] selected_files = params[:files] || []
selected_dir_links = params[:dir_links] || [] selected_dir_links = params[:dir_links] || []
selected_file_links = params[:file_links] || [] selected_file_links = params[:file_links] || []
selected_url_links = params[:url_links] || []
if selected_folders.blank? && selected_files.blank? && if selected_folders.blank? && selected_files.blank? &&
selected_dir_links.blank? && selected_file_links.blank? selected_dir_links.blank? && selected_file_links.blank? &&
selected_url_links.blank?
flash[:warning] = l(:warning_no_entries_selected) flash[:warning] = l(:warning_no_entries_selected)
redirect_to :back redirect_to :back
return return
@ -189,13 +191,13 @@ class DmsfController < ApplicationController
if params[:email_entries].present? if params[:email_entries].present?
email_entries(selected_folders, selected_files) email_entries(selected_folders, selected_files)
elsif params[:restore_entries].present? elsif params[:restore_entries].present?
restore_entries(selected_folders, selected_files, selected_dir_links, selected_file_links) restore_entries(selected_folders, selected_files, selected_dir_links, selected_file_links, selected_url_links)
redirect_to :back redirect_to :back
elsif params[:delete_entries].present? elsif params[:delete_entries].present?
delete_entries(selected_folders, selected_files, selected_dir_links, selected_file_links, false) delete_entries(selected_folders, selected_files, selected_dir_links, selected_file_links, selected_url_links, false)
redirect_to :back redirect_to :back
elsif params[:destroy_entries].present? elsif params[:destroy_entries].present?
delete_entries(selected_folders, selected_files, selected_dir_links, selected_file_links, true) delete_entries(selected_folders, selected_files, selected_dir_links, selected_file_links, selected_url_links, true)
redirect_to :back redirect_to :back
else else
download_entries(selected_folders, selected_files) download_entries(selected_folders, selected_files)
@ -464,7 +466,7 @@ class DmsfController < ApplicationController
zip zip
end end
def restore_entries(selected_folders, selected_files, selected_dir_links, selected_file_links) def restore_entries(selected_folders, selected_files, selected_dir_links, selected_file_links, selected_url_links)
# Folders # Folders
selected_folders.each do |id| selected_folders.each do |id|
folder = DmsfFolder.find_by_id id folder = DmsfFolder.find_by_id id
@ -488,7 +490,7 @@ class DmsfController < ApplicationController
end end
end end
# Links # Links
(selected_dir_links + selected_file_links).each do |id| (selected_dir_links + selected_file_links + selected_url_links).each do |id|
link = DmsfLink.find_by_id id link = DmsfLink.find_by_id id
if link if link
unless link.restore unless link.restore
@ -500,7 +502,7 @@ class DmsfController < ApplicationController
end end
end end
def delete_entries(selected_folders, selected_files, selected_dir_links, selected_file_links, commit) def delete_entries(selected_folders, selected_files, selected_dir_links, selected_file_links, selected_url_links, commit)
# Folders # Folders
selected_folders.each do |id| selected_folders.each do |id|
folder = DmsfFolder.find_by_id id folder = DmsfFolder.find_by_id id
@ -544,7 +546,7 @@ class DmsfController < ApplicationController
flash[:warning] = l(:warning_some_entries_were_not_deleted, :entries => not_deleted_files.map{|e| e.title}.join(', ')) flash[:warning] = l(:warning_some_entries_were_not_deleted, :entries => not_deleted_files.map{|e| e.title}.join(', '))
end end
# Links # Links
(selected_dir_links + selected_file_links).each do |id| (selected_dir_links + selected_file_links + selected_url_links).each do |id|
link = DmsfLink.find_by_id id link = DmsfLink.find_by_id id
link.delete commit if link link.delete commit if link
end end

View File

@ -1,7 +1,7 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License

View File

@ -1,6 +1,6 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011-14 Karel Pičman <karel.picman@lbcfree.net> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License

View File

@ -1,6 +1,6 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011-14 Karel Pičman <karel.picman@lbcfree.net> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
<%#= <%#=
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
@ -19,7 +19,7 @@
%> %>
<td class="check"><%= check_box_tag(name, id, false, <td class="check"><%= check_box_tag(name, id, false,
:title => l(:title_check_for_zip_download_or_email)) %></td> :title => l(:title_check_for_restore_or_delete)) %></td>
<td class="title"> <td class="title">
<%= content_tag(:span, h(title), <%= content_tag(:span, h(title),
:title => h(title), :title => h(title),

View File

@ -1,7 +1,7 @@
<%#= <%#=
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
<%#= <%#=
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
@ -19,7 +19,7 @@
%> %>
<td class="check"><%= check_box_tag(name, id, false, <td class="check"><%= check_box_tag(name, id, false,
:title => l(:title_check_for_zip_download_or_email)) %></td> :title => l(:title_check_for_restore_or_delete)) %></td>
<td class="title"> <td class="title">
<% file_download_url = url_for({:only_path => false, :controller => :dmsf_files, :action => 'show', :id => file, :download => ''}) %> <% file_download_url = url_for({:only_path => false, :controller => :dmsf_files, :action => 'show', :id => file, :download => ''}) %>
<%= link_to(h(title), <%= link_to(h(title),

View File

@ -1,7 +1,7 @@
<%#= <%#=
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
@ -18,7 +18,8 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
%> %>
<td class="check"></td> <td class="check"><%= check_box_tag(name, id, false,
:title => l(:title_check_for_restore_or_delete)) %></td>
<td class="title"> <td class="title">
<%= link_to(h(title), <%= link_to(h(title),
link.external_url, link.external_url,

View File

@ -1,7 +1,7 @@
<%#= <%#=
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
@ -47,7 +47,7 @@
<thead> <thead>
<tr id="root"> <tr id="root">
<th class="check"> <th class="check">
<input id="check_all_entries" title="<%= l(:title_check_uncheck_all_for_zip_download_or_email) %>" type="checkbox" /> <input id="check_all_entries" title="<%= l(:title_check_uncheck_all_for_restore_or_delete) %>" type="checkbox" />
</th> </th>
<th><%= l(:link_title) %></th> <th><%= l(:link_title) %></th>
<th><%= l(:link_size) %></th> <th><%= l(:link_size) %></th>

View File

@ -1,7 +1,7 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
@ -60,13 +60,15 @@ cs:
link_edit: "Upravit %{title}" link_edit: "Upravit %{title}"
submit_create: Vytvořit submit_create: Vytvořit
link_create_folder: Vytvořit složku link_create_folder: Vytvořit složku
title_check_uncheck_all_for_zip_download_or_email: Vybrat/Nevybrat vše pro stažení jako Zip nebo emailem title_check_uncheck_all_for_zip_download_or_email: Vybrat/Nevybrat vše pro stažení jako zip nebo emailem
title_check_uncheck_all_for_restore_or_delete: Vybrat/Nevybrat vše pro obnovení nebo smazání
link_title: Název link_title: Název
link_size: Velikost link_size: Velikost
link_modified: Změněno link_modified: Změněno
link_ver: Ver. link_ver: Ver.
link_author: Autor link_author: Autor
title_check_for_zip_download_or_email: Vybrat pro stažení jako Zip nebo emailem title_check_for_zip_download_or_email: Vybrat pro stažení jako zip nebo emailem
title_check_for_restore_or_delete: Vybrat pro obnovení nebo smazání
title_delete: Smazat title_delete: Smazat
title_notifications_active_deactivate: "Notifikace aktivní: Deaktivovat" title_notifications_active_deactivate: "Notifikace aktivní: Deaktivovat"
title_notifications_not_active_activate: "Notifikace nejsou aktivní: Aktivovat" title_notifications_not_active_activate: "Notifikace nejsou aktivní: Aktivovat"

View File

@ -2,7 +2,7 @@
# #
# Copyright (C) 2011 Terrence Miller # Copyright (C) 2011 Terrence Miller
# Copyright (C) 2013 Christian Wetting <christian.wetting@kontron.com> # Copyright (C) 2013 Christian Wetting <christian.wetting@kontron.com>
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
@ -59,12 +59,14 @@ de:
submit_create: Erstellen submit_create: Erstellen
link_create_folder: Ordner erstellen link_create_folder: Ordner erstellen
title_check_uncheck_all_for_zip_download_or_email: Wähle alle/keine für ZIP-Download bzw. Email title_check_uncheck_all_for_zip_download_or_email: Wähle alle/keine für ZIP-Download bzw. Email
title_check_uncheck_all_for_restore_or_delete: Wähle alle/keine für Rückstellen oder Löschen
link_title: Titel link_title: Titel
link_size: Größe link_size: Größe
link_modified: Geändert link_modified: Geändert
link_ver: Version link_ver: Version
link_author: Autor link_author: Autor
title_check_for_zip_download_or_email: Wähle für ZIP-Download bzw. Email title_check_for_zip_download_or_email: Wähle für ZIP-Download bzw. Email
title_check_for_restore_or_delete: Wähle für Rückstellen oder Löschen
title_delete: Löschen title_delete: Löschen
title_notifications_active_deactivate: "Benachrichtigungen sind aktiv: Ausschalten" title_notifications_active_deactivate: "Benachrichtigungen sind aktiv: Ausschalten"
title_notifications_not_active_activate: "Benachrichtigungen sind nicht aktiv: Einschalten" title_notifications_not_active_activate: "Benachrichtigungen sind nicht aktiv: Einschalten"

View File

@ -2,7 +2,7 @@
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# Copyright (C) 2012 Daniel Munn <dan.munn@munnster.co.uk> # Copyright (C) 2012 Daniel Munn <dan.munn@munnster.co.uk>
# Copyright (C) 2011-14 Karel Pičman <karel.picman@kontron.com> # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
@ -60,13 +60,15 @@ en:
link_edit: "Edit %{title}" link_edit: "Edit %{title}"
submit_create: Create submit_create: Create
link_create_folder: Create folder link_create_folder: Create folder
title_check_uncheck_all_for_zip_download_or_email: Check/Uncheck all for zip download or email title_check_uncheck_all_for_zip_download_or_email: Check/Uncheck all for zip, download or email
title_check_uncheck_all_for_restore_or_delete: Check/Uncheck all for restore or delete
link_title: Title link_title: Title
link_size: Size link_size: Size
link_modified: Modified link_modified: Modified
link_ver: Ver. link_ver: Ver.
link_author: Author link_author: Author
title_check_for_zip_download_or_email: Check for Zip download or email title_check_for_zip_download_or_email: Check for zip, download or email
title_check_for_restore_or_delete: Check for restore or delete
title_delete: Delete title_delete: Delete
title_notifications_active_deactivate: "Notifications active: Deactivate" title_notifications_active_deactivate: "Notifications active: Deactivate"
title_notifications_not_active_activate: "Notifications not active: Activate" title_notifications_not_active_activate: "Notifications not active: Activate"

View File

@ -1,7 +1,7 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
@ -61,12 +61,14 @@ es:
submit_create: Create submit_create: Create
link_create_folder: Create folder link_create_folder: Create folder
title_check_uncheck_all_for_zip_download_or_email: Check/Uncheck all for zip download or email title_check_uncheck_all_for_zip_download_or_email: Check/Uncheck all for zip download or email
title_check_uncheck_all_for_restore_or_delete: Check/Uncheck all for restore or delete
link_title: Title link_title: Title
link_size: Size link_size: Size
link_modified: Modified link_modified: Modified
link_ver: Ver. link_ver: Ver.
link_author: Author link_author: Author
title_check_for_zip_download_or_email: Check for Zip download or email title_check_for_zip_download_or_email: Check for zip, download or email
title_check_for_restore_or_delete: Check for restore or delete
title_delete: Delete title_delete: Delete
title_notifications_active_deactivate: "Notifications active: Deactivate" title_notifications_active_deactivate: "Notifications active: Deactivate"
title_notifications_not_active_activate: "Notifications not active: Activate" title_notifications_not_active_activate: "Notifications not active: Activate"

View File

@ -3,7 +3,7 @@
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# Copyright (C) 2012 Daniel Munn <dan.munn@munnster.co.uk> # Copyright (C) 2012 Daniel Munn <dan.munn@munnster.co.uk>
# Copyright (C) 2014 Atmis # Copyright (C) 2014 Atmis
# # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2 # as published by the Free Software Foundation; either version 2
@ -61,12 +61,14 @@ fr:
submit_create: Ajouter submit_create: Ajouter
link_create_folder: Créer un sous-dossier link_create_folder: Créer un sous-dossier
title_check_uncheck_all_for_zip_download_or_email: Sélectionner/Ignorer tous les documents pour le téléchargement ou pour la transmission par mail title_check_uncheck_all_for_zip_download_or_email: Sélectionner/Ignorer tous les documents pour le téléchargement ou pour la transmission par mail
title_check_uncheck_all_for_restore_or_delete: Check/Uncheck all for restore or delete
link_title: Titre link_title: Titre
link_size: Taille link_size: Taille
link_modified: Modifié link_modified: Modifié
link_ver: Version link_ver: Version
link_author: Auteur link_author: Auteur
title_check_for_zip_download_or_email: Sélectionner pour le téléchargement ou la transmission par mail title_check_for_zip_download_or_email: Sélectionner pour le téléchargement ou la transmission par mail
title_check_for_restore_or_delete: Check for restore or delete
title_delete: Supprimer title_delete: Supprimer
title_notifications_active_deactivate: "Notifications activées : cliquer pour désactiver" title_notifications_active_deactivate: "Notifications activées : cliquer pour désactiver"
title_notifications_not_active_activate: "Notifications désactivées : cliquer pour activer" title_notifications_not_active_activate: "Notifications désactivées : cliquer pour activer"

View File

@ -1,7 +1,7 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
@ -61,6 +61,8 @@ ja:
submit_create: 作成 submit_create: 作成
link_create_folder: フォルダを作成します link_create_folder: フォルダを作成します
title_check_uncheck_all_for_zip_download_or_email: すべての Zip ダウンロードまたは電子メールのチェックをオン/オフします title_check_uncheck_all_for_zip_download_or_email: すべての Zip ダウンロードまたは電子メールのチェックをオン/オフします
title_check_uncheck_all_for_restore_or_delete: Check/Uncheck all for restore or delete
title_check_for_restore_or_delete: Check for restore or delete
link_title: タイトル link_title: タイトル
link_size: サイズ link_size: サイズ
link_modified: 更新日時 link_modified: 更新日時

View File

@ -62,12 +62,14 @@ pl:
submit_create: Utwórz submit_create: Utwórz
link_create_folder: Utwórz folder link_create_folder: Utwórz folder
title_check_uncheck_all_for_zip_download_or_email: Zaznacz/Odznacz wszystkie aby pobrać plik zip lub wysłać email title_check_uncheck_all_for_zip_download_or_email: Zaznacz/Odznacz wszystkie aby pobrać plik zip lub wysłać email
title_check_uncheck_all_for_restore_or_delete: Check/Uncheck all for restore or delete
link_title: Tytuł link_title: Tytuł
link_size: Rozmiar link_size: Rozmiar
link_modified: Zmodyfikowany link_modified: Zmodyfikowany
link_ver: Ver. link_ver: Ver.
link_author: Autor link_author: Autor
title_check_for_zip_download_or_email: Zaznacz aby pobrać plik zip lub wysłać email title_check_for_zip_download_or_email: Zaznacz aby pobrać plik zip lub wysłać email
title_check_for_restore_or_delete: Check for restore or delete
title_delete: Usuń title_delete: Usuń
title_notifications_active_deactivate: "Powiadomienia aktywne: Wyłącz" title_notifications_active_deactivate: "Powiadomienia aktywne: Wyłącz"
title_notifications_not_active_activate: "Powiadomienia wyłączone: Aktywuj" title_notifications_not_active_activate: "Powiadomienia wyłączone: Aktywuj"

View File

@ -1,7 +1,7 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
@ -61,12 +61,14 @@ ru:
submit_create: Создать submit_create: Создать
link_create_folder: Создать папку link_create_folder: Создать папку
title_check_uncheck_all_for_zip_download_or_email: Выбрать/Снять все документы для того, чтобы скачать или отправить их по электронной почте title_check_uncheck_all_for_zip_download_or_email: Выбрать/Снять все документы для того, чтобы скачать или отправить их по электронной почте
title_check_uncheck_all_for_restore_or_delete: Check/Uncheck all for restore or delete
link_title: Название link_title: Название
link_size: Размер link_size: Размер
link_modified: Изменен link_modified: Изменен
link_ver: Версия link_ver: Версия
link_author: Автор link_author: Автор
title_check_for_zip_download_or_email: Выберите документы, которые нужно скачать или отправить их по электронной почте title_check_for_zip_download_or_email: Выберите документы, которые нужно скачать или отправить их по электронной почте
title_check_for_restore_or_delete: Check for restore or delete
title_delete: Удалить title_delete: Удалить
title_notifications_active_deactivate: "Уведомления включены: Отключить" title_notifications_active_deactivate: "Уведомления включены: Отключить"
title_notifications_not_active_activate: "Уведомления не включены: Включить" title_notifications_not_active_activate: "Уведомления не включены: Включить"

View File

@ -1,7 +1,7 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 <zdravko.balorda@mks.si> # Copyright (C) 2011 <zdravko.balorda@mks.si>
# # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
@ -61,12 +61,14 @@ sl:
submit_create: Kreiraj submit_create: Kreiraj
link_create_folder: Kreiraj mapo link_create_folder: Kreiraj mapo
title_check_uncheck_all_for_zip_download_or_email: "Označi/Odznači vse za Zip prenašanje ali email" title_check_uncheck_all_for_zip_download_or_email: "Označi/Odznači vse za Zip prenašanje ali email"
title_check_uncheck_all_for_restore_or_delete: Check/Uncheck all for restore or delete
link_title: Naslov link_title: Naslov
link_size: Velikost link_size: Velikost
link_modified: Spremenjeno link_modified: Spremenjeno
link_ver: Ver. link_ver: Ver.
link_author: Autor link_author: Autor
title_check_for_zip_download_or_email: Označi za Zip prenašanje ali email title_check_for_zip_download_or_email: Označi za zip prenašanje ali email
title_check_for_restore_or_delete: Check for restore or delete
title_delete: Izbriši title_delete: Izbriši
title_notifications_active_deactivate: "Obveščanje aktivno: Deaktiviraj" title_notifications_active_deactivate: "Obveščanje aktivno: Deaktiviraj"
title_notifications_not_active_activate: "Obveščanje ni aktivno: Aktiviraj" title_notifications_not_active_activate: "Obveščanje ni aktivno: Aktiviraj"

View File

@ -1,7 +1,7 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
@ -62,12 +62,14 @@
submit_create: 建立 submit_create: 建立
link_create_folder: 建立資料夾 link_create_folder: 建立資料夾
title_check_uncheck_all_for_zip_download_or_email: 全選/全不選(下載或電子郵件發送) title_check_uncheck_all_for_zip_download_or_email: 全選/全不選(下載或電子郵件發送)
title_check_uncheck_all_for_restore_or_delete: Check/Uncheck all for restore or delete
link_title: 標題 link_title: 標題
link_size: 檔案大小 link_size: 檔案大小
link_modified: 修改日期 link_modified: 修改日期
link_ver: 版本 link_ver: 版本
link_author: 作者 link_author: 作者
title_check_for_zip_download_or_email: 選取檔案 (下載或電子郵件發送) title_check_for_zip_download_or_email: 選取檔案 (下載或電子郵件發送)
title_check_for_restore_or_delete: Check for restore or delete
title_delete: 刪除 title_delete: 刪除
title_notifications_active_deactivate: "通知啟用中: 點擊關閉通知" title_notifications_active_deactivate: "通知啟用中: 點擊關閉通知"
title_notifications_not_active_activate: "通知關閉中: 點擊啟用通知" title_notifications_not_active_activate: "通知關閉中: 點擊啟用通知"

View File

@ -1,7 +1,7 @@
# Redmine plugin for Document Management System "Features" # Redmine plugin for Document Management System "Features"
# #
# Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com> # Copyright (C) 2011 Vít Jonáš <vit.jonas@gmail.com>
# # Copyright (C) 2011-15 Karel Pičman <karel.picman@kontron.com>
# #
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
@ -61,12 +61,14 @@ zh:
submit_create: 创建 submit_create: 创建
link_create_folder: 创建文件夹 link_create_folder: 创建文件夹
title_check_uncheck_all_for_zip_download_or_email: 全选/全不选zip下载或邮件发送 title_check_uncheck_all_for_zip_download_or_email: 全选/全不选zip下载或邮件发送
title_check_uncheck_all_for_restore_or_delete: Check/Uncheck all for restore or delete
link_title: 主题 link_title: 主题
link_size: 大小 link_size: 大小
link_modified: 修改日期 link_modified: 修改日期
link_ver: 版本. link_ver: 版本.
link_author: 作者 link_author: 作者
title_check_for_zip_download_or_email: 选中用于Zip下载或邮件发送 title_check_for_zip_download_or_email: 选中用于zip下载或邮件发送
title_check_for_restore_or_delete: Check for restore or delete
title_delete: 删除 title_delete: 删除
title_notifications_active_deactivate: "通知有效:点击注销通知" title_notifications_active_deactivate: "通知有效:点击注销通知"
title_notifications_not_active_activate: "通知无效:点击激活通知" title_notifications_not_active_activate: "通知无效:点击激活通知"