Projects
Kolab:16:TestingLinked
roundcubemail-plugins-kolab
Log In
Username
Password
We truncated the diff of some files because they were too big. If you want to see the full diff for every file,
click here
.
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 14
View file
roundcubemail-plugins-kolab.spec
Changed
@@ -29,8 +29,8 @@ %global tmpdir %{_var}/lib/roundcubemail Name: roundcubemail-plugins-kolab -Version: 3.3.1 -Release: 2%{?dist} +Version: 3.3.2 +Release: 1%{?dist} Summary: Kolab Groupware plugins for Roundcube Webmail Group: Applications/Internet @@ -46,14 +46,18 @@ Source102: plesk.kolab_folders.inc.php Source103: plesk.libkolab.inc.php -Patch0001: roundcubemail-plugins-kolab-3.3-kolab-files-manticore-api.patch - Patch1001: 0001-Fix-regression-where-declining-an-event-from-Calenda.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildArch: noarch BuildRequires: composer +%if 0%{?fedora} +# fix issue: +# have choice for php-composer(justinrainbow/json-schema) >= 2.0 needed by composer: php-justinrainbow-json-schema4 php-justinrainbow-json-schema +# have choice for php-composer(justinrainbow/json-schema) < 5 needed by composer: php-justinrainbow-json-schema4 php-justinrainbow-json-schema php-JsonSchema +BuildRequires: php-justinrainbow-json-schema4 +%endif %if "%{_arch}" != "ppc64" && "%{_arch}" != "ppc64le" && 0%{?suse_version} < 1 BuildRequires: python-cssmin @@ -854,7 +858,6 @@ cp -af %{SOURCE103} plugins/libkolab/config.inc.php.dist %endif -%patch0001 -p1 %patch1001 -p1 find -type d -name "helpdocs" -exec rm -rvf {} \; 2>/dev/null || : @@ -2000,6 +2003,12 @@ %defattr(-,root,root,-) %changelog +* Wed Jun 28 2017 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 3.3.2-1 +- Release of version 3.3.2 + +* Thu May 25 2017 Timotheus Pokorra <tp@tbits.net> - 3.3.1-3 +- Fix build error on Fedora 25, composer needs php-justinrainbow-json-schema4 + * Wed May 24 2017 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 3.3.1-2 - Fix reqression in handling delegated events
View file
0001-Fix-regression-where-declining-an-event-from-Calenda.patch
Deleted
@@ -1,27 +0,0 @@ -From c4cfe37d8c72a3469e6f71140a8e6ce81857af41 Mon Sep 17 00:00:00 2001 -From: Aleksander Machniak <machniak@kolabsys.com> -Date: Mon, 22 May 2017 13:03:24 +0200 -Subject: PATCH Fix regression where declining an event from Calendar would - send CANCEL instead of REPLY (Bifrost#T31474) - -The fix for T1357 (acc49b51fff21) was broken for cases with delegation and events in other user namespace. ---- - plugins/calendar/calendar_ui.js | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/plugins/calendar/calendar_ui.js b/plugins/calendar/calendar_ui.js -index edbc60e..cf9a4d4 100644 ---- a/plugins/calendar/calendar_ui.js -+++ b/plugins/calendar/calendar_ui.js -@@ -2562,7 +2562,7 @@ function rcube_calendar_ui(settings) - if (_has_attendees) { - var checked = (settings.itip_notify & 1 ? ' checked="checked"' : ''); - -- if (action == 'remove' && cal.group == 'personal' && is_attendee(event)) { -+ if (action == 'remove' && cal.group != 'shared' && is_attendee(event)) { - decline = true; - checked = event.status != 'CANCELLED' ? checked : ''; - html += '<div class="message">' + --- -2.9.4 -
View file
debian.changelog
Changed
@@ -1,3 +1,9 @@ +roundcubemail-plugins-kolab (1:3.3.2-0~kolab1) unstable; urgency=low + + * Release version 3.3.2 + + -- Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Wed, 28 Jun 2017 11:11:11 +0200 + roundcubemail-plugins-kolab (1:3.3.1-0~kolab2) unstable; urgency=low * Fix regression in event handling delegation
View file
debian.series
Changed
@@ -1,2 +1,1 @@ roundcubemail-plugins-kolab-3.3-kolab-files-manticore-api.patch -p1 -0001-Fix-regression-where-declining-an-event-from-Calenda.patch -p1
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_auth/localization/sv_SE.inc
Deleted
@@ -1,11 +0,0 @@ -<?php -/** - * Localizations for the Kolab Auth plugin - * - * Copyright (C) 2014, Kolab Systems AG - * - * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_auth/ - */ -$labels'loginas' = 'Logga in som'; -$labels'loginasnotallowed' = 'Du har inte befogenhet att logga in som $user'; -?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/calendar_ui.js -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/calendar_ui.js
Changed
@@ -47,8 +47,6 @@ var DAY_MS = 86400000; var HOUR_MS = 3600000; var me = this; - var gmt_offset = (new Date().getTimezoneOffset() / -60) - (settings.timezone || 0) - (settings.dst || 0); - var client_timezone = new Date().getTimezoneOffset(); var day_clicked = day_clicked_ts = 0; var ignore_click = false; var event_defaults = { free_busy:'busy', alarms:'' }; @@ -2562,7 +2560,7 @@ if (_has_attendees) { var checked = (settings.itip_notify & 1 ? ' checked="checked"' : ''); - if (action == 'remove' && cal.group == 'personal' && is_attendee(event)) { + if (action == 'remove' && cal.group != 'shared' && !_is_organizer && is_attendee(event)) { decline = true; checked = event.status != 'CANCELLED' ? checked : ''; html += '<div class="message">' +
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Calendar plugin", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.1", + "version": "3.3.2", "authors": { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/sharing.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/de_DE/LC_MESSAGES/sharing.po
Changed
@@ -4,13 +4,15 @@ # # Translators: # Ettore Atalan <atalanttore@googlemail.com>, 2014 +# Mads <mads@batmads.com>, 2016 +# Max Hellwig <max.hellwig@translating-energy.de>, 2016 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2016-07-26 13:49+0000\n" -"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n" +"PO-Revision-Date: 2016-12-13 09:46+0000\n" +"Last-Translator: Max Hellwig <max.hellwig@translating-energy.de>\n" "Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +22,7 @@ #: ../../en_US/_plugins/calendar/sharing.rst:11 msgid "Sharing Calendars" -msgstr "Geteilte Kalender" +msgstr "Kalender teilen" #: ../../en_US/_plugins/calendar/sharing.rst:13 msgid "" @@ -28,56 +30,56 @@ ":ref:`overview <calendar-lists>`, we have already learned how calendars " "others share with you appear in the calendars list. The following now " "explains how to make personal calendars accessible to fellow users." -msgstr "" +msgstr "Kalender zu teilen ist ein wichtiger Teil der Zusammenarbeit. In der :ref:`Übersicht <calendar-lists>` haben wir schon gelernt, wie Kalender, die von anderen mit Ihnen teilen, in der Kalenderliste aussehen. Im Folgenden wird jetzt erklärt wie man persönliche Kalender für andere Benutzer zugänglich macht." #: ../../en_US/_plugins/calendar/sharing.rst:19 msgid "Share a Calendar with others" -msgstr "Kalender mit Anderen teilen" +msgstr "Einen Kalender mit Anderen teilen" #: ../../en_US/_plugins/calendar/sharing.rst:21 msgid "" "Sharing is controlled through the :ref:`Calendar Settings Dialog <calendar-" "edit-properties>`. Double-click a calendar in the list on the left and then " "select the *Sharing* tab at the top of the dialog box:" -msgstr "" +msgstr "Das Teilen wird über den :ref:`Kalendereinstellungen-Dialog <calendar-edit-properties>` gesteuert. Doppelklicken Sie einen Kalenders in der Liste links und wählen dann den *Teilen*-Reiter im oberen Teil des Dialogfensters aus:" #: ../../en_US/_plugins/calendar/sharing.rst:27 msgid "" "The table displays who already has permission to see and modify the selected" " calendar. In order to share the calendar with a new user do" -msgstr "" +msgstr "Die Tabelle zeigt an, wer schon Erlaubnis hat, den ausgewählten Kalender zu sehen und verändern. Um den Kalender mit einem neuen Benutzer zu teilen," #: ../../en_US/_plugins/calendar/sharing.rst:30 msgid "Click the *Add entry* button (+) in the table footer" -msgstr "Klicken Sie auf die Schaltfläche *Eintrag hinzufügen* (+) im Tabellenfuß" +msgstr "klicken Sie auf die *Eintrag hinzufügen*-Schaltfläche (+) in der Fußzeile der Tabelle." #: ../../en_US/_plugins/calendar/sharing.rst:31 msgid "" "Enter the username or choose one from the autocompletion menu that appears " "when you start typing. Instead of a specific user, permissons can be granted" " for all users or guests." -msgstr "" +msgstr "Geben Sie den Benutzername ein oder wählen Sie einen aus dem Autovervollständigungs-Menü aus, das erscheint, wenn Sie zu tippen beginnen. Statt einem bestimmten Benutzer können Erlaubnisse auch allen Benutzern oder Gästen gewährt werden." #: ../../en_US/_plugins/calendar/sharing.rst:33 msgid "Select the access rights you want to grant for the user" -msgstr "" +msgstr "Wählen Sie die Zugangsberechtigungen, die Sie dem Benutzer gewähren wollen." #: ../../en_US/_plugins/calendar/sharing.rst:34 msgid "Click *Save* to add the permission" -msgstr "Klicken Sie auf *Speichern* zum Hinzufügen der Berechtigung." +msgstr "Klicken Sie auf *Speichern*, um die Erlaubnis hinzuzufügen." #: ../../en_US/_plugins/calendar/sharing.rst:36 msgid "" "Double-click an entry to edit the permissions for a particular user or " "group." -msgstr "" +msgstr "Doppelklicken Sie einen Eintrag, um Erlaubnisse für einen bestimmten Benutzer oder eine bestimmte Gruppe zu bearbeiten." #: ../../en_US/_plugins/calendar/sharing.rst:38 msgid "" "For removing existing permissions, select the according entry in the list " "and then choose *Delete* from the menu behind the gear icon in the footer of" " the list." -msgstr "" +msgstr "Um bestehende Freigaben zu entfernen, wählen Sie den entsprechenden Eintrag in der Liste aus und wählen dann *Löschen* aus dem Menü hinter dem Zahnradicon in der Fußzeile der Liste aus." #: ../../en_US/_plugins/calendar/sharing.rst:43 msgid "Subscribe to Shared Calendars" @@ -90,11 +92,11 @@ " see all resources you can access. There's a shortcut to this: click *Manage" " folders* in the options menu behind the gear icon located the footer of the" " calendars list." -msgstr "" +msgstr "Von anderen geteilte Kalender tauchen nicht sofort in der Liste innerhalb der Kalenderansicht auf. Wechseln Sie zu :ref:`Einstellungen > Ordner <settings-folders>`, um alle Hilfsmittel zu sehen, auf die Sie zugreifen können. Es gibt auch einen kürzeren Weg dorthin: Klicken Sie auf *Ordner verwalten* im Optionsmenü hinter dem Zahnradicon in der Fußzeile der Kalenderliste." #: ../../en_US/_plugins/calendar/sharing.rst:50 msgid "" "In order to make a shared calendar appear in the calendars list, locate it " "in the folder manager and check the *Subscribed* mark in the list. Only " "subscribed calendars are visible in the calendar view." -msgstr "" +msgstr "Um einen geteilten Kalender in der Kalenderliste erscheinen zu lassen, suchen Sie ihn in der Ordnerverwaltung und versehen Sie das *Abonniert*-Kästchen in der Liste mit einem Häkchen. Nur abonnierte Kalender sind in der Kalenderansicht sichtbar."
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/importexport.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/importexport.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:08+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +20,13 @@ #: ../../en_US/_plugins/calendar/importexport.rst:9 msgid "Import/Export" -msgstr "" +msgstr "Importar/Exportar" #: ../../en_US/_plugins/calendar/importexport.rst:11 msgid "" "Event data is usually exchanged using the standard |iCal|_ format which is " "supported for import and export." -msgstr "" +msgstr "Los datos de eventos se intercambian usualmente utilizando el formato estándar |iCal| _ que es compatible con la importación y la exportación." #: ../../en_US/_plugins/calendar/importexport.rst:16 msgid "Importing Events"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/index.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 12:39+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,4 +26,4 @@ msgid "" "The *Calendar* gives you access to your personal and shared calendar and " "scheduling functions." -msgstr "" +msgstr "El *Calendario* le da acceso a su calendario personal y compartir las funciones de programación y calendario."
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/invitations.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/invitations.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:14+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ #: ../../en_US/_plugins/calendar/invitations.rst:8 msgid "Handle Event Invitations" -msgstr "" +msgstr "Gestionar las invitaciones para el evento" #: ../../en_US/_plugins/calendar/invitations.rst:10 msgid "" @@ -27,7 +28,7 @@ "other people to an event. This will send out invitation emails to all the " "participants with the event data attached. That allows one to directly " "accept or decline an event invitation." -msgstr "" +msgstr "En el capítulo :ref: `calendar-event-participants` hemos aprendido a invitar a otras personas a un evento. Enviará correos electrónicos con una invitación a todos los participantes con los datos del evento adjuntos. Esto permitirá aceptar directamente o rechazar una invitación de evento." #: ../../en_US/_plugins/calendar/invitations.rst:17 msgid "Receive Event Invitations"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/manage.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:15+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +20,13 @@ #: ../../en_US/_plugins/calendar/manage.rst:7 msgid "Manage Your Schedule" -msgstr "" +msgstr "Administrar su programa" #: ../../en_US/_plugins/calendar/manage.rst:9 msgid "" "All functions to maintain your events are accessible from the main calendar " "view." -msgstr "" +msgstr "Se puede acceder a todas las funciones para mantener sus eventos desde la vista del calendario principal." #: ../../en_US/_plugins/calendar/manage.rst:13 msgid "Add Events to a Calendar"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/overview.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:33+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:16+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ #: ../../en_US/_plugins/calendar/overview.rst:6 msgid "Overview" -msgstr "" +msgstr "Información general" #: ../../en_US/_plugins/calendar/overview.rst:8 msgid "" @@ -27,7 +28,7 @@ ":ref:`Calendar View <calendar-view>` itself, a small :ref:`Calendar Widget " "<calendar-minicalendar>` the :ref:`calendar-lists` as well as the usual " "toolbar and search box." -msgstr "" +msgstr "La misma pantalla del módulo de calendario presenta las siguientes partes: el :ref: `Calendar View <calendar-view>`, una pequeña :ref: `Calendario: <calendar-minicalendar>` :ref: `calendar-lists` as Así como la barra de herramientas usual y cuadro de búsqueda." #: ../../en_US/_plugins/calendar/overview.rst:17 msgid "Calendar View"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/settings.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/settings.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:34+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:17+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +20,13 @@ #: ../../en_US/_plugins/calendar/settings.rst:8 msgid "Calendar Preferences" -msgstr "" +msgstr "Preferencias del calendario" #: ../../en_US/_plugins/calendar/settings.rst:10 msgid "" "The settings for the calendar module are listed in *Settings > Preferences* " "and are grouped by the following sections:" -msgstr "" +msgstr "Los ajustes del módulo de calendario se enumeran en *Ajustes> Preferencias* y se agrupan en las siguientes secciones:" #: ../../en_US/_plugins/calendar/settings.rst:14 msgid "Main Options"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/sharing.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/es_ES/LC_MESSAGES/sharing.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:34+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:18+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ #: ../../en_US/_plugins/calendar/sharing.rst:11 msgid "Sharing Calendars" -msgstr "" +msgstr "Compartir calendarios" #: ../../en_US/_plugins/calendar/sharing.rst:13 msgid "" @@ -27,7 +28,7 @@ ":ref:`overview <calendar-lists>`, we have already learned how calendars " "others share with you appear in the calendars list. The following now " "explains how to make personal calendars accessible to fellow users." -msgstr "" +msgstr "Para colaborar, compartir calendarios es una característica importante. En :ref: `overview <calendar-lists>`, ya hemos aprendido cómo aparecen en la lista de calendarios los calendarios que otros comparten con usted. A continuación se explica cómo hacer que otros usuarios puedan acceder a los calendarios personales." #: ../../en_US/_plugins/calendar/sharing.rst:19 msgid "Share a Calendar with others"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/importexport.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/importexport.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/calendar/importexport.rst:9 msgid "Import/Export"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/index.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/calendar/index.rst:9 msgid "Calendar"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/invitations.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/invitations.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/calendar/invitations.rst:8 msgid "Handle Event Invitations"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/manage.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/calendar/manage.rst:7 msgid "Manage Your Schedule"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/overview.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/calendar/overview.rst:6 msgid "Overview"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/settings.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/settings.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/calendar/settings.rst:8 msgid "Calendar Preferences"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/sharing.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/helpdocs/locale/pl_PL/LC_MESSAGES/sharing.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/calendar/sharing.rst:11 msgid "Sharing Calendars"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/da_DK.inc
Changed
@@ -44,7 +44,7 @@ $labels'edit_event' = 'Redigér arrangement'; $labels'edit' = 'Redigér'; $labels'save' = 'Gem'; -$labels'removelist' = 'Remove from list'; +$labels'removelist' = 'Fjern fra liste'; $labels'cancel' = 'Annullér'; $labels'select' = 'Vælg'; $labels'print' = 'Udskriv'; @@ -61,7 +61,7 @@ $labels'url' = 'URL'; $labels'date' = 'Dato'; $labels'start' = 'Start'; -$labels'starttime' = 'Start time'; +$labels'starttime' = 'Starttidspunkt'; $labels'end' = 'Slut'; $labels'endtime' = 'Sluttidspunkt'; $labels'repeat' = 'Gentag'; @@ -82,14 +82,14 @@ $labels'confidential' = 'fortrolig'; $labels'links' = 'Reference'; $labels'alarms' = 'Påmindelse'; -$labels'comment' = 'Comment'; -$labels'created' = 'Created'; -$labels'changed' = 'Last Modified'; +$labels'comment' = 'Kommentar'; +$labels'created' = 'Oprettet'; +$labels'changed' = 'Sidst ændret'; $labels'unknown' = 'Ukendt'; $labels'eventoptions' = 'Tilvalg'; $labels'generated' = 'oprettet per'; $labels'eventhistory' = 'Historik'; -$labels'removelink' = 'Remove email reference'; +$labels'removelink' = 'Fjern email reference'; $labels'printdescriptions' = 'Udskriv beskrivelser'; $labels'parentcalendar' = 'Indsæt indeni'; $labels'searchearlierdates' = '« Søg efter tidligere arrangementer'; @@ -105,9 +105,9 @@ $labels'showurldescription' = 'Brug følgende adresse for at tilgå din kalender (skrivebeskyttet) fra andre programmer. Du kan kopiere og indsætet denne i ethvert kalenderprogram, der understøtter iCal-formatet.'; $labels'caldavurldescription' = 'Kopiér denne adresse til en <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a>-klientprogram (eks. Evolution eller Mozilla Thunderbird) for at synkronisere denne kalender komplet med din computer eller mobilenhed.'; $labels'findcalendars' = 'Find kalendere ...'; -$labels'searchterms' = 'Search terms'; +$labels'searchterms' = 'Søgetermer'; $labels'calsearchresults' = 'Tilgængelige kalendere'; -$labels'calendarsubscribe' = 'List permanently'; +$labels'calendarsubscribe' = 'List permanent'; $labels'nocalendarsfound' = 'Der blev ikke fundet nogen kalender'; $labels'nrcalendarsfound' = '$nr kalendere blev fundet'; $labels'quickview' = 'Vis kun denne kalender'; @@ -129,7 +129,7 @@ $labels'weekofyear' = 'Uge'; $labels'pastevents' = 'Tidligere'; $labels'futureevents' = 'Fremtid'; -$labels'showalarms' = 'Show reminders'; +$labels'showalarms' = 'Vis påmindelser'; $labels'defaultalarmtype' = 'Standardindstilling for påmindelse'; $labels'defaultalarmoffset' = 'Standardtidspunkt for påmindelse'; $labels'attendee' = 'Deltager'; @@ -151,8 +151,8 @@ $labels'availunknown' = 'Ukendt'; $labels'availtentative' = 'Forsøgsvis'; $labels'availoutofoffice' = 'Ikke på kontoret'; -$labels'delegatedto' = 'Delegated to: '; -$labels'delegatedfrom' = 'Delegated from: '; +$labels'delegatedto' = 'Delegere til:'; +$labels'delegatedfrom' = 'Delegere fra:'; $labels'scheduletime' = 'Find ledigt tidspunkt'; $labels'sendinvitations' = 'Send invitationer'; $labels'sendnotifications' = 'Gør deltagere opmærksom på ændringer'; @@ -169,6 +169,7 @@ $labels'eventupdatesubject' = '"$title" er blevet opdateret'; $labels'eventupdatesubjectempty' = 'Et arrangement der vedrører dig er blevet opdateret'; $labels'eventupdatemailbody' = "*\$title*\n\nTidspunkt: \$date\n\nInviterede: \$attendees\n\nBemærk venligst vedhæftede iCalendar-fil med alle detaljer om arrangementet, som du kan importere til dit kalenderprogram."; +$labels'eventcancelsubject' = '"$title" er blevet annulleret'; $labels'eventcancelmailbody' = "*\$title*\n\nTidspunkt: \$date\n\nInviterede: \$attendees\n\nDette arrangement er blevet aflyst af \$organizer.\n\nBemærk venligst vedhæftede iCalendard-fil med de opdaterede detaljer om arrangementet."; $labels'itipobjectnotfound' = 'Begivenheden som denne besked henviser til, blev ikke fundet i din kalender.'; $labels'itipmailbodyaccepted' = "\$sender har accepteret invitationen til det følgende arrangement:\n\n*\$title*\n\nTidspunkt: \$date\n\nInviterede: \$attendees";
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/de_CH.inc
Changed
@@ -179,6 +179,7 @@ $labels'itipmailbodydelegated' = "\$sender hat die Teilnahme an folgendem Event delegiert:\n\n*\$title*\n\nWann: \$date"; $labels'itipmailbodydelegatedto' = "\$sender hat die Teilnahme an folgendem Event an Sie delegiert:\n\n*\$title*\n\nWann: \$date"; $labels'itipdeclineevent' = 'Möchten Sie die Einladung zu diesem Termin ablehnen?'; +$labels'declinedeleteconfirm' = 'Do you also want to delete this declined event from your calendar?'; $labels'itipcomment' = 'Kommentar zur Einladungs/Benachrichtigung'; $labels'itipcommenttitle' = 'Dieser Kommentar wird an die Einladungs/Benachrichtigung angehängt, die an die Teilnehmer verschickt wird'; $labels'notanattendee' = 'Sie sind nicht in der Liste der Teilnehmer aufgeführt';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/de_DE.inc
Changed
@@ -26,7 +26,7 @@ $labels'afterflagdeleted' = 'Als gelöscht markieren'; $labels'aftermoveto' = 'Verschiebe nach...'; $labels'itipoptions' = 'Veranstaltungseinladungen'; -$labels'afteraction' = 'Nachdem eine Einladungs- oder Update-Nachricht verarbetet wurde'; +$labels'afteraction' = 'Nachdem eine Einladungs- oder Aktualisierungsnachricht verarbeitet wurde'; $labels'calendar' = 'Kalender'; $labels'calendars' = 'Kalender'; $labels'category' = 'Kategorie'; @@ -58,7 +58,7 @@ $labels'exportattachments' = 'Mit Anhängen'; $labels'customdate' = 'Benutzerdefiniertes Datum'; $labels'location' = 'Ort'; -$labels'url' = 'URL'; +$labels'url' = 'Internetadresse'; $labels'date' = 'Datum'; $labels'start' = 'Beginn'; $labels'starttime' = 'Startzeit'; @@ -66,7 +66,7 @@ $labels'endtime' = 'Endzeit'; $labels'repeat' = 'Wiederholung'; $labels'selectdate' = 'Datum auswählen'; -$labels'freebusy' = 'Zeige mich als'; +$labels'freebusy' = 'Mich anzeigen als'; $labels'free' = 'Frei'; $labels'busy' = 'Gebucht'; $labels'outofoffice' = 'Abwesend'; @@ -94,7 +94,7 @@ $labels'parentcalendar' = 'Erstellen in'; $labels'searchearlierdates' = '« Frühere Termine suchen'; $labels'searchlaterdates' = 'Spätere Termine suchen »'; -$labels'andnmore' = '$nr weitere...'; +$labels'andnmore' = '$nr weitere …'; $labels'togglerole' = 'Zum Ändern der Rolle klicken'; $labels'createfrommail' = 'Als Termin speichern'; $labels'importevents' = 'Termine importieren'; @@ -104,7 +104,7 @@ $labels'showurl' = 'URL anzeigen'; $labels'showurldescription' = 'Über die folgende Adresse können Sie mit einem beliebigen Kalenderprogramm Ihren Kalender abrufen (nur lesend), sofern dieses das iCal-Format unterstützt.'; $labels'caldavurldescription' = 'Diese Adresse in einen <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a>-Klienten (z.B. Evolution oder Mozilla Thunderbird) kopieren, um den Kalender in Gänze mit einem mobilen Gerät zu synchronisieren.'; -$labels'findcalendars' = 'Kalender finden...'; +$labels'findcalendars' = 'Kalender finden …'; $labels'searchterms' = 'Suchbegriffe'; $labels'calsearchresults' = 'Verfügbare Kalender'; $labels'calendarsubscribe' = 'Permanent anzeigen'; @@ -163,13 +163,13 @@ $labels'nextslot' = 'Nächster Vorschlag'; $labels'suggestedslot' = 'Empfohlener Slot'; $labels'noslotfound' = 'Es konnten keine freien Zeiten gefunden werden'; -$labels'invitationsubject' = 'Sie wurden zu "$title" eingeladen'; +$labels'invitationsubject' = 'Sie wurden zu »$title« eingeladen'; $labels'invitationmailbody' = "*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees\n\nIm Anhang finden Sie eine iCalendar-Datei mit allen Details des Termins. Diese können Sie in Ihre Kalenderanwendung importieren."; $labels'invitationattendlinks' = "Falls Ihr E-Mail-Programm keine iTip-Anfragen unterstützt, können Sie den folgenden Link verwenden, um den Termin zu bestätigen oder abzulehnen:\n\$url"; -$labels'eventupdatesubject' = '"$title" wurde aktualisiert'; +$labels'eventupdatesubject' = '»$title« wurde aktualisiert'; $labels'eventupdatesubjectempty' = 'Termin wurde aktualisiert'; $labels'eventupdatemailbody' = "*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees\n\nIm Anhang finden Sie eine iCalendar-Datei mit den aktualisiereten Termindaten. Diese können Sie in Ihre Kalenderanwendung importieren."; -$labels'eventcancelsubject' = '"$title" wurde abgesagt'; +$labels'eventcancelsubject' = '»$title« wurde abgesagt'; $labels'eventcancelmailbody' = "*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees\n\nDer Termin wurde von \$organizer abgesagt.\n\nIm Anhang finden Sie eine iCalendar-Datei mit den Termindaten."; $labels'itipobjectnotfound' = 'Der Termin auf den sich diese Nachricht bezieht, wurde in Ihrem Kalender nicht gefunden.'; $labels'itipmailbodyaccepted' = "\$sender hat die Einladung zum folgenden Termin angenommen:\n\n*\$title*\n\nWann: \$date\n\nTeilnehmer: \$attendees"; @@ -207,7 +207,7 @@ $labels'deleteventconfirm' = 'Möchten Sie diesen Termin wirklich löschen?'; $labels'deletecalendarconfirm' = 'Möchten Sie diesen Kalender mit allen Terminen wirklich löschen?'; $labels'deletecalendarconfirmrecursive' = 'Soll dieser Kalender wirklich mit allen Terminen und Unterkalendern gelöscht werden?'; -$labels'savingdata' = 'Speichere Daten...'; +$labels'savingdata' = 'Daten werden gespeichert …'; $labels'errorsaving' = 'Fehler beim Speichern.'; $labels'operationfailed' = 'Die Aktion ist fehlgeschlagen.'; $labels'invalideventdates' = 'Ungültige Daten eingegeben! Bitte überprüfen Sie die Eingaben.'; @@ -220,8 +220,8 @@ $labels'importwarningexists' = 'Eine Kopie dieses Termins existiert bereits in Ihrem Kalender.'; $labels'newerversionexists' = 'Eine neuere Version dieses Termins exisitert bereits! Import abgebrochen.'; $labels'nowritecalendarfound' = 'Kein Kalender zum Speichern gefunden'; -$labels'importedsuccessfully' = 'Der Termin wurde erfolgreich in \'$calendar\' gespeichert'; -$labels'updatedsuccessfully' = 'Der Termin wurde erfolgreich in \'$calendar\' geändert'; +$labels'importedsuccessfully' = 'Der Termin wurde erfolgreich in »$calendar« gespeichert'; +$labels'updatedsuccessfully' = 'Der Termin wurde erfolgreich in »$calendar« geändert'; $labels'attendeupdateesuccess' = 'Teilnehmerstatus erfolgreich aktualisiert'; $labels'itipsendsuccess' = 'Einladung an Teilnehmer versendet.'; $labels'itipresponseerror' = 'Die Antwort auf diese Einladung konnte nicht versendet werden'; @@ -242,12 +242,12 @@ $labels'allevents' = 'Alle'; $labels'saveasnew' = 'Als neu speichern'; $labels'birthdays' = 'Geburtstage'; -$labels'birthdayscalendar' = 'Geburtstags-Kalender'; -$labels'displaybirthdayscalendar' = 'Geburtstags-Kalender anzeigen'; +$labels'birthdayscalendar' = 'Geburtstagskalender'; +$labels'displaybirthdayscalendar' = 'Geburtstagskalender anzeigen'; $labels'birthdayscalendarsources' = 'Für diese Adressbücher'; $labels'birthdayeventtitle' = '$names Geburtstag'; $labels'birthdayage' = 'Alter $age'; -$labels'objectchangelog' = 'Änderungshistorie'; +$labels'objectchangelog' = 'Änderungsverlauf'; $labels'objectdiff' = 'Änderungen aus $rev1 nach $rev2'; $labels'objectnotfound' = 'Termindaten sind leider nicht vergübar'; $labels'objectchangelognotavailable' = 'Änderungshistorie ist nicht verfügbar für diesen Termin';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/el.inc
Added
@@ -0,0 +1,95 @@ +<?php +/** + * Localizations for Kolab Calendar plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/calendar/ + */ +$labels'default_view' = 'Προεπιλεγμένη προβολή'; +$labels'time_format' = 'Μορφή ώρας'; +$labels'workinghours' = 'Ώρες εργασίας'; +$labels'add_category' = 'Προσθήκη κατηγορίας'; +$labels'remove_category' = 'Αφαίρεση κατηγορίας'; +$labels'defaultcalendar' = 'Δημιουργία νέων συμβάντων στο'; +$labels'eventcoloring' = 'Χρωματισμός συμβάντος'; +$labels'coloringmode0' = 'Σύμφωνα με το ημερολόγιο'; +$labels'coloringmode1' = 'Σύμφωνα με την κατηγορία'; +$labels'aftertrash' = 'Μετακίνηση στα απορρίματα'; +$labels'afterdelete' = 'Διαγραφή μηνύματος'; +$labels'afterflagdeleted' = 'Σημείωση ως διεγραμμένου'; +$labels'aftermoveto' = 'Μεταφορά σε...'; +$labels'itipoptions' = 'Προσκλήσεις συμβάντος'; +$labels'calendar' = 'Ημερολόγιο'; +$labels'calendars' = 'Ημερολόγια'; +$labels'category' = 'Κατηγορία'; +$labels'categories' = 'Κατηγορίες'; +$labels'createcalendar' = 'Δημιουργία νέου ημερολογίου'; +$labels'editcalendar' = 'Επεξεργασία ιδιοτήτων ημερολογίου'; +$labels'name' = 'Όνομα'; +$labels'color' = 'Χρώμα'; +$labels'day' = 'Ημέρα'; +$labels'week' = 'Εβδομάδα'; +$labels'month' = 'Μήνας'; +$labels'new' = 'Νέο'; +$labels'new_event' = 'Νέο συμβάν'; +$labels'edit_event' = 'Επεξεργασία συμβάντος'; +$labels'edit' = 'Επεξεργασία'; +$labels'save' = 'Αποθήκευση'; +$labels'removelist' = 'Αφαίρεση από την λίστα'; +$labels'cancel' = 'Ακύρωση'; +$labels'select' = 'Επιλογή'; +$labels'print' = 'Εκτύπωση'; +$labels'printtitle' = 'Εκτύπωση ημερολογίων'; +$labels'title' = 'Περίληψη'; +$labels'description' = 'Περιγραφή'; +$labels'all-day' = 'ολοήμερο'; +$labels'export' = 'Εξαγωγή'; +$labels'exporttitle' = 'Εξαγωγή σε iCalendar'; +$labels'exportrange' = 'Συμβάντα από'; +$labels'location' = 'Τοποθεσία'; +$labels'url' = 'URL'; +$labels'date' = 'Ημερομηνία'; +$labels'start' = 'Έναρξη'; +$labels'starttime' = 'Ώρα έναρξης'; +$labels'end' = 'Λήξη'; +$labels'endtime' = 'Ώρα λήξης'; +$labels'repeat' = 'Επανάληψη'; +$labels'selectdate' = 'Επιλογή ημερομηνίας'; +$labels'busy' = 'Απασχολημένος'; +$labels'outofoffice' = 'Εκτός γραφείου'; +$labels'status' = 'Κατάσταση'; +$labels'sensitivity' = 'Ιδιωτικότητα'; +$labels'comment' = 'Σχόλιο'; +$labels'created' = 'Δημιουργήθηκε'; +$labels'changed' = 'Τελευταία τροποποίηση'; +$labels'eventhistory' = 'Ιστορικό'; +$labels'createfrommail' = 'Αποθήκευση συμβάντος ως'; +$labels'importevents' = 'Εισαγωγή συμβάντων'; +$labels'importrange' = 'Συμβάντα από'; +$labels'onemonthback' = '1 μήνα πριν'; +$labels'nmonthsback' = '$nr μήνες πριν'; +$labels'findcalendars' = 'Εύρεση ημερολογίων...'; +$labels'searchterms' = 'Όροι αναζήτησης'; +$labels'calsearchresults' = 'Διαθέσιμα ημερολόγια'; +$labels'until' = 'μέχρι'; +$labels'today' = 'Σήμερα'; +$labels'tomorrow' = 'Αύριο'; +$labels'thisweek' = 'Αυτή την εβδομάδα'; +$labels'nextweek' = 'Την επόμενη εβδομάδα'; +$labels'prevweek' = 'Την προηγούμενη εβδομάδα'; +$labels'thismonth' = 'Αυτό τον μήνα'; +$labels'nextmonth' = 'Τον επόμενο μήνα'; +$labels'weekofyear' = 'Εβδομάδα'; +$labels'role' = 'Ρόλος'; +$labels'availability' = 'Διαθ.'; +$labels'confirmstate' = 'Κατάσταση'; +$labels'addattendee' = 'Προσθήκη συμμετεχόντων'; +$labels'roleorganizer' = 'Οργανωτής'; +$labels'cutypegroup' = 'Ομάδα'; +$labels'availbusy' = 'Απασχολημένος'; +$labels'availoutofoffice' = 'Εκτός γραφείου'; +$labels'tabsummary' = 'Περίληψη'; +$labels'savingdata' = 'Αποθήκευση δεδομένων...'; +$labels'objectchangelog' = 'Αλλαγή ιστορικού'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/en_US.inc
Changed
@@ -82,7 +82,6 @@ $labels'status' = 'Status'; $labels'status-confirmed' = 'Confirmed'; $labels'status-cancelled' = 'Cancelled'; -$labels'status-tentative' = 'Tentative'; $labels'priority' = 'Priority'; $labels'sensitivity' = 'Privacy'; $labels'public' = 'public'; @@ -165,6 +164,8 @@ $labels'availunknown' = 'Unknown'; $labels'availtentative' = 'Tentative'; $labels'availoutofoffice' = 'Out of Office'; +$labels'delegatedto' = 'Delegated to: '; +$labels'delegatedfrom' = 'Delegated from: '; $labels'scheduletime' = 'Find availability'; $labels'sendinvitations' = 'Send invitations'; $labels'sendnotifications' = 'Notify participants about modifications';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/es_ES.inc
Changed
@@ -169,6 +169,7 @@ $labels'eventupdatesubject' = '"$title" Ha sido actualizado'; $labels'eventupdatesubjectempty' = 'Un evento que le concierne ha sido actualizado'; $labels'eventupdatemailbody' = "*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees\n\nSe adjunta un archivo iCalendar con los detalles del evento actualizados que se puede importar a la aplicación de calendario."; +$labels'eventcancelsubject' = 'Se ha cancelado "$título"'; $labels'eventcancelmailbody' = "*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees\n\nEl evento ha sido cancelado por\$organizer.\n\nSe adjunta un archivo iCalendar con los detalles del evento actualizados."; $labels'itipobjectnotfound' = 'El evento referido por este mensaje no se encontró en su calendario.'; $labels'itipmailbodyaccepted' = "\$sender ha aceptado la invitación al evento siguiente:\n\n*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees"; @@ -183,21 +184,85 @@ $labels'itipcommenttitle' = 'Este comentario se adjunta al mensaje de invitación/notificación enviada a los participantes'; $labels'notanattendee' = 'Usted no está en la lista como un asistente de este evento'; $labels'eventcancelled' = 'El evento ha sido cancelado'; +$labels'saveincalendar' = 'guardar en'; +$labels'updatemycopy' = 'actualizar en mi calendario'; +$labels'savetocalendar' = 'guardar en calendario'; +$labels'openpreview' = 'Revisar en calendario'; +$labels'noearlierevents' = 'No hay eventos anteriores'; +$labels'nolaterevents' = 'No hay eventos posteriores'; $labels'resource' = 'Recurso'; +$labels'addresource' = 'Reservar recursos'; +$labels'findresources' = 'Encontrar recursos'; $labels'resourcedetails' = 'Detalles'; +$labels'resourceavailability' = 'Disponibilidad'; +$labels'resourceowner' = 'Propietario'; +$labels'resourceadded' = 'Se ha añadido un recurso a su evento'; $labels'tabsummary' = 'Sumario'; $labels'tabrecurrence' = 'Recurrencia '; +$labels'tabattendees' = 'Participantes'; $labels'tabresources' = 'Recursos'; $labels'tabattachments' = 'Adjuntos'; $labels'tabsharing' = 'Compartir'; +$labels'deleteobjectconfirm' = '¿Esta seguro de eliminar este evento?'; +$labels'deleteventconfirm' = '¿Esta seguro de eliminar este evento?'; +$labels'deletecalendarconfirm' = '¿Esta seguro de eliminar este calendario con todos sus eventos?'; +$labels'deletecalendarconfirmrecursive' = '¿Esta seguro de eliminar este calendario con todos sus eventos y subcalendarios?'; $labels'savingdata' = 'Guardando datos...'; +$labels'errorsaving' = 'Error al guardar cambios'; +$labels'operationfailed' = 'Error en la operación solicitada'; +$labels'invalideventdates' = 'Se han introducido fechas erróneas; por favor, revise su entrada'; +$labels'invalidcalendarproperties' = 'Propiedades de portátiles erróneas; establezca un nombre válido.'; +$labels'searchnoresults' = 'No se han encontrado eventos en los calendarios seleccionados.'; +$labels'successremoval' = 'El evento se ha eliminado correctamente.'; +$labels'successrestore' = 'El evento se ha restaurado correctamente.'; +$labels'errornotifying' = 'Error al enviar notificaciones a los participantes del evento'; +$labels'errorimportingevent' = 'Error al importar el evento'; +$labels'importwarningexists' = 'Ya existe una copia de este evento en su calendario.'; +$labels'newerversionexists' = 'Ya existe una versión más nueva de este evento. Abortado.'; +$labels'nowritecalendarfound' = 'No se ha encontrado ningún calendario para guardar el evento.'; +$labels'importedsuccessfully' = 'El evento se agregó correctamente a \'$calendar\''; +$labels'updatedsuccessfully' = 'El evento se actualizó correctamente en \'$calendar\''; $labels'attendeupdateesuccess' = 'Se ha actualizado correctamente el estado del participante'; +$labels'itipsendsuccess' = 'Invitación enviada a los participantes.'; +$labels'itipresponseerror' = 'Error al enviar la respuesta a esta invitación de evento'; $labels'itipinvalidrequest' = 'Esta invitación ya no es válida'; +$labels'sentresponseto' = 'Respuesta de invitación con éxito enviada a $mailto'; +$labels'localchangeswarning' = 'Está a punto de realizar cambios que sólo se reflejarán en su calendario y no se enviarán al organizador del evento.'; +$labels'importsuccess' = 'Se han importado $nr eventos correctamente'; +$labels'importnone' = 'No se han encontrado eventos para importar'; +$labels'importerror' = 'Se ha producido un error durante la importación'; +$labels'aclnorights' = 'No tiene derechos de administrador en este calendario.'; +$labels'changeeventconfirm' = 'Cambiar evento'; +$labels'removeeventconfirm' = 'Eliminar evento'; +$labels'changerecurringeventwarning' = 'Este es un evento recurrente. ¿Desea editar solo el evento actual, este y todos los futuros casos, todos los casos o guardarlo como un nuevo evento?'; +$labels'removerecurringeventwarning' = 'Este es un evento recurrente. ¿Desea eliminar solo el evento actual, este y todos los futuros casos o todos los casos de este evento?'; +$labels'removerecurringallonly' = 'Este es un evento recurrente. Como participante, sólo puede eliminar el evento al completo con todos los casos..'; +$labels'currentevent' = 'Actual'; $labels'futurevents' = 'Futuro'; $labels'allevents' = 'Todo'; +$labels'saveasnew' = 'Guardar como nuevo'; +$labels'birthdays' = 'Cumpleaños'; +$labels'birthdayscalendar' = 'Calendario de cumpleaños'; +$labels'displaybirthdayscalendar' = 'Mostrar calendarios de cumpleaños'; +$labels'birthdayscalendarsources' = 'Desde esta libreta de direcciones'; +$labels'birthdayeventtitle' = 'Cumpleaños de $nombre'; +$labels'birthdayage' = 'Edad $edad'; $labels'objectchangelog' = 'Cambiar historial'; $labels'objectdiff' = 'Cambiar de $rev1 a $rev2'; +$labels'objectnotfound' = 'Error al cargar los datos del evento'; +$labels'objectchangelognotavailable' = 'El historial de cambios no está disponible para este evento'; $labels'objectdiffnotavailable' = 'No hay comparación posible que las revisiones seleccionadas'; +$labels'revisionrestoreconfirm' = '¿Realmente desea restaurar la revisión $rev de este evento? Esto reemplazará el evento actual con la antigua versión.'; $labels'objectrestoresuccess' = 'Revisión $rev restaurado correctamente'; -$labels'objectrestoreerror' = 'No se pudo restaurar la revisión antigua'; +$labels'objectrestoreerror' = 'No se pudo restaurar la revisión anterior'; +$labels'arialabelminical' = 'Seleccionar una fecha en el calendario'; +$labels'arialabelcalendarview' = 'Vista del calendario'; +$labels'arialabelsearchform' = 'Formulario de búsqueda de eventos'; +$labels'arialabelquicksearchbox' = 'Entrada en búsqueda de eventos'; +$labels'arialabelcalsearchform' = 'Formulario de búsqueda de calendarios'; +$labels'calendaractions' = 'acciones del calendario'; +$labels'arialabeleventattendees' = 'Lista de participantes del evento'; +$labels'arialabeleventresources' = 'Lista de recursos del evento'; +$labels'arialabelresourcesearchform' = 'Formulario de búsqueda de recursos'; +$labels'arialabelresourceselection' = 'Recursos disponibles'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/fr_FR.inc
Changed
@@ -14,9 +14,9 @@ $labels'workinghours' = 'Heures de travail'; $labels'add_category' = 'Ajouter une catégorie'; $labels'remove_category' = 'Supprimer une catégorie'; -$labels'defaultcalendar' = 'Ajouter un nouvel évènement'; -$labels'eventcoloring' = 'Couleurs des évènements'; -$labels'coloringmode0' = 'Selon l\'agenda'; +$labels'defaultcalendar' = 'Ajouter un nouvel événement'; +$labels'eventcoloring' = 'Couleurs des événements'; +$labels'coloringmode0' = 'Selon le calendrier'; $labels'coloringmode1' = 'Selon la catégorie'; $labels'coloringmode2' = 'Calendrier en contour, catégorie en contenu'; $labels'coloringmode3' = 'Catégorie en contour, calendrier en contenu'; @@ -25,14 +25,14 @@ $labels'afterdelete' = 'Supprimer ce message'; $labels'afterflagdeleted' = 'Marquer comme supprimer'; $labels'aftermoveto' = 'Déplacer vers...'; -$labels'itipoptions' = 'Invitations à l\'évenement'; +$labels'itipoptions' = 'Invitations à l\'événement'; $labels'afteraction' = 'Après une invitation ou une modification, le message est traité'; -$labels'calendar' = 'Agenda'; -$labels'calendars' = 'Agendas'; +$labels'calendar' = 'Calendrier'; +$labels'calendars' = 'Calendriers'; $labels'category' = 'Catégorie'; $labels'categories' = 'Catégories'; -$labels'createcalendar' = 'Créer un nouvel agenda'; -$labels'editcalendar' = 'Modifier les propriétés de l\'agenda'; +$labels'createcalendar' = 'Créer un nouveau calendrier'; +$labels'editcalendar' = 'Modifier les propriétés du calendrier'; $labels'name' = 'Nom'; $labels'color' = 'Couleur'; $labels'day' = 'Jour'; @@ -40,41 +40,41 @@ $labels'month' = 'Mois'; $labels'agenda' = 'Ordre du jour'; $labels'new' = 'Nouveau'; -$labels'new_event' = 'Nouvel évènement'; -$labels'edit_event' = 'Modifier l\'évènement'; +$labels'new_event' = 'Nouvel événement'; +$labels'edit_event' = 'Modifier l\'événement'; $labels'edit' = 'Modifier'; $labels'save' = 'Enregistrer'; -$labels'removelist' = 'supprimer de la liste'; +$labels'removelist' = 'Supprimer de la liste'; $labels'cancel' = 'Annuler'; $labels'select' = 'Sélectionner'; $labels'print' = 'Imprimer'; -$labels'printtitle' = 'Imprimer les agendas'; +$labels'printtitle' = 'Imprimer les calendriers'; $labels'title' = 'Résumé'; $labels'description' = 'Description'; -$labels'all-day' = 'Toute la journée'; +$labels'all-day' = 'toute la journée'; $labels'export' = 'Exporter'; $labels'exporttitle' = 'Exporter vers iCalendar'; -$labels'exportrange' = 'Évènements depuis'; -$labels'exportattachments' = 'With attachments'; +$labels'exportrange' = 'Événements depuis'; +$labels'exportattachments' = 'Avec pièces jointes'; $labels'customdate' = 'Date personnalisée'; $labels'location' = 'Lieu'; $labels'url' = 'URL'; $labels'date' = 'Date'; $labels'start' = 'Début'; -$labels'starttime' = 'Début'; +$labels'starttime' = 'Heure de début'; $labels'end' = 'Fin'; -$labels'endtime' = 'Fin'; +$labels'endtime' = 'Heure de fin'; $labels'repeat' = 'Répéter'; $labels'selectdate' = 'Sélectionner une date'; -$labels'freebusy' = 'Montrez moi comme'; +$labels'freebusy' = 'Montrez-moi en tant que'; $labels'free' = 'Libre'; $labels'busy' = 'Occupé'; $labels'outofoffice' = 'Absent'; $labels'tentative' = 'Provisoire'; -$labels'mystatus' = 'Mon status'; +$labels'mystatus' = 'Mon statut'; $labels'status' = 'Statut'; $labels'status-confirmed' = 'Confirmé'; -$labels'status-cancelled' = 'Annulée'; +$labels'status-cancelled' = 'Annulé'; $labels'priority' = 'Priorité'; $labels'sensitivity' = 'Diffusion'; $labels'public' = 'publique'; @@ -83,7 +83,7 @@ $labels'links' = 'Référence'; $labels'alarms' = 'Rappel'; $labels'comment' = 'Commentaire'; -$labels'created' = 'Créée'; +$labels'created' = 'Créé'; $labels'changed' = 'Dernière modification'; $labels'unknown' = 'Inconnu'; $labels'eventoptions' = 'Options'; @@ -92,39 +92,39 @@ $labels'removelink' = 'Enlever référence d\'e-mail'; $labels'printdescriptions' = 'Imprimer les descriptions'; $labels'parentcalendar' = 'Ajouter à l\'intérieur'; -$labels'searchearlierdates' = '« Chercher des évènements plus ancien'; -$labels'searchlaterdates' = 'Chercher des évènement plus récent »'; +$labels'searchearlierdates' = '« Chercher des événements plus anciens'; +$labels'searchlaterdates' = 'Chercher des événement plus récents »'; $labels'andnmore' = '$nr de plus...'; $labels'togglerole' = 'Cliquez pour changer de rôle'; -$labels'createfrommail' = 'Enregistrer comme un évènement'; -$labels'importevents' = 'Importer des évènements'; -$labels'importrange' = 'Évènements depuis'; -$labels'onemonthback' = '1 mois précédent'; +$labels'createfrommail' = 'Enregistrer comme un événement'; +$labels'importevents' = 'Importer des événements'; +$labels'importrange' = 'Événements depuis'; +$labels'onemonthback' = '1 mois auparavant'; $labels'nmonthsback' = '$nr mois précédents'; -$labels'showurl' = 'Afficher l\'URL de l\'agenda'; -$labels'showurldescription' = 'Utilisez l\'adresse suivante pour accéder(lecture seule) à votre agenda depuis une autre application. Vous pouvez copier/coller celle-ci dans n\'importe quel agenda électronique gérant le format iCal.'; -$labels'caldavurldescription' = 'Copiez cette adresse vers une application client (comme Evolution ou Mozilla Thunderbird) compatible <a href="http://fr.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> pour synchroniser ce calendrier avec votre ordinateur ou votre smartphone.'; +$labels'showurl' = 'Afficher l\'URL du calendrier'; +$labels'showurldescription' = 'Utilisez l\'adresse suivante pour accéder (lecture seule) à votre calendrier depuis d\'autres applications. Vous pouvez copier/coller celle-ci dans n\'importe quel calendrier électronique gérant le format iCal.'; +$labels'caldavurldescription' = 'Copiez cette adresse vers une application client (comme Evolution ou Mozilla Thunderbird) compatible <a href="http://fr.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> pour synchroniser pleinement ce calendrier avec votre ordinateur ou votre smartphone.'; $labels'findcalendars' = 'Recherche de calendriers...'; $labels'searchterms' = 'Critères de recherche'; $labels'calsearchresults' = 'Calendriers disponibles'; $labels'calendarsubscribe' = 'Lister définitivement'; -$labels'nocalendarsfound' = 'Aucun calendriers trouvés'; +$labels'nocalendarsfound' = 'Aucun calendrier trouvé'; $labels'nrcalendarsfound' = '$nr calendriers trouvés'; $labels'quickview' = 'Voir uniquement ce calendrier'; $labels'invitationspending' = 'Invitations en attente'; $labels'invitationsdeclined' = 'Invitations refusées'; -$labels'changepartstat' = 'Changer le statut du participent'; +$labels'changepartstat' = 'Changer le statut du participant'; $labels'rsvpcomment' = 'Texte d\'invitation'; $labels'listrange' = 'Intervalle à afficher :'; $labels'listsections' = 'Diviser en :'; -$labels'smartsections' = 'Section intelligente'; +$labels'smartsections' = 'Sections intelligentes'; $labels'until' = 'jusqu\'à'; $labels'today' = 'Aujourd\'hui'; $labels'tomorrow' = 'Demain'; $labels'thisweek' = 'Cette semaine'; $labels'nextweek' = 'Semaine prochaine'; $labels'prevweek' = 'Semaine précédente'; -$labels'thismonth' = 'Ce mois'; +$labels'thismonth' = 'Ce mois-ci'; $labels'nextmonth' = 'Mois prochain'; $labels'weekofyear' = 'Semaine'; $labels'pastevents' = 'Passé'; @@ -139,10 +139,10 @@ $labels'addattendee' = 'Ajouter participant'; $labels'roleorganizer' = 'Organisateur'; $labels'rolerequired' = 'Requis'; -$labels'roleoptional' = 'Optionel'; -$labels'rolechair' = 'Chair'; +$labels'roleoptional' = 'Optionnel'; +$labels'rolechair' = 'Présidence'; $labels'rolenonparticipant' = 'Absent'; -$labels'cutypeindividual' = 'Individual'; +$labels'cutypeindividual' = 'Individuel'; $labels'cutypegroup' = 'Groupe'; $labels'cutyperesource' = 'Ressource'; $labels'cutyperoom' = 'Salle'; @@ -158,110 +158,111 @@ $labels'sendnotifications' = 'Informer les participants des modifications'; $labels'sendcancellation' = 'Informer les participants de l\'annulation'; $labels'onlyworkinghours' = 'Trouver des disponibilités en fonction de mes heures de travail'; -$labels'reqallattendees' = 'Demandé/tous'; +$labels'reqallattendees' = 'Demandé/tous les participants'; $labels'prevslot' = 'Créneau précédent'; $labels'nextslot' = 'Créneau suivant'; $labels'suggestedslot' = 'Emplacement suggéré'; $labels'noslotfound' = 'Impossible de trouver un créneau disponible'; $labels'invitationsubject' = 'Vous avez été invité à "$title"'; -$labels'invitationmailbody' = "*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees\n\nVous trouverez ci-joint un fichier iCalendar avec tous les détails de l'évènement que vous pourrez importer dans votre agenda électronique."; -$labels'invitationattendlinks' = "Dans le cas où votre application de messagerie ne gère pas les demandes \"iTip\". Vous pouvez utiliser ce lien pour accepter ou refuser l'invitation : \n\$url"; +$labels'invitationmailbody' = "*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees\n\nVous trouverez ci-joint un fichier iCalendar avec tous les détails de l'événement que vous pourrez importer dans votre calendrier électronique."; +$labels'invitationattendlinks' = "Dans le cas où votre application de messagerie ne gère pas les demandes \"iTip\", vous pouvez utiliser ce lien pour accepter ou refuser l'invitation : \n\$url"; $labels'eventupdatesubject' = '"$title" a été modifié'; -$labels'eventupdatesubjectempty' = 'Un évènement vous concernant a été modifié'; -$labels'eventupdatemailbody' = "*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees\n\nVous trouverez ci-joint un fichier iCalendar avec tous les modifications de l'évènement que vous pourrez importer dans votre agenda électronique."; -$labels'eventcancelmailbody' = "*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees\n\nL'évènement a été annulé par \$organizer.\n\nVous trouverez en pièce jointe un fichier iCalendar avec les modifications de l'évènement que vous pourrez importer dans votre agenda électronique."; -$labels'itipobjectnotfound' = 'L\'évènement lié à ce message n\'a pas été trouvé dans votre calendrier.'; -$labels'itipmailbodyaccepted' = "\$sender a accepté l'invitation à l'évènement suivant :\n\n*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees"; -$labels'itipmailbodytentative' = "\$sender a accepté provisoirement l'invitation à l'évènement suivant :\n\n*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees"; -$labels'itipmailbodydeclined' = "\$sender a refusé l'invitation à l'évènement suivant :\n\n*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees"; -$labels'itipmailbodycancel' = "\$sender a rejeté votre participation à l’évènement suivant :\n\n*\$title*\n\nLe: \$date"; +$labels'eventupdatesubjectempty' = 'Un événement vous concernant a été modifié'; +$labels'eventupdatemailbody' = "*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees\n\nVous trouverez ci-joint un fichier iCalendar avec toutes les modifications à l'événement que vous pourrez importer dans votre calendrier électronique."; +$labels'eventcancelsubject' = '"$title" a été annulé'; +$labels'eventcancelmailbody' = "*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees\n\nL'événement a été annulé par \$organizer.\n\nVous trouverez en pièce jointe un fichier iCalendar avec les modifications de l'événement que vous pourrez importer dans votre calendrier électronique."; +$labels'itipobjectnotfound' = 'L\'événement lié à ce message n\'a pas été trouvé dans votre calendrier.'; +$labels'itipmailbodyaccepted' = "\$sender a accepté l'invitation à l'événement suivant :\n\n*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees"; +$labels'itipmailbodytentative' = "\$sender a accepté provisoirement l'invitation à l'événement suivant :\n\n*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees"; +$labels'itipmailbodydeclined' = "\$sender a refusé l'invitation à l'événement suivant :\n\n*\$title*\n\nQuand: \$date\n\nParticipants: \$attendees"; +$labels'itipmailbodycancel' = "\$sender a rejeté votre participation à l’événement suivant :\n\n*\$title*\n\nLe: \$date"; $labels'itipmailbodydelegated' = "\$sender a délégué la participation à l'événement suivant : \n\n*\$title*\n\nQuand: \$date"; $labels'itipmailbodydelegatedto' = "\$sender vous a délégué la participation à l'événement suivant : \n\n*\$title*\n\nQuand : \$date"; -$labels'itipdeclineevent' = 'Voulez-vous refuser l\'invitation à cet évènement?'; -$labels'declinedeleteconfirm' = 'Voulez-vous aussi supprimer cet évènement annulé, de votre calendrier ?';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/lv.inc
Added
@@ -0,0 +1,268 @@ +<?php +/** + * Localizations for Kolab Calendar plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/calendar/ + */ +$labels'default_view' = 'Noklusētais skats'; +$labels'time_format' = 'Laika formāts'; +$labels'timeslots' = 'Iedaļu skaits stundā'; +$labels'first_day' = 'Nedēļas sākuma diena'; +$labels'first_hour' = 'Pirmā attēlojamā stunda'; +$labels'workinghours' = 'Darba laiks'; +$labels'add_category' = 'Pievienot kategoriju'; +$labels'remove_category' = 'Dzēst kategoriju'; +$labels'defaultcalendar' = 'Veidot jaunus notikumus kalendārā'; +$labels'eventcoloring' = 'Iekrāsot notikumus'; +$labels'coloringmode0' = 'Kalendāra krāsā'; +$labels'coloringmode1' = 'Kategorijas krāsā'; +$labels'coloringmode2' = 'Kalendāra krāsa līnijai, kategorijas krāsa pildījumam'; +$labels'coloringmode3' = 'Kategorijas krāsa līnijai, kalendāra krāsa pildījumam'; +$labels'afternothing' = 'Nedarīt neko'; +$labels'aftertrash' = 'Pārvietot uz Papīrgrozu'; +$labels'afterdelete' = 'Dzēst ziņojumu'; +$labels'afterflagdeleted' = 'Atzīmēt kā dzēstu'; +$labels'aftermoveto' = 'Pārvietot uz ...'; +$labels'itipoptions' = 'Notikuma uzaicinājumi'; +$labels'afteraction' = 'Pēc tam, kad uzaicinājums vai izmaiņu ziņojums ir apstrādāts'; +$labels'calendar' = 'Kalendārs'; +$labels'calendars' = 'Kalendāri'; +$labels'category' = 'Kategorija'; +$labels'categories' = 'Kategorijas'; +$labels'createcalendar' = 'Jauns kalendārs'; +$labels'editcalendar' = 'Kalendāra īpašības'; +$labels'name' = 'Nosaukums'; +$labels'color' = 'Krāsa'; +$labels'day' = 'Diena'; +$labels'week' = 'Nedēļa'; +$labels'month' = 'Mēnesis'; +$labels'agenda' = 'Dienaskārtība'; +$labels'new' = 'Jauns'; +$labels'new_event' = 'Jauns notikums'; +$labels'edit_event' = 'Mainīt notikumu'; +$labels'edit' = 'Labot'; +$labels'save' = 'Saglabāt'; +$labels'removelist' = 'Dzēst no saraksta'; +$labels'cancel' = 'Atcelt'; +$labels'select' = 'Izvēlēties'; +$labels'print' = 'Drukāt'; +$labels'printtitle' = 'Drukāt kalendārus'; +$labels'title' = 'Kopsavilkums'; +$labels'description' = 'Apraksts'; +$labels'all-day' = 'visa diena'; +$labels'export' = 'Eksportēt'; +$labels'exporttitle' = 'Eksportēt uz iCalendar'; +$labels'exportrange' = 'Notikumi no'; +$labels'exportattachments' = 'Ar pielikumiem'; +$labels'customdate' = 'Lietotāja izvēlēts datums'; +$labels'location' = 'Vieta'; +$labels'url' = 'URL'; +$labels'date' = 'Datums'; +$labels'start' = 'Sākums'; +$labels'starttime' = 'Sākums'; +$labels'end' = 'Beigas'; +$labels'endtime' = 'Beigas'; +$labels'repeat' = 'Atkārtot'; +$labels'selectdate' = 'Izvēlieties datumu'; +$labels'freebusy' = 'Rādīt mani kā'; +$labels'free' = 'Brīvs'; +$labels'busy' = 'Aizņemts'; +$labels'outofoffice' = 'Ārpus biroja'; +$labels'tentative' = 'Varbūt'; +$labels'mystatus' = 'Mans statuss'; +$labels'status' = 'Statuss'; +$labels'status-confirmed' = 'Apstiprināts'; +$labels'status-cancelled' = 'Atcelts'; +$labels'priority' = 'Prioritāte'; +$labels'sensitivity' = 'Privātums'; +$labels'public' = 'publisks'; +$labels'private' = 'privāts'; +$labels'confidential' = 'slepens'; +$labels'links' = 'Atsauce'; +$labels'alarms' = 'Atgādinājums'; +$labels'comment' = 'Komentārs'; +$labels'created' = 'Izveidots'; +$labels'changed' = 'Mainīts'; +$labels'unknown' = 'Nezināms'; +$labels'eventoptions' = 'iespējas'; +$labels'generated' = 'izveidots'; +$labels'eventhistory' = 'Vēsture'; +$labels'removelink' = 'Noņemt atsauci uz e-pastu'; +$labels'printdescriptions' = 'Drukāt aprakstus'; +$labels'parentcalendar' = 'Ievietot'; +$labels'searchearlierdates' = '« Meklēt agrākus notikumus'; +$labels'searchlaterdates' = 'Meklēt vēlākus notikumus »'; +$labels'andnmore' = 'vēl $nr ...'; +$labels'togglerole' = 'Uzklikšķiniet, lai pārslēgtu lomu'; +$labels'createfrommail' = 'Saglabāt kā notikumu'; +$labels'importevents' = 'Importēt notikumus'; +$labels'importrange' = 'Notikumi no'; +$labels'onemonthback' = 'Pirms mēneša'; +$labels'nmonthsback' = 'Pirms $nr mēnešiem'; +$labels'showurl' = 'Parādīt kalendāra URL'; +$labels'showurldescription' = 'Izmantojiet sekojošo adresi, lai piekļūtu (tikai lasīšanas režīmā) jūsu kalendāram no citas aplikācijas. Jūs varat to nokopēt un ielīmēt jebkurā aplikācijā, kas atbalsta iCal formātu.'; +$labels'caldavurldescription' = 'Nokopējiet šo adresi <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> uz klienta aplikāciju (piem. Evolution vai Mozilla Thunderbird) lai pilnībā sinhronizētu izvēlēto kalendāru ar jūsu datoru vai mobilo ierīci.'; +$labels'findcalendars' = 'Meklēt kalendārus...'; +$labels'searchterms' = 'Meklēšanas nosacījumi'; +$labels'calsearchresults' = 'Pieejamie kalendāri'; +$labels'calendarsubscribe' = 'Rādīt sarakstā vienmēr'; +$labels'nocalendarsfound' = 'Neviens kalendārs nav atrasts'; +$labels'nrcalendarsfound' = 'Atrasti $nr kalendāri'; +$labels'quickview' = 'Skatīt tikai šo kalendāru'; +$labels'invitationspending' = 'Neapstrādātie uzaicinājumi'; +$labels'invitationsdeclined' = 'Noraidītie uzaicinājumi'; +$labels'changepartstat' = 'Mainīt dalībnieka statusu'; +$labels'rsvpcomment' = 'Uzaicinājuma teksts'; +$labels'listrange' = 'Attēlot diapazonu:'; +$labels'listsections' = 'Sadalīt:'; +$labels'smartsections' = 'Viedās sekcijas'; +$labels'until' = 'līdz'; +$labels'today' = 'Šodien'; +$labels'tomorrow' = 'Rīt'; +$labels'thisweek' = 'Šonedēļ'; +$labels'nextweek' = 'Jaunnedēļ'; +$labels'prevweek' = 'Pagājušā nedēļā'; +$labels'thismonth' = 'Šomēnes'; +$labels'nextmonth' = 'Nākošmēnes'; +$labels'weekofyear' = 'Nedēļa'; +$labels'pastevents' = 'Pagātne'; +$labels'futureevents' = 'Nākotne'; +$labels'showalarms' = 'Rādīt atgādinājumus'; +$labels'defaultalarmtype' = 'Noklusētais atgādinājumu uzstādījums'; +$labels'defaultalarmoffset' = 'Noklusētais atgādinājuma laiks'; +$labels'attendee' = 'Dalībnieks'; +$labels'role' = 'Loma'; +$labels'availability' = 'Pieej.'; +$labels'confirmstate' = 'Statuss'; +$labels'addattendee' = 'Pievienot dalībnieku'; +$labels'roleorganizer' = 'Organizētājs'; +$labels'rolerequired' = 'Obligāti'; +$labels'roleoptional' = 'Pēc izvēles'; +$labels'rolechair' = 'Vadītājs'; +$labels'rolenonparticipant' = 'Nepiedalās'; +$labels'cutypeindividual' = 'Persona'; +$labels'cutypegroup' = 'Grupa'; +$labels'cutyperesource' = 'Resurss'; +$labels'cutyperoom' = 'Telpa'; +$labels'availfree' = 'Brīvs'; +$labels'availbusy' = 'Aizņemts'; +$labels'availunknown' = 'Nezināms'; +$labels'availtentative' = 'Varbūt'; +$labels'availoutofoffice' = 'Ārpus biroja'; +$labels'delegatedto' = 'Deleģēt:'; +$labels'delegatedfrom' = 'Deleģēts no:'; +$labels'scheduletime' = 'Atrast brīvu laiku'; +$labels'sendinvitations' = 'Nosūtīt uzaicinājumus'; +$labels'sendnotifications' = 'Apziņot dalībniekus par izmaiņām'; +$labels'sendcancellation' = 'Apziņot dalībniekus par pasākuma atcelšanu'; +$labels'onlyworkinghours' = 'Atrast brīvu laiku manā darba laikā'; +$labels'reqallattendees' = 'Obligātie/visi dalībnieki'; +$labels'prevslot' = 'Iepriekšējā iedaļa'; +$labels'nextslot' = 'Nākamā iedaļa'; +$labels'suggestedslot' = 'Ieteicamā iedaļa'; +$labels'noslotfound' = 'Nav brīvas laika iedaļas'; +$labels'invitationsubject' = 'Jūs esat uzaicināts uz "$title"'; +$labels'invitationmailbody' = "*\$title*\n\nKad: \$date\n\nUzaicinātie: \$attendees\n\nLūdzu skatiet pievienoto iCalendar failu ar notikuma informācij, kuru jūs varat importēt savā kalendāra aplikācijā."; +$labels'invitationattendlinks' = "Gadījumā ja jūsu e-pasta praogramma neatbalsta iTip pieprasījumus, tad jūs varat izmantot šo saiti, lai pieņemtu vai noraidītu šo uzaicinājumu:\n\$url"; +$labels'eventupdatesubject' = '"$title" ir mainīts'; +$labels'eventupdatesubjectempty' = 'Pasākums, kas attiecas uz jums ir mainīts'; +$labels'eventupdatemailbody' = "*\$title*\n\nKad: \$date\n\nUzaicinātie: \$attendees\n\nPielikumā pievienots iCalendar fails ar atjaunotu notikuma informāciju, kuru jūs varat importēt savā kalendāra aplikācijā."; +$labels'eventcancelsubject' = '"$title" ir atcelts'; +$labels'eventcancelmailbody' = "*\$title*\n\nKad: \$date\n\nUzaicinātie: \$attendees\n\nPasākumu ir atcēlis tā organizators \$organizer.\n\nLūdzu skatiet pievienoto iCalendar failu ar atjaunotu notikuma informāciju."; +$labels'itipobjectnotfound' = 'Notikums uz ko attiecas šis ziņojums nav atrodams jūsu kalendāra.'; +$labels'itipmailbodyaccepted' = "\$sender ir pieņēmis uzaicinājumu uz:\n\n*\$title*\n\nKad: \$date\n\nUzaicinātie: \$attendees"; +$labels'itipmailbodytentative' = "\$sender has tentatively accepted the invitation to the following event:\n\n*\$title*\n\nWhen: \$date\n\nInvitees: \$attendees"; +$labels'itipmailbodydeclined' = "\$sender ir noraidījis uzaicinājumu dalībai:\n\n*\$title*\n\nKad: \$date\n\nUzaicinātie: \$attendees"; +$labels'itipmailbodycancel' = "\$sender ir noraidījis jūsu dalību sekojošā pasākumā:\n\n*\$title*\n\nKad: \$date"; +$labels'itipmailbodydelegated' = "\$sender ir deleģējis dalību sekojošā pasākumā:\n\n*\$title*\n\nKad: \$date"; +$labels'itipmailbodydelegatedto' = "\$sender ir deleģējis jums dalību sekojošā pasākumā:\n\n*\$title*\n\nKad: \$date"; +$labels'itipdeclineevent' = 'Vai vēlaties noraidīt šo uzaicinājumu?'; +$labels'declinedeleteconfirm' = 'Vai jūs vēlaties arī dzēst šo noraidīto notikumu no jūsu kalendāra?'; +$labels'itipcomment' = 'Uzaicinājumam/paziņojuma komentārs'; +$labels'itipcommenttitle' = 'Šis komentārs tiks pievienots uzaicinājumam/paziņojuma ziņojumam dalībniekiem'; +$labels'notanattendee' = 'Jūs neesat šī notikuma dalībnieku sarakstā'; +$labels'eventcancelled' = 'Notikums atcelts'; +$labels'saveincalendar' = 'saglabāt'; +$labels'updatemycopy' = 'Atjaunot manā kalendārā'; +$labels'savetocalendar' = 'Saglabāt kalendārā'; +$labels'openpreview' = 'Pārbaudīt kalendāru'; +$labels'noearlierevents' = 'Nav notikumu pirms'; +$labels'nolaterevents' = 'Nav notikumu pēc'; +$labels'resource' = 'Resurss'; +$labels'addresource' = 'Pieteikt resursus'; +$labels'findresources' = 'Meklēt resursus'; +$labels'resourcedetails' = 'Detaļas'; +$labels'resourceavailability' = 'Pieejamība'; +$labels'resourceowner' = 'Īpašnieks'; +$labels'resourceadded' = 'Resursi pievienoti jūsu notikumam';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/nl_NL.inc
Changed
@@ -6,30 +6,33 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/calendar/ */ -$labels'default_view' = 'Standaard agenda'; -$labels'time_format' = 'Tijdsformaat'; -$labels'timeslots' = 'Tijdsdelen per uur'; +$labels'default_view' = 'Standaardweergave'; +$labels'time_format' = 'Tijdnotatie'; +$labels'timeslots' = 'Tijdvakken per uur'; $labels'first_day' = 'Eerste weekdag'; $labels'first_hour' = 'Eerste uur om weer te geven'; $labels'workinghours' = 'Werkuren'; $labels'add_category' = 'Categorie toevoegen'; $labels'remove_category' = 'Categorie verwijderen'; -$labels'defaultcalendar' = 'Maak nieuwe afspraken in'; -$labels'eventcoloring' = 'Kleuren van afspraken'; -$labels'coloringmode0' = 'Volgens kalender'; +$labels'defaultcalendar' = 'Nieuwe activiteiten maken in'; +$labels'eventcoloring' = 'Kleuren voor activiteiten'; +$labels'coloringmode0' = 'Volgens agenda'; $labels'coloringmode1' = 'Volgens categorie'; -$labels'coloringmode2' = 'Kalender voor omtrek, categorie voor inhoud'; -$labels'coloringmode3' = 'Categorie voor omtrek, kalender voor inhoud'; -$labels'aftertrash' = 'Verplaats naar prullenbak'; -$labels'afterdelete' = 'Verwijder bericht'; -$labels'afterflagdeleted' = 'Markeer als verwijderd'; -$labels'aftermoveto' = 'Verplaats naar...'; -$labels'calendar' = 'Kalender'; -$labels'calendars' = 'Kalenders'; +$labels'coloringmode2' = 'Agenda voor overzicht, categorie voor inhoud'; +$labels'coloringmode3' = 'Categorie voor overzicht, agenda voor inhoud'; +$labels'afternothing' = 'Niets doen'; +$labels'aftertrash' = 'Verplaatsen naar Prullenbak'; +$labels'afterdelete' = 'Bericht verwijderen'; +$labels'afterflagdeleted' = 'Markeren als verwijderd'; +$labels'aftermoveto' = 'Verplaatsen naar...'; +$labels'itipoptions' = 'Uitnodigingen voor activiteiten'; +$labels'afteraction' = 'Nadat een uitnodiging of updatebericht is verwerkt'; +$labels'calendar' = 'Agenda'; +$labels'calendars' = 'Agenda\'s'; $labels'category' = 'Categorie'; $labels'categories' = 'Categorieën'; -$labels'createcalendar' = 'Maak een nieuwe kalender'; -$labels'editcalendar' = 'Wijzig kalender eigenschappen'; +$labels'createcalendar' = 'Nieuwe agenda maken'; +$labels'editcalendar' = 'Agenda-eigenschappen bewerken'; $labels'name' = 'Naam'; $labels'color' = 'Kleur'; $labels'day' = 'Dag'; @@ -37,187 +40,229 @@ $labels'month' = 'Maand'; $labels'agenda' = 'Agenda'; $labels'new' = 'Nieuw'; -$labels'new_event' = 'Nieuwe afspraak'; -$labels'edit_event' = 'Wijzig afspraak'; -$labels'edit' = 'Wijzig'; -$labels'save' = 'Bewaar'; -$labels'cancel' = 'Terug'; -$labels'select' = 'Selecteer'; +$labels'new_event' = 'Nieuwe activiteit'; +$labels'edit_event' = 'Activiteit bewerken'; +$labels'edit' = 'Bewerken'; +$labels'save' = 'Opslaan'; +$labels'removelist' = 'Verwijderen uit lijst'; +$labels'cancel' = 'Annuleren'; +$labels'select' = 'Selecteren'; $labels'print' = 'Afdrukken'; -$labels'printtitle' = 'Kalenders afdrukken'; +$labels'printtitle' = 'Agenda\'s afdrukken'; $labels'title' = 'Samenvatting'; -$labels'description' = 'Omschrijving'; +$labels'description' = 'Beschrijving'; $labels'all-day' = 'hele dag'; -$labels'export' = 'Exporteer naar ICS'; -$labels'exporttitle' = 'Als iCalender exporteren'; -$labels'exportrange' = 'Afspraken uit'; -$labels'exportattachments' = 'Exporteer bijlages'; -$labels'customdate' = 'Aangepaste datumweergave'; +$labels'export' = 'Exporteren'; +$labels'exporttitle' = 'Exporteren naar iCalendar'; +$labels'exportrange' = 'Activiteiten uit'; +$labels'exportattachments' = 'Met bijlagen'; +$labels'customdate' = 'Aangepaste datum'; $labels'location' = 'Locatie'; $labels'url' = 'URL'; $labels'date' = 'Datum'; $labels'start' = 'Begin'; -$labels'starttime' = 'Start time'; -$labels'end' = 'Eind'; +$labels'starttime' = 'Begintijd'; +$labels'end' = 'Einde'; $labels'endtime' = 'Eindtijd'; -$labels'repeat' = 'Herhaal'; -$labels'selectdate' = 'Kies datum'; +$labels'repeat' = 'Herhalen'; +$labels'selectdate' = 'Datum kiezen'; $labels'freebusy' = 'Toon mij als'; -$labels'free' = 'Vrij'; +$labels'free' = 'Beschikbaar'; $labels'busy' = 'Bezet'; -$labels'outofoffice' = 'Niet Aanwezig'; +$labels'outofoffice' = 'Niet aanwezig'; $labels'tentative' = 'Misschien'; +$labels'mystatus' = 'Mijn status'; $labels'status' = 'Status'; $labels'status-confirmed' = 'Bevestigd'; -$labels'status-cancelled' = 'Afgelast'; +$labels'status-cancelled' = 'Geannuleerd'; $labels'priority' = 'Prioriteit'; -$labels'sensitivity' = 'Zichtbaarheid'; -$labels'public' = 'publiek'; -$labels'private' = 'prive'; +$labels'sensitivity' = 'Privacy'; +$labels'public' = 'openbaar'; +$labels'private' = 'privé'; $labels'confidential' = 'vertrouwelijk'; +$labels'links' = 'Referentie'; $labels'alarms' = 'Herinnering'; $labels'comment' = 'Opmerking'; +$labels'created' = 'Gemaakt op'; +$labels'changed' = 'Laatst gewijzigd op'; $labels'unknown' = 'Onbekend'; $labels'eventoptions' = 'Opties'; $labels'generated' = 'gegenereerd op'; $labels'eventhistory' = 'Geschiedenis'; -$labels'printdescriptions' = 'Print beschrijvingen'; -$labels'parentcalendar' = 'Voeg toe in'; -$labels'searchearlierdates' = '« Zoek voor eerdere afspraken'; -$labels'searchlaterdates' = 'Zoek voor latere afspraken »'; -$labels'andnmore' = '$nr meer...'; +$labels'removelink' = 'E-mailreferentie verwijderen'; +$labels'printdescriptions' = 'Beschrijvingen afdrukken'; +$labels'parentcalendar' = 'Invoegen in'; +$labels'searchearlierdates' = '« Zoek eerdere activiteiten'; +$labels'searchlaterdates' = 'Zoek latere activiteiten »'; +$labels'andnmore' = 'Nog $nr...'; $labels'togglerole' = 'Klik om van rol te wisselen'; -$labels'createfrommail' = 'Bewaar als afspraak'; -$labels'importevents' = 'Afspraken importeren'; -$labels'importrange' = 'Afspraken vanaf'; -$labels'onemonthback' = '1 maand terug'; -$labels'nmonthsback' = '$nr maanden terug'; -$labels'showurl' = 'Toon kalender URL'; -$labels'showurldescription' = 'Gebruik het volgende adres om uw kalendar te gebruiken (alleen lezen) in andere programma\'s. U kunt dit knippen en plakken in elk kalender programma dat het iCal formaat ondersteunt.'; -$labels'caldavurldescription' = 'Kopieer dit adres in een <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> programma (bijv. Evolution of Mozilla Thunderbird) om deze specifieke kalender volledig te synchronizeren met je computer of mobiel apparaat.'; -$labels'findcalendars' = 'Vind agenda\'s...'; -$labels'searchterms' = 'Search terms'; +$labels'createfrommail' = 'Opslaan als activiteit'; +$labels'importevents' = 'Activiteiten importeren'; +$labels'importrange' = 'Activiteiten van'; +$labels'onemonthback' = 'afgelopen maand'; +$labels'nmonthsback' = 'afgelopen $nr maanden'; +$labels'showurl' = 'URL van agenda tonen'; +$labels'showurldescription' = 'Gebruik het volgende adres om uw agenda in andere programma\'s te gebruiken (alleen-lezen). U kunt dit knippen en plakken in elk agendaprogramma dat de iCal-indeling ondersteunt.'; +$labels'caldavurldescription' = 'Kopieer dit adres naar een <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a>-client (bijv. Evolution of Mozilla Thunderbird) om deze specifieke agenda volledig te synchroniseren met uw computer of mobiele apparaat.'; +$labels'findcalendars' = 'Agenda\'s zoeken...'; +$labels'searchterms' = 'Zoektermen'; $labels'calsearchresults' = 'Beschikbare agenda\'s'; -$labels'calendarsubscribe' = 'Permanent weergeven'; -$labels'invitationsdeclined' = 'Afgewezen uitnodigingen'; -$labels'listrange' = 'Bereik om te tonen:'; -$labels'listsections' = 'Verdeel in:'; +$labels'calendarsubscribe' = 'Definitief weergeven'; +$labels'nocalendarsfound' = 'Geen agenda\'s gevonden'; +$labels'nrcalendarsfound' = '$nr agenda\'s gevonden'; +$labels'quickview' = 'Alleen deze agenda bekijken'; +$labels'invitationspending' = 'Uitnodigingen in behandeling'; +$labels'invitationsdeclined' = 'Afgeslagen uitnodigingen'; +$labels'changepartstat' = 'Status van deelnemer wijzigen'; +$labels'rsvpcomment' = 'Tekst van uitnodiging'; +$labels'listrange' = 'Weer te geven bereik:'; +$labels'listsections' = 'Verdelen in:'; $labels'smartsections' = 'Slimme secties'; $labels'until' = 'tot'; $labels'today' = 'Vandaag'; $labels'tomorrow' = 'Morgen'; $labels'thisweek' = 'Deze week'; $labels'nextweek' = 'Volgende week'; +$labels'prevweek' = 'Vorige week'; $labels'thismonth' = 'Deze maand'; $labels'nextmonth' = 'Volgende maand'; $labels'weekofyear' = 'Week'; $labels'pastevents' = 'Verleden'; $labels'futureevents' = 'Toekomst'; -$labels'showalarms' = 'Toon herinneringen'; -$labels'defaultalarmtype' = 'Instelling standaard herinnering'; -$labels'defaultalarmoffset' = 'Standaard herinneringstijd'; +$labels'showalarms' = 'Herinneringen tonen'; +$labels'defaultalarmtype' = 'Standaardinstelling herinnering'; +$labels'defaultalarmoffset' = 'Standaardtijd herinnering'; $labels'attendee' = 'Deelnemer'; $labels'role' = 'Rol'; -$labels'availability' = 'Beschikb.'; +$labels'availability' = 'Beschikbaar'; $labels'confirmstate' = 'Status'; $labels'addattendee' = 'Deelnemer toevoegen'; -$labels'roleorganizer' = 'Organisatie'; +$labels'roleorganizer' = 'Organisator'; $labels'rolerequired' = 'Verplicht';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/calendar/localization/pt_BR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/calendar/localization/pt_BR.inc
Changed
@@ -37,6 +37,7 @@ $labels'edit_event' = 'Editar evento'; $labels'edit' = 'Editar'; $labels'save' = 'Gravar'; +$labels'removelist' = 'Remover da lista'; $labels'cancel' = 'Cancelar'; $labels'select' = 'Selecionar'; $labels'print' = 'Imprimir'; @@ -53,6 +54,7 @@ $labels'url' = 'URL'; $labels'date' = 'Data'; $labels'start' = 'Início'; +$labels'starttime' = 'Hora de início'; $labels'end' = 'Término'; $labels'repeat' = 'Repetir'; $labels'selectdate' = 'Escolha a data'; @@ -73,9 +75,12 @@ $labels'alarms' = 'Lembrete'; $labels'comment' = 'Comentário'; $labels'created' = 'Created'; +$labels'changed' = 'Última modificação'; $labels'unknown' = 'Desconhecido'; $labels'eventoptions' = 'Opções'; $labels'generated' = 'gerado em'; +$labels'eventhistory' = 'História'; +$labels'removelink' = 'Remover referência do email'; $labels'printdescriptions' = 'Descrições de impressão'; $labels'parentcalendar' = 'Inserir dentro'; $labels'searchearlierdates' = '« Procurar por eventos anteriores'; @@ -107,6 +112,7 @@ $labels'weekofyear' = 'Semana'; $labels'pastevents' = 'Passado'; $labels'futureevents' = 'Futuro'; +$labels'showalarms' = 'Mostrar lembrentes'; $labels'defaultalarmtype' = 'Configuração de lembrete padrão'; $labels'defaultalarmoffset' = 'Horário padrão de lembrete'; $labels'attendee' = 'Participante'; @@ -117,6 +123,7 @@ $labels'roleorganizer' = 'Organizador'; $labels'rolerequired' = 'Obrigatório'; $labels'roleoptional' = 'Opcional'; +$labels'rolechair' = 'Cadeira'; $labels'cutypegroup' = 'Grupo'; $labels'cutyperesource' = 'Recurso'; $labels'availfree' = 'Disponível'; @@ -209,4 +216,5 @@ $labels'birthdayscalendarsources' = 'From these address books'; $labels'birthdayeventtitle' = '$name\'s Birthday'; $labels'birthdayage' = 'Age $age'; +$labels'objectchangelog' = 'Mudar Histórico'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_activesync/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_activesync/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "ActiveSync configuration utility for Kolab accounts", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.0", + "version": "3.3.2", "authors": { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_activesync/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_activesync/localization/cs_CZ.inc
Changed
@@ -1,12 +1,12 @@ <?php $labels'tabtitle' = 'Activesync'; -$labels'activesynctitle' = 'Správa Avtivesync zařízení'; +$labels'activesynctitle' = 'Správa zařízení Avtivesync'; $labels'devices' = 'Zařízení'; $labels'devicealias' = 'Název zařízení'; $labels'synchronize' = 'Synchronizovat'; $labels'withalarms' = 'Připomenutí'; $labels'syncsettings' = 'Nastavení synchronizace'; -$labels'deviceconfig' = 'Konfigurace zařízení'; +$labels'deviceconfig' = 'Nastavení zařízení'; $labels'folderstosync' = 'Složky k synchronizaci'; $labels'mail' = 'E-mail'; $labels'contact' = 'Adresáře'; @@ -15,19 +15,19 @@ $labels'note' = 'Poznámky'; $labels'configuration' = 'Nastavení'; $labels'deletedevice' = 'Smazat zařízení'; -$labels'nodevices' = 'V současné době nemáte registrována žádná zařízení.<br/><br/>Zařízení musíte nejprve připojit k serveru dle <a href="$url" target="_blank">těchto pokynů</a>. Po úspěšném připojení zde bude dostupná konfigurace připojených zařízení.'; -$labels'savingdata' = 'Ukládám data...'; -$labels'savingerror' = 'Nepodařilo se uložit konfiguraci'; -$labels'notsupported' = 'Váš server nepodporuje metadata/annotations'; -$labels'devicedeleteconfirm' = 'Opravdu chcete smazat konfiguraci pro toto zařízení?'; -$labels'successfullydeleted' = 'Konfigurace zařízení byla úspěšně odebrána'; -$labels'devicenotfound' = 'Nelze přečíst konfigurace zařízení'; +$labels'nodevices' = 'V současné době nemáte registrována žádná zařízení.<br/><br/>Zařízení musíte nejprve připojit k serveru dle <a href="$url" target="_blank">těchto pokynů</a>. Po úspěšném připojení zde bude dostupné nastavení připojených zařízení.'; +$labels'savingdata' = 'Ukládají se data...'; +$labels'savingerror' = 'Nepodařilo se uložit nastavení'; +$labels'notsupported' = 'Váš server nepodporuje popisná data/poznámky'; +$labels'devicedeleteconfirm' = 'Opravdu chcete smazat nastavení pro toto zařízení?'; +$labels'successfullydeleted' = 'Nastavení zařízení bylo úspěšně odebráno'; +$labels'devicenotfound' = 'Nelze přečíst nastavení zařízení'; $labels'devicetype' = 'Typ zařízení'; $labels'acsversion' = 'Verze protokolu'; -$labels'useragent' = 'User-Agent'; +$labels'useragent' = 'Uživatelský agent'; $labels'friendlyname' = 'Zobrazovaný název'; $labels'os' = 'Operační systém'; -$labels'oslanguage' = 'Jazyk OS'; +$labels'oslanguage' = 'Jazyk operačního systému'; $labels'phonenumber' = 'Telefonní číslo'; $labels'arialabeldeviceframe' = 'Nastavení synchronizace zařízení'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_activesync/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_activesync/localization/de_CH.inc
Changed
@@ -1,10 +1,12 @@ <?php $labels'tabtitle' = 'Activesync'; +$labels'activesynctitle' = 'Verwalte ActiveSync-Geräte'; $labels'devices' = 'Geräte'; $labels'devicealias' = 'Gerätename'; $labels'synchronize' = 'Synchronisieren'; $labels'withalarms' = 'Mit Erinnerungen'; $labels'syncsettings' = 'Synchronisationseinstellungen'; +$labels'deviceconfig' = 'Gerätekonfiguration'; $labels'folderstosync' = 'Order zum Synchronisieren'; $labels'mail' = 'E-Mail'; $labels'contact' = 'Kontakte'; @@ -13,15 +15,12 @@ $labels'note' = 'Notizen'; $labels'configuration' = 'Konfiguration'; $labels'deletedevice' = 'Gerät löschen'; +$labels'nodevices' = 'Es sind aktuell keine Geräte registriert.<br/><br/>Um ein Gerät zu registrieren, bitte zuerst nach der Anleitung von <a href="$url" target="_blank">dieser Seite</a> mit dem Server verbinden. Anschließend sollte das Gerät für die Konfiguration hier zur Verfügung stehen.'; $labels'savingdata' = 'Daten werden gespeichert...'; $labels'savingerror' = 'Fehler beim Speichern'; $labels'notsupported' = 'Ihr Server unterstützt keine Activesync-Konfiguration'; $labels'devicedeleteconfirm' = 'Wollen Sie wirklich alle Einstellungen für dieses Gerät löschen?'; $labels'successfullydeleted' = 'Die Geräteinstellungen wurden erfolgreich gelöscht'; -$labels'activesynctitle' = 'Verwalte ActiveSync-Geräte'; -$labels'deviceconfig' = 'Gerätekonfiguration'; -$labels'nodevices' = 'Es sind aktuell keine Geräte registriert.<br/><br/>Um ein Gerät zu registrieren, bitte zuerst nach der Anleitung von <a href="$url" target="_blank">dieser Seite</a> mit dem Server verbinden. Anschließend sollte das Gerät für die Konfiguration hier zur Verfügung stehen.'; -$labels'savingerror' = 'Fehler beim Speichern der Konfiguration'; $labels'devicenotfound' = 'Es kann nicht auf die Gerätekonfiguration zugegriffen werden.'; $labels'devicetype' = 'Gerätetyp'; $labels'acsversion' = 'Protokollversion';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_activesync/localization/el.inc
Added
@@ -0,0 +1,30 @@ +<?php +$labels'tabtitle' = 'Activesync'; +$labels'activesynctitle' = 'Διαχείριση συσκευών Activesync'; +$labels'devices' = 'Συσκευές'; +$labels'devicealias' = 'Όνομα συσκευής'; +$labels'synchronize' = 'Συγχρονισμός'; +$labels'withalarms' = 'Με ξυπνητήρια'; +$labels'syncsettings' = 'Ρυθμίσεις συγχρονισμού'; +$labels'deviceconfig' = 'Ρυθμίσεις συσκευής'; +$labels'folderstosync' = 'Φάκελοι προς συγχρονισμό'; +$labels'mail' = 'Ηλεκτρονική αλληλογραφία'; +$labels'contact' = 'Βιβλίο διευθύνσεων'; +$labels'event' = 'Ημερολόγια'; +$labels'task' = 'Εργασίες'; +$labels'note' = 'Σημειώσεις'; +$labels'configuration' = 'Ρυθμίσεις'; +$labels'deletedevice' = 'Διαγραφή συσκευής'; +$labels'savingdata' = 'Αποθήκευση δεδομένων...'; +$labels'savingerror' = 'Αποτυχία αποθήκευσης ρυθμίσεων'; +$labels'devicedeleteconfirm' = 'Θέλετε να διαγράψετε τις ρυθμίσεις για αυτή τη συσκευή;'; +$labels'successfullydeleted' = 'Αφαιρέθηκε επιτυχώς οι ρυθμίσεις για την συσκευή'; +$labels'devicenotfound' = 'Αδυναμία ανάγνωσης ρυθμίσεων συσκευής'; +$labels'devicetype' = 'Τύπος συσκευής'; +$labels'acsversion' = 'Έκδοση πρωτοκόλλου'; +$labels'friendlyname' = 'Φιλικό όνομα'; +$labels'os' = 'Λειτουργικό σύστημα'; +$labels'oslanguage' = 'Γλώσσα λειτουργικού συστήματος'; +$labels'phonenumber' = 'Αριθμός τηλεφώνου'; +$labels'arialabeldeviceframe' = 'Ρυθμίσεις συγχρονισμού συσκευής από'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_activesync/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_activesync/localization/es_ES.inc
Changed
@@ -1,9 +1,33 @@ <?php +$labels'tabtitle' = 'Activesync'; +$labels'activesynctitle' = 'Administrar dispositivos ActiveSync'; +$labels'devices' = 'Dispositivos'; +$labels'devicealias' = 'Nombre del dispositivo'; +$labels'synchronize' = 'Sincronizar'; +$labels'withalarms' = 'Con alarmas'; +$labels'syncsettings' = 'Ajustes de sincronización'; +$labels'deviceconfig' = 'Configuración del dispositivo'; +$labels'folderstosync' = 'Carpetas para sincronizar'; $labels'mail' = 'Correo electrónico'; $labels'contact' = 'Libreta de direcciones'; $labels'event' = 'Calendarios'; $labels'task' = 'Tareas'; $labels'note' = 'Notas'; $labels'configuration' = 'Configuración'; +$labels'deletedevice' = 'Borrar dispositivo'; +$labels'nodevices' = 'Actualmente no hay dispositivos registrados. <br/> <br/> Para registrar un dispositivo, primero conéctelo al servidor usando las instrucciones de <a href="$url" target="_blank"> esta página < / A>. A continuación, el dispositivo debe estar disponible para la configuración aquí.'; $labels'savingdata' = 'Guardando datos...'; +$labels'savingerror' = 'Error al guardar la configuración'; +$labels'notsupported' = 'Su servidor no admite metadatos/anotaciones'; +$labels'devicedeleteconfirm' = '¿Esta seguro de eliminar la configuración de este dispositivo?'; +$labels'successfullydeleted' = 'La configuración del dispositivo se ha eliminado con éxito'; +$labels'devicenotfound' = 'No puede leerse la configuración del dispositivo'; +$labels'devicetype' = 'Tipo de dispositivo'; +$labels'acsversion' = 'Versión del protocolo'; +$labels'useragent' = 'Agente de usuario'; +$labels'friendlyname' = 'Nombre amigable'; +$labels'os' = 'Sistema operativo'; +$labels'oslanguage' = 'Idioma del SI'; +$labels'phonenumber' = 'Número de teléfono'; +$labels'arialabeldeviceframe' = 'Formulario de configuración de sincronización de dispositivos'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_activesync/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_activesync/localization/fr_FR.inc
Changed
@@ -2,23 +2,23 @@ $labels'tabtitle' = 'Activesync'; $labels'activesynctitle' = 'Gestion des périphériques Activesync'; $labels'devices' = 'Périphériques'; -$labels'devicealias' = 'Nom du Périphérique'; +$labels'devicealias' = 'Nom du périphérique'; $labels'synchronize' = 'Synchroniser'; $labels'withalarms' = 'Avec alarmes'; $labels'syncsettings' = 'Paramètres de synchronisation'; -$labels'deviceconfig' = 'Configuration du péripherique'; +$labels'deviceconfig' = 'Configuration du périphérique'; $labels'folderstosync' = 'Dossiers à synchroniser'; $labels'mail' = 'Adresse de messagerie'; $labels'contact' = 'Carnet d\'adresses'; -$labels'event' = 'Agendas'; +$labels'event' = 'Calendriers'; $labels'task' = 'Tâches'; $labels'note' = 'Notes'; $labels'configuration' = 'Configuration'; $labels'deletedevice' = 'Supprimer ce périphérique'; -$labels'nodevices' = 'Il n\'y a actuellement pas de périphérique enregistré.<br/><br/>Afin d\'enregistrer un périphérique, commencez par le connecter au serveur d\'abord. Pour cela, utilisez les instructions de <a href="http://wiki.kolab.org/Setup_ActiveSync">cette page</a>. Ensuite le périphérique devrait devenir disponible ici pour configuration.'; +$labels'nodevices' = 'Il n\'y a actuellement pas de périphérique enregistré.<br/><br/>Afin d\'enregistrer un périphérique, commencez par le connecter au serveur. Pour ce faire, utilisez les instructions de <a href="http://wiki.kolab.org/Setup_ActiveSync">cette page</a>. Ensuite, le périphérique devrait devenir disponible pour configuration ici.'; $labels'savingdata' = 'Enregistrer...'; $labels'savingerror' = 'Échec de l\'enregistrement de la configuration'; -$labels'notsupported' = 'Votre serveur ne supporte pas les métadonnées ou les annotations'; +$labels'notsupported' = 'Votre serveur ne supporte pas les métadonnées ni les annotations'; $labels'devicedeleteconfirm' = 'Voulez-vous vraiment supprimer la configuration de ce périphérique?'; $labels'successfullydeleted' = 'La configuration de ce périphérique a été supprimée'; $labels'devicenotfound' = 'Impossible de lire la configuration du périphérique';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_activesync/localization/lv.inc
Added
@@ -0,0 +1,6 @@ +<?php +$labels'devices' = 'Ierīces'; +$labels'mail' = 'E-pasts'; +$labels'event' = 'Kalendāri'; +$labels'savingdata' = 'Saglabājam...'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_activesync/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_activesync/localization/nl_NL.inc
Changed
@@ -1,31 +1,33 @@ <?php $labels'tabtitle' = 'Activesync'; -$labels'activesynctitle' = 'Beheer Activesync-apparaten'; +$labels'activesynctitle' = 'Activesync-apparaten beheren'; $labels'devices' = 'Apparaten'; -$labels'devicealias' = 'Apparaat naam'; -$labels'synchronize' = 'Synchronizeren'; -$labels'withalarms' = 'Met alarmen'; -$labels'syncsettings' = 'Synchronizatie instellingen'; -$labels'deviceconfig' = 'Apparaat configuratie'; -$labels'folderstosync' = 'Mappen voor synchronisatie'; -$labels'mail' = 'Email'; +$labels'devicealias' = 'Apparaatnaam'; +$labels'synchronize' = 'Synchroniseren'; +$labels'withalarms' = 'Met herinneringen'; +$labels'syncsettings' = 'Synchronisatie-instellingen'; +$labels'deviceconfig' = 'Configuratie van apparaat'; +$labels'folderstosync' = 'Te synchroniseren mappen'; +$labels'mail' = 'E-mail'; $labels'contact' = 'Adresboeken'; -$labels'event' = 'Kalenders'; +$labels'event' = 'Agenda\'s'; $labels'task' = 'Taken'; $labels'note' = 'Notities'; $labels'configuration' = 'Configuratie'; -$labels'deletedevice' = 'Verwijder apparaat'; -$labels'savingdata' = 'Data wordt opgeslagen...'; -$labels'savingerror' = 'Fout in opslaan van configuratie'; -$labels'notsupported' = 'Uw server ondersteunt geen metadata/annotaties'; -$labels'devicedeleteconfirm' = 'Wilt u de configuratie voor dit apparaat echt verwijderen?'; -$labels'successfullydeleted' = 'Het apparaat is succesvol verwijderd'; -$labels'devicenotfound' = 'Lezen van apparaat configuratie mislukt'; -$labels'devicetype' = 'Apparaat type'; -$labels'acsversion' = 'Protocol versie'; -$labels'useragent' = 'User agent'; -$labels'friendlyname' = 'Weergave naam'; +$labels'deletedevice' = 'Apparaat verwijderen'; +$labels'nodevices' = 'Momenteel zijn er geen apparaten geregistreerd.<br/><br/>Als u een apparaat wilt registreren, volgt u de instructies op <a href="$url" target="_blank">deze pagina</a> om het eerst met de server te verbinden. Daarna kunt u het apparaat hier configureren.'; +$labels'savingdata' = 'Gegevens opslaan...'; +$labels'savingerror' = 'Opslaan van configuratie is mislukt'; +$labels'notsupported' = 'Uw server ondersteunt geen metagegevens/annotaties'; +$labels'devicedeleteconfirm' = 'Weet u zeker dat u de configuratie voor dit apparaat wilt verwijderen?'; +$labels'successfullydeleted' = 'De configuratie van het apparaat is met succes verwijderd'; +$labels'devicenotfound' = 'Configuratie van apparaat kan niet worden gelezen'; +$labels'devicetype' = 'Apparaattype'; +$labels'acsversion' = 'Protocolversie'; +$labels'useragent' = 'Gebruikersagent'; +$labels'friendlyname' = 'Beschrijvende naam'; $labels'os' = 'Besturingssysteem'; -$labels'oslanguage' = 'Taal besturingssysteem'; +$labels'oslanguage' = 'Taal van besturingssysteem'; $labels'phonenumber' = 'Telefoonnummer'; +$labels'arialabeldeviceframe' = 'Formulier met instellingen voor synchronisatie van apparaat'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_activesync/localization/pt_PT.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_activesync/localization/pt_PT.inc
Changed
@@ -1,4 +1,20 @@ <?php +$labels'tabtitle' = 'Activesync'; +$labels'activesynctitle' = 'Gerir dispositivos Activesync'; +$labels'devices' = 'Dispostivos'; +$labels'devicealias' = 'Nome do Dispositivo'; +$labels'synchronize' = 'Sincronizar'; +$labels'withalarms' = 'Com alarme'; +$labels'syncsettings' = 'Definições de sincronização'; +$labels'deviceconfig' = 'Configuração de dispositivo'; +$labels'folderstosync' = 'Pastas a sincronizar'; +$labels'mail' = 'Email'; +$labels'contact' = 'Livro de Contactos'; $labels'event' = 'Calendários'; -$labels'savingdata' = 'Salvando dados...'; +$labels'task' = 'Tarefas'; +$labels'note' = 'Notas'; +$labels'configuration' = 'Configuração'; +$labels'deletedevice' = 'Remover dispositivo'; +$labels'savingdata' = 'A guardar os dados...'; +$labels'savingerror' = 'Falha ao guardar as alterações.'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Kolab addressbook", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.1", + "version": "3.3.2", "authors": { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/helpdocs/locale/de_DE/LC_MESSAGES/addressbook.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/helpdocs/locale/de_DE/LC_MESSAGES/addressbook.po
Changed
@@ -4,13 +4,15 @@ # # Translators: # Ettore Atalan <atalanttore@googlemail.com>, 2014 +# Mads <mads@batmads.com>, 2016 +# Max Hellwig <max.hellwig@translating-energy.de>, 2016 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2016-07-26 13:49+0000\n" -"Last-Translator: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com>\n" +"PO-Revision-Date: 2016-10-07 11:41+0000\n" +"Last-Translator: Mads <mads@batmads.com>\n" "Language-Team: German (http://www.transifex.com/kolab/kolab-documentation/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +28,7 @@ msgid "" "Just like calendars or regular email folders, personal address books can " "also be shared with other users in your workgroup." -msgstr "" +msgstr "Persönliche Adressbücher können genauso wie Kalender oder normale E-Mail-Ordner mit anderen Nutzern Ihrer Arbeitsgruppe geteilt werden. " #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:16 msgid "Share Contacts with others" @@ -37,7 +39,7 @@ "Settings for sharing is controlled through the address book properties " "accessible through the *More actions* menu behind the gear icon the footer " "in the :ref:`addressbook-groups` list." -msgstr "" +msgstr "Die Einstellungen zum Teilen werden über die Eigenschaften des Adressbuchs gemacht, die durch das *Weitere Tätigkeiten*-Menü hinter dem Zahnradicon in der Fußzeile der :ref: `Adressbuchgruppen <addressbook-groups>`-Liste zu erreichen sind. " #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:25 msgid "Select the address book you want to share." @@ -45,22 +47,22 @@ #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:26 msgid "Choose *Edit address book* from the actions menu." -msgstr "" +msgstr "Wählen Sie *Adressbuch bearbeiten* aus dem Tätigkeitenmenü. " #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:27 msgid "Switch to the *Sharing* tab in the properties form on the right." -msgstr "" +msgstr "Wechseln Sie auf den *Teilen*-Reiter in der Eigenschaftenmaske rechts. " #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:29 msgid "" "The table displays who already has permission to see and modify the selected" " address book. Here you can manage permissions the same way as :ref:`Sharing" " a Folder <settings-folder-sharing>`." -msgstr "" +msgstr "Die Tabelle zeigt an, wer schon die Erlaubnis hat, das ausgewählte Adressbuch zu sehen und verändern. Freigaben können hier auf die selbe Weise, wie :ref: `Ordner teilen <settings-folder-sharing>` verwaltet werden. " #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:34 msgid "Subscribe to Shared Address Books" -msgstr "" +msgstr "Geteilte Adressbücher abonnieren" #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:36 msgid "" @@ -69,11 +71,11 @@ "<settings-folders>` to see all resources you can access. There's a shortcut " "to this: click *Manage folders* in the actions menu behind the gear icon " "located the footer of the directory list." -msgstr "" +msgstr "Adressbücher, die von anderen geteilt wurden, werden nicht sofort in der Verzeichnisliste des Webclients angezeigt. Wechseln Sie zu :ref: `Einstellungen > Ordner <settings-folders>`, um alle Hilfsmittel, auf die Sie Zugriff haben, zu sehen. Es gibt einen schnelleren Weg dorthin: Klicken Sie auf *Ordner verwalten* im Tätigkeitenmenü hinter dem Zahnradicon in der Fußzeile der Verzeichnisliste. " #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:41 msgid "" "In order to make a shared address book appear in the address book view, " "locate it in the folder manager and check the *Subscribed* mark in the list." " Only subscribed directories are visible in the address book view." -msgstr "" +msgstr "Um ein geteiltes Adressbuch in der Adressbuchansicht anzuzeigen, wählen Sie es in der Ordnerverwaltung aus und setzen Sie bei *Abonniert* ein Häkchen in der Liste. Nur abonnierte Verzeichnisse sind in der Adressbuchansicht sichtbar. "
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/helpdocs/locale/es_ES/LC_MESSAGES/addressbook.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/helpdocs/locale/es_ES/LC_MESSAGES/addressbook.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:34+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:18+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +20,13 @@ #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:9 msgid "Sharing Address Books" -msgstr "" +msgstr "Compartir libreta de direcciones" #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:11 msgid "" "Just like calendars or regular email folders, personal address books can " "also be shared with other users in your workgroup." -msgstr "" +msgstr "Al igual que los calendarios o las carpetas de correo electrónico normales, las libretas de direcciones personales también pueden compartirse con otros usuarios de su grupo de trabajo." #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:16 msgid "Share Contacts with others"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/helpdocs/locale/pl_PL/LC_MESSAGES/addressbook.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/helpdocs/locale/pl_PL/LC_MESSAGES/addressbook.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/kolab_addressbook/addressbook.rst:9 msgid "Sharing Address Books"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/kolab_addressbook.php -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/kolab_addressbook.php
Changed
@@ -339,13 +339,16 @@ */ public function config_get($args) { - if ($args'name' != 'autocomplete_addressbooks') { + if ($args'name' != 'autocomplete_addressbooks' || $this->recurrent) { return $args; } $abook_prio = $this->addressbook_prio(); - // here we cannot use rc->config->get() - $sources = $GLOBALS'CONFIG''autocomplete_addressbooks'; + + // Get the original setting, use temp flag to prevent from an infinite recursion + $this->recurrent = true; + $sources = $this->rc->config->get('autocomplete_addressbooks'); + $this->recurrent = false; // Disable all global address books // Assumes that all non-kolab_addressbook sources are global
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/localization/cs_CZ.inc
Changed
@@ -47,12 +47,12 @@ $labels'showhistory' = 'Ukázat historii'; $labels'objectchangelog' = 'Historie změn'; $labels'objectdiff' = 'Změny od $rev1 do $rev2'; -$labels'revisionrestoreconfirm' = 'Opravdu chcete obnovit pozměnění $rev tohoto kontaktu? To nahradí současný kontakt s starou verzí.'; -$labels'objectnotfound' = 'Nepodařilo se načíst data kontaktu'; -$labels'objectchangelognotavailable' = 'Historie změn není k dispozici pro tento kontakt'; +$labels'revisionrestoreconfirm' = 'Opravdu chcete obnovit pozměnění $rev tohoto kontaktu? To nahradí současný kontakt se starou verzí.'; +$labels'objectnotfound' = 'Nepodařilo se nahrát data kontaktu'; +$labels'objectchangelognotavailable' = 'Historie změn není dostupná pro tento kontakt'; $labels'objectdiffnotavailable' = 'Pro vybrané verze není žádné srovnání možné'; -$labels'objectrestoresuccess' = 'Pozměnění $rev úspěšně obnoveno'; -$labels'objectrestoreerror' = 'Nepodařilo se obnovit staré pozměnění'; +$labels'objectrestoresuccess' = 'Změna $rev úspěšně obnovena'; +$labels'objectrestoreerror' = 'Nepodařilo se obnovit starou změnu'; $messages'bookdeleteconfirm' = 'Opravdu chcete smazat označený adresář a veškeré obsažené kontakty?'; $messages'bookdeleting' = 'Maže se adresář...'; $messages'booksaving' = 'Adresář se ukládá...';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/localization/da_DK.inc
Changed
@@ -38,15 +38,18 @@ $labels'personalonly' = 'Kun personlige adresse'; $labels'globalonly' = 'Kun globale adressebøger'; $labels'findaddressbooks' = 'Find adressebøger'; -$labels'searchterms' = 'Search terms'; +$labels'searchterms' = 'Søgetermer'; $labels'listsearchresults' = 'Yderligere adressebøger'; $labels'foldersearchform' = 'Søgeformular for adressebog'; -$labels'foldersubscribe' = 'List permanently'; +$labels'foldersubscribe' = 'Vis permanent'; $labels'nraddressbooksfound' = 'Der blev fundet $nr adressebøger '; $labels'noaddressbooksfound' = 'Fandt ingen adressebøger'; $labels'showhistory' = 'Vis historik'; $labels'objectchangelog' = 'Ændringshistorik'; $labels'objectdiff' = 'Ændringer fra $rev1 til $rev2'; +$labels'revisionrestoreconfirm' = 'Er du sikker på at du vil genskabe revision $rev af denne kontakt? Det vil overskirve den nuværende kontakt med en tidligere version.'; +$labels'objectnotfound' = 'Kunne ikke læse kontakt data'; +$labels'objectchangelognotavailable' = 'Ændringshistorik er ikke tilgængelig for denne kontakt.'; $labels'objectdiffnotavailable' = 'Det er ikke muligt at sammenligne de valgte revisioner'; $labels'objectrestoresuccess' = 'Revision $rev blev genskabt'; $labels'objectrestoreerror' = 'Mislykkedes med at genskabe den gamle revision';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/localization/de_CH.inc
Changed
@@ -30,19 +30,13 @@ $labels'bookproperties' = 'Eigenschaften des Adressbuchs'; $labels'bookname' = 'Name des Buches'; $labels'parentbook' = 'Übergeordnetes Buch'; +$labels'bookshowurl' = 'CardDAV URL anzeigen'; +$labels'carddavurldescription' = 'Diese Adresse in einen <a href="http://en.wikipedia.org/wiki/CardDAV" target="_blank">CardDAV</a>-Klienten kopieren, um dasAdressbuch mit einem Computer oder mobilen Gerät zu synchronisieren.'; $labels'addressbookprio' = 'Reihenfolge der Adressbücher'; $labels'personalfirst' = 'Private(s) Adressbuch/Adressbücher zuerst'; $labels'globalfirst' = 'Globale(s) Adressbuch/Adressbücher zuerst'; $labels'personalonly' = 'Nur persönliche(s) Adressbuch/Adressbücher'; $labels'globalonly' = 'Nur globale(s) Adressbuch/Adressbücher'; -$labels'showhistory' = 'Verlauf anzeigen'; -$labels'objectchangelog' = 'Änderungsverlauf'; -$labels'objectdiff' = 'Änderungen aus $rev1 nach $rev2'; -$labels'objectdiffnotavailable' = 'Vergleich für die gewählten Versionen nicht möglich'; -$labels'objectrestoresuccess' = 'Version $rev erfolgreich wiederhergestellt'; -$labels'objectrestoreerror' = 'Fehler beim Wiederherstellen der alten Version'; -$labels'bookshowurl' = 'CardDAV URL anzeigen'; -$labels'carddavurldescription' = 'Diese Adresse in einen <a href="http://en.wikipedia.org/wiki/CardDAV" target="_blank">CardDAV</a>-Klienten kopieren, um dasAdressbuch mit einem Computer oder mobilen Gerät zu synchronisieren.'; $labels'findaddressbooks' = 'Adressbücher finden'; $labels'searchterms' = 'Suchbegriffe'; $labels'listsearchresults' = 'Zusätzliche Adressbücher'; @@ -50,9 +44,15 @@ $labels'foldersubscribe' = 'Permanent anzeigen'; $labels'nraddressbooksfound' = '$nr Adressbücher gefunden'; $labels'noaddressbooksfound' = 'Keine Adressbücher gefunden'; +$labels'showhistory' = 'Verlauf anzeigen'; +$labels'objectchangelog' = 'Änderungsverlauf'; +$labels'objectdiff' = 'Änderungen aus $rev1 nach $rev2'; $labels'revisionrestoreconfirm' = 'Wollen Sie wirklich die Version $rev dieses Kontakt wiederherstellen? Diese Aktion wird die aktuelle Kopie mit der älteren Version ersetzen.'; $labels'objectnotfound' = 'Fehler beim Laden der Addressedaten'; $labels'objectchangelognotavailable' = 'Änderungshistorie ist nicht verfügbar für diesen Kontakt'; +$labels'objectdiffnotavailable' = 'Vergleich für die gewählten Versionen nicht möglich'; +$labels'objectrestoresuccess' = 'Version $rev erfolgreich wiederhergestellt'; +$labels'objectrestoreerror' = 'Fehler beim Wiederherstellen der alten Version'; $messages'bookdeleteconfirm' = 'Soll das gewählte Adressbuch und alle Kontakte darin wirklich gelöscht werden?'; $messages'bookdeleting' = 'Adressbuch wird gelöscht...'; $messages'booksaving' = 'Adressbuch wird gespeichert...';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/localization/el.inc
Added
@@ -0,0 +1,47 @@ +<?php +/** + * Localizations for the Kolab Address Book plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ + */ +$labels'initials' = 'Αρχικά'; +$labels'profession' = 'Επάγγελμα'; +$labels'officelocation' = 'Τοποθεσία γραφείου'; +$labels'children' = 'Παιδί'; +$labels'pgppublickey' = 'Δημόσιο κλειδί PGP'; +$labels'pkcs7publickey' = 'Δημόσιο κλειδί S/MIME'; +$labels'typebusiness' = 'Εργασία'; +$labels'typebusinessfax' = 'Fax εργασίας'; +$labels'typecompany' = 'Εταιρία'; +$labels'typeprimary' = 'Πρωτεύον'; +$labels'typetelex' = 'Telex'; +$labels'typeisdn' = 'ISDN'; +$labels'typettytdd' = 'TTY/TDD'; +$labels'settings' = 'Ρυθμίσεις'; +$labels'bookcreate' = 'Δημιουργία βιβλίου διευθύνσεων'; +$labels'bookedit' = 'Επεξεργασία βιβλίου διευθύνσεων'; +$labels'bookdelete' = 'Διαγραφή βιβλίου διευθύνσεων'; +$labels'bookremove' = 'Αφαίρεση από την λίστα'; +$labels'bookproperties' = 'Ιδιότητες βιβλίου διευθύνσεων'; +$labels'bookname' = 'Όνομα βιβλίου'; +$labels'bookshowurl' = 'Εμφάνιση URL για CardDAV'; +$labels'carddavurldescription' = 'Αντιγράψτε αυτή τη διεύθυνση στον πελάτη <a href="http://en.wikipedia.org/wiki/CardDAV" target="_blank">CardDAV</a> για πλήρη συγχρονισμό του συγκεκριμένου βιβλίου με τον υπολογιστή σας ή το κινητό σας.'; +$labels'findaddressbooks' = 'Εύρεση βιβλίων διευθύνσεων'; +$labels'searchterms' = 'Όροι αναζήτησης'; +$labels'listsearchresults' = 'Επιπλέον βιβλία διευθύνσεων'; +$labels'showhistory' = 'Προβολή ιστορικού'; +$labels'objectchangelog' = 'Αλλαγή ιστορικού'; +$labels'objectnotfound' = 'Αποτυχία φόρτωσης δεδομένων επαφής'; +$messages'bookdeleting' = 'Γίνεται διαγραφή βιβλίου διευθύνσεων...'; +$messages'booksaving' = 'Γίνεται αποθήκευση βιβλίου διευθύνσεων'; +$messages'bookdeleted' = 'Επιτυχημένη διαγραφή βιβλίου διευθύνσεων.'; +$messages'bookupdated' = 'Επιτυχημένη ενημέρωση βιβλίου διευθύνσεων.'; +$messages'bookcreated' = 'Επιτυχημένη δημιουργία βιβλίου διευθύνσεων.'; +$messages'bookdeleteerror' = 'Παρουσιάστηκε σφάλμα κατά την διαγραφή του βιβλίου διευθύνσεων.'; +$messages'bookupdateerror' = 'Παρουσιάστηκε σφάλμα κατά την ενημέρωση του βιβλίου διευθύνσεων.'; +$messages'bookcreateerror' = 'Παρουσιάστηκε σφάλμα κατά την δημιουργία του βιβλίου διευθύνσεων.'; +$messages'nobooknamewarning' = 'Παρακαλούμε, εισάγετε όνομα του βιβλίου διευθύνσεων.'; +$messages'noemailnamewarning' = 'Παρακαλούμε, εισάγετε διεύθυνση ηλεκτρονικου ταχυδρομείου ή όνομα επαφής.'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/localization/es_ES.inc
Changed
@@ -7,14 +7,61 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ */ $labels'initials' = 'Iniciales'; +$labels'profession' = 'Profesión'; +$labels'officelocation' = 'Ubicación de la oficina'; +$labels'children' = 'Niños'; +$labels'pgppublickey' = 'Llave pública PGP'; +$labels'pkcs7publickey' = 'Llave pública S/MIME'; +$labels'freebusyurl' = 'URL Fee-busy'; +$labels'typebusiness' = 'Negocio'; +$labels'typebusinessfax' = 'Fax del negocio'; $labels'typecompany' = 'Compania'; +$labels'typeprimary' = 'Principal'; +$labels'typetelex' = 'Telex'; +$labels'typeradio' = 'Radio'; +$labels'typeisdn' = 'ISDN'; +$labels'typettytdd' = 'TTY/TDD'; +$labels'typecallback' = 'Devolución de llamada'; $labels'settings' = 'Servicios'; +$labels'bookcreate' = 'Crear libreta de direcciones'; +$labels'bookedit' = 'Editar libreta de direcciones'; +$labels'bookdelete' = 'Borrar libreta de direcciones'; $labels'bookremove' = 'Remove from list'; +$labels'bookproperties' = 'Propiedades de la libreta de direcciones'; +$labels'bookname' = 'Nombre de la libreta'; +$labels'parentbook' = 'Libreta superior'; +$labels'bookshowurl' = 'Mostrar URL CardDAV'; +$labels'carddavurldescription' = 'Copie esta dirección <a href="http://en.wikipedia.org/wiki/CardDAV" target="_blank"> CardDAV </a> en una aplicación de cliente para sincronizar totalmente esta libreta de direcciones específica con su ordenador o dispositivo móvil .'; +$labels'addressbookprio' = 'Selección/comportamiento de la libreta de direcciones'; +$labels'personalfirst' = 'Libreta de direcciones personal primero'; +$labels'globalfirst' = 'Libreta de direcciones global primero'; +$labels'personalonly' = 'Libreta de direcciones personal solo'; +$labels'globalonly' = 'Libreta de direcciones global solo'; +$labels'findaddressbooks' = 'Encontrar libreta de direcciones'; $labels'searchterms' = 'Search terms'; +$labels'listsearchresults' = 'Libreta de direcciones adicional'; +$labels'foldersearchform' = 'Formulario de búsqueda de la libreta de direcciones'; $labels'foldersubscribe' = 'List permanently'; +$labels'nraddressbooksfound' = '$nr libreta de direcciones encontradas'; +$labels'noaddressbooksfound' = 'No se han encontrado libreta de direcciones'; +$labels'showhistory' = 'Mostrar historial'; $labels'objectchangelog' = 'Cambiar historial'; $labels'objectdiff' = 'Cambiar de $rev1 a $rev2'; +$labels'revisionrestoreconfirm' = '¿Realmente desea restaurar la revisión $rev de este contacto? Esto reemplazará el contacto actual con la antigua versión.'; +$labels'objectnotfound' = 'No pudo cargarse los datos de contacto'; +$labels'objectchangelognotavailable' = 'El historial de cambios no está disponible para este contacto'; $labels'objectdiffnotavailable' = 'No hay comparación posible que las revisiones seleccionadas'; $labels'objectrestoresuccess' = 'Revisión $rev restaurado correctamente'; $labels'objectrestoreerror' = 'No se pudo restaurar la revisión antigua'; +$messages'bookdeleteconfirm' = '¿Está seguro de eliminar esta libreta de direcciones y todas sus contactos?'; +$messages'bookdeleting' = 'Borrando libreta de direcciones...'; +$messages'booksaving' = 'Guardando libreta de direcciones...'; +$messages'bookdeleted' = 'Se ha eliminado la libreta de direcciones con éxito.'; +$messages'bookupdated' = 'Se ha cargado la libreta de direcciones con éxito.'; +$messages'bookcreated' = 'Se ha creado la libreta de direcciones con éxito.'; +$messages'bookdeleteerror' = 'Se ha producido un error durante la eliminación de la libreta de direcciones.'; +$messages'bookupdateerror' = 'Se ha producido un error durante la actualización de la libreta de direcciones.'; +$messages'bookcreateerror' = 'Se ha producido un error durante la creación de la libreta de direcciones.'; +$messages'nobooknamewarning' = 'Introducir un nombre para la libreta de direcciones'; +$messages'noemailnamewarning' = 'Introduzca una dirección de correo electrónico o nombre de contacto'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/localization/fr_FR.inc
Changed
@@ -9,12 +9,12 @@ $labels'initials' = 'Initiales'; $labels'profession' = 'Profession'; $labels'officelocation' = 'Emplacement du bureau'; -$labels'children' = 'Enfant'; +$labels'children' = 'Enfants'; $labels'pgppublickey' = 'Clé publique PGP'; $labels'pkcs7publickey' = 'Clé publique S/MIME'; -$labels'freebusyurl' = 'URL Disponible/Occupé'; +$labels'freebusyurl' = 'URL disponible/occupé'; $labels'typebusiness' = 'Travail'; -$labels'typebusinessfax' = 'Fax Travail'; +$labels'typebusinessfax' = 'Fax travail'; $labels'typecompany' = 'Société'; $labels'typeprimary' = 'Principal'; $labels'typetelex' = 'Télex'; @@ -23,42 +23,45 @@ $labels'typettytdd' = 'TTY/TDD'; $labels'typecallback' = 'Rappel'; $labels'settings' = 'Paramètres'; -$labels'bookcreate' = 'Créer un carnet d\'adresse'; -$labels'bookedit' = 'Modifier un carnet d\'adresse'; -$labels'bookdelete' = 'Supprimer un carnet d\'adresse'; -$labels'bookremove' = 'supprimer de la liste'; -$labels'bookproperties' = 'Propriétés du carnet d\'adresse'; +$labels'bookcreate' = 'Créer un carnet d\'adresses'; +$labels'bookedit' = 'Modifier un carnet d\'adresses'; +$labels'bookdelete' = 'Supprimer un carnet d\'adresses'; +$labels'bookremove' = 'Supprimer de la liste'; +$labels'bookproperties' = 'Propriétés du carnet d\'adresses'; $labels'bookname' = 'Nom du carnet'; $labels'parentbook' = 'Carnet parent'; $labels'bookshowurl' = 'Afficher l\'URL CardDAV'; -$labels'carddavurldescription' = 'Copiez cette adresse vers une application client compatible <a href="http://fr.wikipedia.org/wiki/CardDAV" target="_blank">CardDAV</a> pour synchroniser ce carnet d\'adresse avec votre ordinateur ou votre smartphone.'; +$labels'carddavurldescription' = 'Copiez cette adresse dans une application client compatible <a href="http://fr.wikipedia.org/wiki/CardDAV" target="_blank">CardDAV</a> pour synchroniser ce carnet d\'adresses avec votre ordinateur ou votre smartphone.'; $labels'addressbookprio' = 'Sélection du(des) carnet(s) d\'adresses/comportement'; -$labels'personalfirst' = 'Carnet(s) d\'adresse personnel en premier'; -$labels'globalfirst' = 'Carnet(s) d\'adresse global(aux) en premier'; -$labels'personalonly' = 'Carnet(s) d\'adresse personnel seulement'; +$labels'personalfirst' = 'Carnet(s) d\'adresses personnel(s) en premier'; +$labels'globalfirst' = 'Carnet(s) d\'adresses global(aux) en premier'; +$labels'personalonly' = 'Carnet(s) d\'adresses personnel(s) seulement'; $labels'globalonly' = 'Carnet(s) d\'adresse global(aux) seulement'; -$labels'findaddressbooks' = 'trouver carnets d\'adresse'; +$labels'findaddressbooks' = 'Trouver carnets d\'adresses'; $labels'searchterms' = 'Critères de recherche'; $labels'listsearchresults' = 'Carnets d\'adresses supplémentaires'; -$labels'foldersearchform' = 'Critères de recherche de carnet d\'adresse'; +$labels'foldersearchform' = 'Formulaire de recherche carnet d\'adresses'; $labels'foldersubscribe' = 'Lister définitivement'; -$labels'nraddressbooksfound' = '$nr carnet d\'adresses trouvés'; -$labels'noaddressbooksfound' = 'Aucun carnet d\'adresses trouvés'; -$labels'showhistory' = 'Montrer historique'; +$labels'nraddressbooksfound' = '$nr carnets d\'adresses trouvés'; +$labels'noaddressbooksfound' = 'Aucun carnet d\'adresses trouvé'; +$labels'showhistory' = 'Montrer l\'historique'; $labels'objectchangelog' = 'Historique des modifications'; -$labels'objectdiff' = 'Modifications depuis $rev1 jusqu\'à $rev2'; +$labels'objectdiff' = 'Modifications de $rev1 à $rev2'; +$labels'revisionrestoreconfirm' = 'Souhaitez-vous restaurer la révision $rev de ce contrat ? Cela remplacera le contrat actuel par l\'ancienne version.'; +$labels'objectnotfound' = 'Échec de chargement des données de contact'; +$labels'objectchangelognotavailable' = 'L\'historique des changements n\'est pas disponible pour ce contrat'; $labels'objectdiffnotavailable' = 'La comparaison des versions sélectionnées est impossible'; $labels'objectrestoresuccess' = 'La révision $rev a été restaurée avec succès'; $labels'objectrestoreerror' = 'Échec lors de la restauration de la précédente révision'; -$messages'bookdeleteconfirm' = 'Voulez-vous vraiment supprimer le carnet d\'adresse sélectionné et tous ses contacts?'; -$messages'bookdeleting' = 'Suppression du carnet d\'adresse...'; -$messages'booksaving' = 'Enregistrement du carnet d\'adresse...'; -$messages'bookdeleted' = 'Carnet d\'adresse supprimé.'; -$messages'bookupdated' = 'Carnet d\'adresse modifié.'; -$messages'bookcreated' = 'Carnet d\'adresse créé.'; -$messages'bookdeleteerror' = 'Une erreur est survenue lors de la suppression du carnet d\'adresse.'; -$messages'bookupdateerror' = 'Une erreur est survenue lors de la modification du carnet d\'adresse.'; -$messages'bookcreateerror' = 'Une erreur est survenue lors de la création du carnet d\'adresse.'; -$messages'nobooknamewarning' = 'Merci de saisir un nom pour le carnet d\'adresse'; +$messages'bookdeleteconfirm' = 'Voulez-vous vraiment supprimer le carnet d\'adresses sélectionné et tous ses contacts ?'; +$messages'bookdeleting' = 'Suppression du carnet d\'adresses...'; +$messages'booksaving' = 'Enregistrement du carnet d\'adresses...'; +$messages'bookdeleted' = 'Carnet d\'adresses supprimé.'; +$messages'bookupdated' = 'Carnet d\'adresses modifié.'; +$messages'bookcreated' = 'Carnet d\'adresses créé.'; +$messages'bookdeleteerror' = 'Une erreur est survenue lors de la suppression du carnet d\'adresses.'; +$messages'bookupdateerror' = 'Une erreur est survenue lors de la modification du carnet d\'adresses.'; +$messages'bookcreateerror' = 'Une erreur est survenue lors de la création du carnet d\'adresses.'; +$messages'nobooknamewarning' = 'Merci de saisir un nom pour le carnet d\'adresses'; $messages'noemailnamewarning' = 'Merci de saisir une adresse de courriel ou un nom de contact.'; ?>
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/localization/lv.inc
Added
@@ -0,0 +1,19 @@ +<?php +/** + * Localizations for the Kolab Address Book plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_addressbook/ + */ +$labels'bookremove' = 'Dzēst no saraksta'; +$labels'searchterms' = 'Meklēšanas nosacījumi'; +$labels'foldersubscribe' = 'Rādīt sarakstā vienmēr'; +$labels'objectchangelog' = 'Mainīt vēsturi'; +$labels'objectdiff' = 'Izmaiņas no $rev1 uz $rev2'; +$labels'objectdiffnotavailable' = 'Izvēlētās versijas nav salīdzināmas'; +$labels'objectrestoresuccess' = 'Versija $rev veiksmīgi atjaunota'; +$labels'objectrestoreerror' = 'Kļūda atjaunojot veco versiju'; +$messages'nobooknamewarning' = 'Lūdzu, ievadiet adrešu grāmatas nosaukumu.'; +$messages'noemailnamewarning' = 'Lūdzu, ievadiet e-pasta adresi vai kontaktpersonas vārdu.'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/localization/nl_NL.inc
Changed
@@ -10,44 +10,58 @@ $labels'profession' = 'Beroep'; $labels'officelocation' = 'Kantoorlocatie'; $labels'children' = 'Kinderen'; -$labels'pgppublickey' = 'PGP publieke sleutel'; -$labels'pkcs7publickey' = 'S/MIME publieke sleutel'; -$labels'freebusyurl' = 'Vrij/Bezet URL'; +$labels'pgppublickey' = 'Openbare PGP-sleutel'; +$labels'pkcs7publickey' = 'Openbare S/MIME-sleutel'; +$labels'freebusyurl' = 'URL Beschikbaar/Bezet'; $labels'typebusiness' = 'Zakelijk'; -$labels'typebusinessfax' = 'Zakelijk (Fax)'; -$labels'typecompany' = 'Bedrijfsnaam'; +$labels'typebusinessfax' = 'Fax op werk'; +$labels'typecompany' = 'Bedrijf'; $labels'typeprimary' = 'Primair'; $labels'typetelex' = 'Telex'; $labels'typeradio' = 'Radio'; $labels'typeisdn' = 'ISDN'; $labels'typettytdd' = 'TTY/TDD'; -$labels'typecallback' = 'Callback'; +$labels'typecallback' = 'Terugbellen'; $labels'settings' = 'Instellingen'; -$labels'bookcreate' = 'Maak adresboek aan'; -$labels'bookedit' = 'Wijzig adresboek'; +$labels'bookcreate' = 'Adresboek maken'; +$labels'bookedit' = 'Adresboek bewerken'; $labels'bookdelete' = 'Adresboek verwijderen'; -$labels'bookremove' = 'Remove from list'; -$labels'bookproperties' = 'Eigenschappen voor adresboek'; -$labels'bookname' = 'Adresboek naam'; -$labels'parentbook' = 'Toevoegen aan bestaand adresboek'; -$labels'bookshowurl' = 'Toon CardDAV URL'; -$labels'carddavurldescription' = 'Kopieer dit adres naar een <a href="http://en.wikipedia.org/wiki/CardDAV" target="_blank">CardDAV</a> programma om het volledige adresboek te synchroniseren met uw computer of mobiel apparaat.'; -$labels'addressbookprio' = 'Gedrag voor adresboek(en)-selectie'; -$labels'personalfirst' = 'Eerst persoonlijke adresboek(en)'; -$labels'globalfirst' = 'Eerst globale adresboek(en)'; -$labels'personalonly' = 'Alleen persoonlijke adresboek(en)'; -$labels'globalonly' = 'Alleen globale adresboek(en)'; -$labels'searchterms' = 'Search terms'; -$labels'foldersubscribe' = 'Permanent weergeven'; -$messages'bookdeleteconfirm' = 'Weet u zeker dat u het geselecteerde adresboek inclusief inhoud wilt verwijderen?'; -$messages'bookdeleting' = 'Adresboek aan het verwijderen...'; -$messages'booksaving' = 'Adresboek aan het opslaan...'; -$messages'bookdeleted' = 'Adresboek succesvol verwijderd.'; -$messages'bookupdated' = 'Adresboek succesvol gewijzigd.'; -$messages'bookcreated' = 'Adresboek succesvol aangemaakt.'; -$messages'bookdeleteerror' = 'Er heeft zich een fout voorgedaan bij het verwijderen van het adresboek.'; -$messages'bookupdateerror' = 'Er heeft zich een fout voorgedaan bij het wijzigen van het adresboek.'; -$messages'bookcreateerror' = 'Er heeft zich een fout voorgedaan bij het aanmaken van het adresboek.'; -$messages'nobooknamewarning' = 'Voer een naam voor het adresboek in, a.u.b.'; -$messages'noemailnamewarning' = 'Voor een e-mail adres of contactnaam in, a.u.b.'; +$labels'bookremove' = 'Verwijderen uit lijst'; +$labels'bookproperties' = 'Adresboekeigenschappen'; +$labels'bookname' = 'Adresboeknaam'; +$labels'parentbook' = 'Primair adresboek'; +$labels'bookshowurl' = 'CardDAV-URL tonen'; +$labels'carddavurldescription' = 'Kopieer dit adres naar een <a href="http://en.wikipedia.org/wiki/CardDAV" target="_blank">CardDAV</a>-client om dit specifieke adresboek volledig te synchroniseren met uw computer of mobiele apparaat.'; +$labels'addressbookprio' = 'Selectie/gedrag van adresboek(en)'; +$labels'personalfirst' = 'Eerst persoonlijke adresboeken'; +$labels'globalfirst' = 'Eerst algemene adresboeken'; +$labels'personalonly' = 'Alleen persoonlijke adresboeken'; +$labels'globalonly' = 'Alleen algemene adresboeken'; +$labels'findaddressbooks' = 'Adresboeken zoeken'; +$labels'searchterms' = 'Zoektermen'; +$labels'listsearchresults' = 'Extra adresboeken'; +$labels'foldersearchform' = 'Zoekformulier voor adresboeken'; +$labels'foldersubscribe' = 'Definitief weergeven'; +$labels'nraddressbooksfound' = '$nr adresboeken gevonden'; +$labels'noaddressbooksfound' = 'Geen adresboeken gevonden'; +$labels'showhistory' = 'Geschiedenis tonen'; +$labels'objectchangelog' = 'Geschiedenis wijzigen'; +$labels'objectdiff' = 'Wijzigingen van $rev1 tot $rev2'; +$labels'revisionrestoreconfirm' = 'Weet u zeker dat u revisie $rev van deze contactpersoon wilt herstellen? Met deze actie vervangt u de huidige contactpersoon door de oude versie.'; +$labels'objectnotfound' = 'Laden van contactpersoonsgegevens is mislukt'; +$labels'objectchangelognotavailable' = 'Voor deze contactpersoon kunt u de geschiedenis niet wijzigen'; +$labels'objectdiffnotavailable' = 'Geen vergelijking mogelijk voor de geselecteerde revisies'; +$labels'objectrestoresuccess' = 'Revisie $rev met succes hersteld'; +$labels'objectrestoreerror' = 'Herstellen van oude revisie is mislukt'; +$messages'bookdeleteconfirm' = 'Weet u zeker dat u het geselecteerde adresboek en alle contactpersonen erin wilt verwijderen?'; +$messages'bookdeleting' = 'Adresboek verwijderen...'; +$messages'booksaving' = 'Adresboek opslaan...'; +$messages'bookdeleted' = 'Adresboek is met succes verwijderd.'; +$messages'bookupdated' = 'Adresboek is met succes bijgewerkt.'; +$messages'bookcreated' = 'Adresboek is met succes gemaakt.'; +$messages'bookdeleteerror' = 'Er is een fout opgetreden tijdens de verwijdering van het adresboek.'; +$messages'bookupdateerror' = 'Er is een fout opgetreden tijdens het bijwerken van het adresboek.'; +$messages'bookcreateerror' = 'Er is een fout opgetreden tijdens het maken van het adresboek.'; +$messages'nobooknamewarning' = 'Voer een naam voor het adresboek in.'; +$messages'noemailnamewarning' = 'Voor een e-mailadres of een naam van een contactpersoon in.'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_addressbook/localization/pt_BR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_addressbook/localization/pt_BR.inc
Changed
@@ -39,6 +39,7 @@ $labels'globalonly' = 'Catálogo(s) de endereço global apenas'; $labels'searchterms' = 'Search terms'; $labels'foldersubscribe' = 'Listar permanentemente'; +$labels'objectchangelog' = 'Mudar Histórico'; $messages'bookdeleteconfirm' = 'Você realmente gostaria de remover o catálogo de endereços selecionado e todos os contatos que estão dentro dele?'; $messages'bookdeleting' = 'Removendo catálogo de endereço...'; $messages'booksaving' = 'Salvando catálogo de endereço...';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_auth/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_auth/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Kolab authentication", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.0", + "version": "3.3.2", "authors": { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_auth/kolab_auth.php -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_auth/kolab_auth.php
Changed
@@ -778,6 +778,15 @@ $config = rcube::get_instance()->config; if ($config->get('log_logins')) { + // don't fill the log with complete input, which could + // have been prepared by a hacker + if (strlen($username) > 256) { + $username = substr($username, 0, 256) . '...'; + } + if (strlen($login_as) > 256) { + $login_as = substr($login_as, 0, 256) . '...'; + } + if ($login_as) { $username = sprintf('%s (as user %s)', $username, $login_as); } @@ -786,7 +795,7 @@ "Failed login for %s from %s in session %s %s", $username, rcube_utils::remote_ip(), - session_id(), + session_id() ?: 'no-session', $message ? "($message)" : '' );
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_auth/localization/el.inc
Added
@@ -0,0 +1,10 @@ +<?php +/** + * Localizations for the Kolab Auth plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_auth/ + */ +$labels'loginas' = 'Είσοδος ως'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_auth/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_auth/localization/fr_FR.inc
Changed
@@ -7,5 +7,5 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_auth/ */ $labels'loginas' = 'Se connecter en tant que'; -$labels'loginasnotallowed' = 'Pas de privilège de se connecter comme $utilisateur'; +$labels'loginasnotallowed' = 'Pas d\'autorisation de se connecter en tant que $utilisateur'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_auth/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_auth/localization/nl_NL.inc
Changed
@@ -6,5 +6,6 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_auth/ */ -$labels'loginas' = 'Log in als'; +$labels'loginas' = 'Aanmelden als'; +$labels'loginasnotallowed' = 'Geen bevoegdheden om aan te melden als $user'; ?>
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_auth/localization/pl_PL.inc
Added
@@ -0,0 +1,11 @@ +<?php +/** + * Localizations for the Kolab Auth plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_auth/ + */ +$labels'loginas' = 'Zaloguj jako'; +$labels'loginasnotallowed' = 'Brak uprawnień do zalogowania jako $user'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_delegation/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_delegation/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Kolab delegation feature", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.0", + "version": "3.3.2", "authors": { "name": "Aleksander Machniak",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_delegation/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_delegation/localization/de_CH.inc
Changed
@@ -7,6 +7,7 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ */ $labels'tabtitle' = 'Vertretung'; +$labels'delegationtitle' = 'Verwalte Vertreter'; $labels'delegates' = 'Vertreter'; $labels'delegate' = 'Vertreter'; $labels'mail' = 'E-Mail'; @@ -16,6 +17,8 @@ $labels'note' = 'Notizen'; $labels'yes' = 'Ja'; $labels'no' = 'Nein'; +$labels'read' = 'Schreibgeschützt'; +$labels'write' = 'Schreiben'; $labels'adddelegate' = 'Vertreter hinzufügen'; $labels'deletedelegate' = 'Vertreter löschen'; $labels'savingdata' = 'Speichere Daten...'; @@ -28,9 +31,6 @@ $labels'updateerror' = 'Vertreter konnte nicht aktualisiert werden.'; $labels'createsuccess' = 'Der Vertreter wurde erfolgreich hinzugefügt.'; $labels'createerror' = 'Vertreter konnte nicht hinzugefügt werden.'; -$labels'delegationtitle' = 'Verwalte Vertreter'; -$labels'read' = 'Schreibgeschützt'; -$labels'write' = 'Schreiben'; $labels'arialabeldelegatedelete' = 'Vertreter Löschen Dialog'; $labels'arialabeldelegateform' = 'Verterter Eigenschaften Maske'; ?>
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_delegation/localization/el.inc
Added
@@ -0,0 +1,18 @@ +<?php +/** + * Localizations for the Kolab Delegation plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ + */ +$labels'mail' = 'Ηλεκτρονική αλληλογραφία'; +$labels'contact' = 'Βιβλίο διευθύνσεων'; +$labels'event' = 'Ημερολόγια'; +$labels'task' = 'Εργασίες'; +$labels'note' = 'Σημειώσεις'; +$labels'yes' = 'Ναι'; +$labels'no' = 'Όχι'; +$labels'write' = 'Εγγραφή'; +$labels'savingdata' = 'Αποθήκευση δεδομένων...'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_delegation/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_delegation/localization/en_US.inc
Changed
@@ -35,7 +35,6 @@ $labels'updateerror' = 'Could not update delegate.'; $labels'createsuccess' = 'The delegate was successfully added.'; $labels'createerror' = 'Could not add delegate.'; -$labels'delegationexisterror' = 'Specified user already is your delegate.'; $labels'arialabeldelegatedelete' = 'Delegate deletion dialog'; $labels'arialabeldelegateform' = 'Delegate properties form';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_delegation/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_delegation/localization/es_ES.inc
Changed
@@ -6,7 +6,10 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ */ +$labels'tabtitle' = 'Delegación'; +$labels'delegationtitle' = 'Gestionar delegados'; $labels'delegates' = 'Delegados'; +$labels'delegate' = 'Delegado'; $labels'mail' = 'Correo electrónico'; $labels'contact' = 'Libreta de direcciones'; $labels'event' = 'Calendarios'; @@ -15,5 +18,19 @@ $labels'yes' = 'Sí'; $labels'no' = 'No'; $labels'read' = 'Solo-lectura'; +$labels'write' = 'Escribir'; +$labels'adddelegate' = 'Añadir delegado'; +$labels'deletedelegate' = 'Borrar delegado'; $labels'savingdata' = 'Guardando datos...'; +$labels'delegatedeleteconfirm' = '¿Esta seguro de eliminar este delegado?'; +$labels'delegateremoveacl' = 'retirar los derechos de acceso de todas las carpetas asignadas a este usuario'; +$labels'deleteconfirm' = 'Confirmación'; +$labels'deletesuccess' = 'El delegado se ha eliminado con éxito'; +$labels'deleteerror' = 'No es posible eliminar al delegado.'; +$labels'updatesuccess' = 'El delegado se ha actualizado con éxito.'; +$labels'updateerror' = 'No es posible actualizar al delegado.'; +$labels'createsuccess' = 'El delegado se ha añadido con éxito.'; +$labels'createerror' = 'No es posible añadir al delegado.'; +$labels'arialabeldelegatedelete' = 'Diálogo de eliminación del delegado'; +$labels'arialabeldelegateform' = 'Formulario de propiedades del delegado'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_delegation/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_delegation/localization/fr_FR.inc
Changed
@@ -7,30 +7,30 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ */ $labels'tabtitle' = 'Délégation'; -$labels'delegationtitle' = 'Gérer mainteneurs'; +$labels'delegationtitle' = 'Gérer les délégations'; $labels'delegates' = 'Délégation'; $labels'delegate' = 'Déléguer'; $labels'mail' = 'Adresse de messagerie'; -$labels'contact' = 'Carnet d\'adresse'; +$labels'contact' = 'Carnet d\'adresses'; $labels'event' = 'Calendriers'; $labels'task' = 'Tâches'; $labels'note' = 'Notes'; $labels'yes' = 'Oui'; $labels'no' = 'Non'; -$labels'read' = 'Lecture Seule'; +$labels'read' = 'Lecture seule'; $labels'write' = 'Écriture'; $labels'adddelegate' = 'Ajouter une délégation'; $labels'deletedelegate' = 'Supprimer une délégation'; $labels'savingdata' = 'Enregistrer...'; -$labels'delegatedeleteconfirm' = 'Voulez-vous vraiment supprimer cette délégation?'; +$labels'delegatedeleteconfirm' = 'Voulez-vous vraiment supprimer cette délégation ?'; $labels'delegateremoveacl' = 'Supprimer les droits d\'accès aux dossiers affectés à cet utilisateur'; $labels'deleteconfirm' = 'Confirmation'; -$labels'deletesuccess' = 'La délégation a été supprimée'; -$labels'deleteerror' = 'La délégation n\'a pas pu être supprimée'; -$labels'updatesuccess' = 'La délégation a été mise à jour'; -$labels'updateerror' = 'La délégation n\'a pas pu être mise à jour'; -$labels'createsuccess' = 'La délégation a été ajoutée'; -$labels'createerror' = 'La délégation n\'a pas pu être ajoutée'; -$labels'arialabeldelegatedelete' = 'Dialog de suppression du mainteneur'; -$labels'arialabeldelegateform' = 'Formulaire de propriétés du mainteneur'; +$labels'deletesuccess' = 'La délégation a été supprimée.'; +$labels'deleteerror' = 'La délégation n\'a pas pu être supprimée.'; +$labels'updatesuccess' = 'La délégation a été mise à jour.'; +$labels'updateerror' = 'La délégation n\'a pas pu être mise à jour.'; +$labels'createsuccess' = 'La délégation a été ajoutée.'; +$labels'createerror' = 'La délégation n\'a pas pu être ajoutée.'; +$labels'arialabeldelegatedelete' = 'Fenêtre de suppression de la délégation'; +$labels'arialabeldelegateform' = 'Formulaire de propriétés de la délégation'; ?>
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_delegation/localization/lv.inc
Added
@@ -0,0 +1,14 @@ +<?php +/** + * Localizations for the Kolab Delegation plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ + */ +$labels'delegate' = 'Deleģēt'; +$labels'mail' = 'E-pasts'; +$labels'event' = 'Kalendāri'; +$labels'savingdata' = 'Saglabājam...'; +$labels'deleteconfirm' = 'Apstiprinājums'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_delegation/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_delegation/localization/nl_NL.inc
Changed
@@ -7,12 +7,12 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ */ $labels'tabtitle' = 'Delegatie'; -$labels'delegationtitle' = 'Manage delegates'; +$labels'delegationtitle' = 'Gedelegeerden beheren'; $labels'delegates' = 'Gedelegeerden'; $labels'delegate' = 'Gedelegeerde'; -$labels'mail' = 'Email'; +$labels'mail' = 'E-mail'; $labels'contact' = 'Adresboeken'; -$labels'event' = 'Kalenders'; +$labels'event' = 'Agenda\'s'; $labels'task' = 'Taken'; $labels'note' = 'Notities'; $labels'yes' = 'Ja'; @@ -21,16 +21,16 @@ $labels'write' = 'Schrijven'; $labels'adddelegate' = 'Gedelegeerde toevoegen'; $labels'deletedelegate' = 'Gedelegeerde verwijderen'; -$labels'savingdata' = 'Data wordt opgeslagen...'; -$labels'delegatedeleteconfirm' = 'Wilt u deze gedelegeerde echt verwijderen?'; -$labels'delegateremoveacl' = 'verwijder toegangsrechten op mappen toegewezen aan deze gebruiker'; +$labels'savingdata' = 'Gegevens opslaan...'; +$labels'delegatedeleteconfirm' = 'Weet u zeker dat u deze gedelegeerde wilt verwijderen?'; +$labels'delegateremoveacl' = 'toegangsrechten voor mappen toegewezen aan deze gebruiker verwijderen'; $labels'deleteconfirm' = 'Bevestiging'; -$labels'deletesuccess' = 'De gedelegeerde is succesvol verwijderd.'; +$labels'deletesuccess' = 'De gedelegeerde is met succes verwijderd.'; $labels'deleteerror' = 'De gedelegeerde kon niet worden verwijderd.'; -$labels'updatesuccess' = 'De gedelegeerde is succesvol gewijzigd.'; -$labels'updateerror' = 'De gedelegeerde kon niet worden gewijzigd.'; -$labels'createsuccess' = 'De gedelegeerde is succesvol toegevoegd.'; +$labels'updatesuccess' = 'De gedelegeerde is met succes bijgewerkt.'; +$labels'updateerror' = 'De gedelegeerde kon niet worden bijgewerkt.'; +$labels'createsuccess' = 'De gedelegeerde is met succes toegevoegd.'; $labels'createerror' = 'De gedelegeerde kon niet worden toegevoegd.'; -$labels'arialabeldelegatedelete' = 'Delegate deletion dialog'; -$labels'arialabeldelegateform' = 'Delegate properties form'; +$labels'arialabeldelegatedelete' = 'Dialoogvenster voor verwijdering van gedelegeerde'; +$labels'arialabeldelegateform' = 'Formulier voor eigenschappen van gedelegeerde'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_delegation/localization/pt_PT.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_delegation/localization/pt_PT.inc
Changed
@@ -6,6 +6,10 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_delegation/ */ +$labels'mail' = 'Email'; +$labels'contact' = 'Livro de Contactos'; $labels'event' = 'Calendários'; +$labels'task' = 'Tarefas'; +$labels'note' = 'Notas'; $labels'savingdata' = 'Salvando dados...'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "User interface for Kolab File Manager (Chwala)", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.1", + "version": "3.3.2", "authors": { "name": "Aleksander Machniak",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/kolab_files.js -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/kolab_files.js
Changed
@@ -153,7 +153,7 @@ sort_col: 'name', sort_reverse: false, search_threads: rcmail.env.search_threads, - resources_dir: rcmail.assets_path('program/resources'), + resources_dir: rcmail.env.files_url.replace(/\/api\/?$/, '/resources'), caps: rcmail.env.files_caps, supported_mimetypes: rcmail.env.file_mimetypes }); @@ -1992,10 +1992,15 @@ if (elem.data('no-collections') == true) collections = ; - elem.html(''); - this.env.folders = this.folder_list_parse(response.result && response.result.list ? response.result.list : response.result); + rcmail.enable_command('files-create', true); + + if (!elem.length) + return; + + elem.html(''); + $.each(this.env.folders, function(i, f) { var row; if (row = file_api.folder_list_row(i, f)) { @@ -2078,14 +2083,11 @@ else if (first) rcmail.folder_list.select(first); - rcmail.enable_command('files-create', true); - // add tree icons // this.folder_list_tree(this.env.folders); // handle authentication errors on external sources - if (elem.length) - this.folder_list_auth_errors(response.result); + this.folder_list_auth_errors(response.result); }; this.folder_select = function(folder)
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/kolab_files.php -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/kolab_files.php
Changed
@@ -57,6 +57,8 @@ // Load UI from startup hook $this->add_hook('startup', array($this, 'startup')); + + $this->add_hook('preferences_save', array($this, 'preferences_save')); } /** @@ -146,4 +148,25 @@ new kolab_files_autocomplete($this); } + + /** + * Update chwala config on user preferences change + */ + public function preferences_save($props) + { + if ($props'section' == 'general') { + $dont_override = (array) $this->rc->config->get('dont_override'); + $prefs = array(); + + foreach (array('timezone', 'date_long') as $idx) { + if (isset($props'prefs'$idx) && !in_array($idx, $dont_override)) { + $prefs$idx = $props'prefs'$idx; + } + } + + if (!empty($prefs) && ($engine = $this->engine())) { + $engine->configure(false, $prefs); + } + } + } }
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/lib/kolab_files_engine.php -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/lib/kolab_files_engine.php
Changed
@@ -40,8 +40,8 @@ */ public function __construct($plugin, $client_url, $server_url = null) { - $this->url = rcube_utils::resolve_url($client_url); - $this->url_srv = $server_url ? rcube_utils::resolve_url($server_url) : $this->url; + $this->url = rtrim(rcube_utils::resolve_url($client_url), '/ '); + $this->url_srv = $server_url ? rtrim(rcube_utils::resolve_url($server_url), '/ ') : $this->url; $this->plugin = $plugin; $this->rc = $plugin->rc; $this->timeout = $this->rc->config->get('session_lifetime') * 60; @@ -774,7 +774,7 @@ // editor requires additional arguments via POST if (!empty($this->file_data'viewer''post')) { - $attrib'src' = $this->rc->output->asset_url('program/resources/blank.gif'); + $attrib'src' = 'program/resources/blank.gif'; $form_content = new html_hiddenfield(); $form_attrib = array( @@ -841,7 +841,7 @@ /** * Get API token for current user session, authenticate if needed */ - public function get_api_token() + public function get_api_token($configure = true) { $token = $_SESSION'kolab_files_token'; $time = $_SESSION'kolab_files_time'; @@ -891,6 +891,11 @@ else { throw new Exception(sprintf("Authenticate error (Status: %d)", $status)); } + + // Configure session + if ($configure && $token) { + $this->configure($token); + } } catch (Exception $e) { rcube::raise_error($e, true, false); @@ -951,6 +956,36 @@ } /** + * Configure chwala session + */ + public function configure($token = null, $prefs = array()) + { + if (!$token) { + $token = $this->get_api_token(false); + } + + try { + // Configure session + $query = array( + 'method' => 'configure', + 'timezone' => $prefs'timezone' ?: $this->rc->config->get('timezone'), + 'date_format' => $prefs'date_long' ?: $this->rc->config->get('date_long', 'Y-m-d H:i'), + ); + + $request = $this->get_request($query, $token); + $response = $request->send(); + $status = $response->getStatus(); + + if ($status != 200) { + throw new Exception(sprintf("Failed to configure chwala session (Status: %d)", $status)); + } + } + catch (Exception $e) { + rcube::raise_error($e, true, false); + } + } + + /** * Handler for main files interface (Files task) */ protected function action_index()
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/cs_CZ.inc
Changed
@@ -41,9 +41,9 @@ $labels'printfile' = 'Tisk souboru'; $labels'renamefile' = 'Přejmenovat soubor'; $labels'createfile' = 'Vytvořit soubor'; -$labels'createandedit' = 'Vytvořit a Změnit'; +$labels'createandedit' = 'Vytvořit a upravit'; $labels'copyfile' = 'Kopírovat soubor'; -$labels'copyandedit' = 'Kopírovat a Změnit'; +$labels'copyandedit' = 'Kopírovat a upravit'; $labels'documenttitle' = 'Název:'; $labels'close' = 'Zavřít'; $labels'collection_audio' = 'Zvuk'; @@ -68,7 +68,7 @@ $labels'saveallerror' = 'Ukládání $n souborů selhalo.'; $labels'attacherror' = 'Nepodařilo se připojit soubor(y) ze serveru'; $labels'fileupdating' = 'Aktualizuje se soubor...'; -$labels'filecreating' = 'Vytvářím soubor...'; +$labels'filecreating' = 'Vytváří se soubor...'; $labels'filemoving' = 'Přesouvají se soubor(y)...'; $labels'filecopying' = 'Kopíruje se soubor(y)...'; $labels'filedeleting' = 'Maže se soubor(y)...'; @@ -86,7 +86,7 @@ $labels'fileoverwriteall' = 'Přepsat vše'; $labels'filemoveconfirm' = 'Tato akce přepíše cílový soubor: <b>$file</b>.'; $labels'editfiledialog' = 'Potvrdit změnu'; -$labels'editfilesessions' = 'Probíhají sezení na vybraném souboru. Prosím, vyberte akci, kterou chcete vzít.'; +$labels'editfilesessions' = 'Probíhají sezení na vybraném souboru. Prosím, vyberte činnost, kterou chcete vzít.'; $labels'newsession' = 'Vytvořit nové sezení'; $labels'newsessionro' = 'Vtvořit nové sezení (zkopírovat soubor do umístění pro čtení i zápis)'; $labels'ownedsession' = 'Pokračujte ve stávajícím sezení'; @@ -99,8 +99,8 @@ $labels'sessionterminatedtitle' = 'Sezení ukončeno'; $labels'sessionterminated' = 'Sezení bylo ukončeno. Okno se zavře.'; $labels'terminate' = 'Ukončit'; -$labels'sessionterminating' = 'Ukončování sezení...'; -$labels'unsavedchanges' = 'Jsou zde neuložené změny v dokumentu, které budou ztraceny. Chcete přesto ukončit sezení?'; +$labels'sessionterminating' = 'Ukončuje se sezení...'; +$labels'unsavedchanges' = 'V dokumentu jsou neuložené změny, které budou ztraceny. Chcete přesto sezení ukončit?'; $labels'manageeditors' = 'Pozvat k dokumentu'; $labels'participant' = 'Účastník'; $labels'status' = 'Stav'; @@ -112,16 +112,32 @@ $labels'statusinvited' = 'Pozván'; $labels'statusaccepted' = 'Přijato'; $labels'statusdeclined' = 'Odmítnuto'; +$labels'statusrequested' = 'Požadováno'; +$labels'documentinviting' = 'Zve se účastník(ci)...'; +$labels'documentcancelling' = 'Odebírá se účastník(ci)...'; $labels'removeparticipant' = 'Odstranit'; -$labels'more' = 'Více.'; -$labels'accept' = 'Potvrdit'; -$labels'join' = 'Připojit k sezení'; +$labels'invitednotice' = 'Byl(a) jste pozván(a) k upravovacímu sezení $owner.'; +$labels'acceptedownernotice' = '$owner přijal vaši žádost o připojení se k upravovacímu sezení.'; +$labels'declinedownernotice' = '$owner odmítl vaši žádost o připojení se k upravovacímu sezení.'; +$labels'acceptednotice' = '$user přijal vaši pozvánku k upravovacímu sezení.'; +$labels'declinednotice' = '$user odmítl vaši pozvánku k upravovacímu sezení.'; +$labels'requestednotice' = '$user požádal o připojení se k upravovacímu sezení.'; +$labels'sessiondialog' = 'Upravovací sezení dokumentu'; +$labels'sessiondialogcontent' = 'Probíhá upravovací sezení $file vytvořeného $owner.'; +$labels'more' = 'Více'; +$labels'accept' = 'Přijmout'; +$labels'join' = 'Připojit se k sezení'; $labels'decline' = 'Odmítnout'; $labels'owner' = 'Vlastník'; $labels'when' = 'Kdy'; $labels'file' = 'Soubor'; $labels'comment' = 'Poznámka'; $labels'open' = 'Otevřít'; +$labels'request' = 'Požádat o pozvánku'; +$labels'invitationtitle' = 'Pozvání k $file'; +$labels'ivitationaccepting' = 'Přijímá se pozvání...'; +$labels'ivitationdeclining' = 'Odmítá se pozvání...'; +$labels'ivitationrequesting' = 'Žádá se o pozvání...'; $labels'storepasswords' = 'Zapamatovat heslo'; $labels'storepasswordsdesc' = 'Uložená hesla budou šifrována. Zapněte tuto volbu pokud nechcete být dotazováni na heslo při každém přihlášení nebo pokud toto úložiště má být dostupné přes WebDAV.'; $labels'arialabelsearchform' = 'Hledání souborů'; @@ -129,6 +145,7 @@ $labels'arialabellistoptions' = 'Volby seznamu souborů'; $labels'arialabelfolderoptions' = 'Činnosti složky'; $labels'arialabelfileeditform' = 'Úprava souboru'; +$labels'arialabelfilecreateform' = 'Formulář na vytvoření souboru'; $labels'arialabelfilelist' = 'Seznam souborů'; $labels'arialabelfoldercreateform' = 'Vytvoření složky'; $labels'arialabelfoldereditform' = 'Úprava složky'; @@ -141,6 +158,6 @@ $labels'arialabelfileprops' = 'Vlastnosti souboru'; $labels'arialabelfilecontent' = 'Obsah souboru'; $labels'arialabelfileeditdialog' = 'Dialog úpravy souborů'; -$labels'type.plain' = 'Prostý Textový Dokument'; -$labels'type.vndoasisopendocumenttext' = 'Textový Dokument (ODF)'; -$labels'type.html' = 'HTML Dokument'; +$labels'type.plain' = 'Prostý textový dokument'; +$labels'type.vndoasisopendocumenttext' = 'Textový dokument (ODF)'; +$labels'type.html' = 'Dokument HTML';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/da_DK.inc
Changed
@@ -39,11 +39,18 @@ $labels'save' = 'Gem'; $labels'savefile' = 'Gem fil'; $labels'printfile' = 'Udskriv fil'; +$labels'renamefile' = 'Omdøb fil'; +$labels'createfile' = 'Opret fil'; +$labels'createandedit' = 'Opret og rediger'; +$labels'copyfile' = 'Kopiér fil'; +$labels'copyandedit' = 'Kopiér og rediger'; +$labels'documenttitle' = 'Titel:'; $labels'close' = 'Luk'; $labels'collection_audio' = 'Lyd'; $labels'collection_video' = 'Video'; $labels'collection_image' = 'Billeder'; $labels'collection_document' = 'Dokumenter'; +$labels'sessions' = 'Sessioner'; $labels'uploading' = 'Overfører fil(er)..'; $labels'attaching' = 'Vedhæfter fil(er)..'; $labels'authenticating' = 'Godkender ...'; @@ -61,6 +68,7 @@ $labels'saveallerror' = 'Lagringen af $n fil(er) mislykkedes.'; $labels'attacherror' = 'Mislykkedes med at vedhæfte fil(er) fra skyen'; $labels'fileupdating' = 'Opdaterer fil...'; +$labels'filecreating' = 'Opretter fil...'; $labels'filemoving' = 'Flytter fil(er)...'; $labels'filecopying' = 'Kopierer fil(er)...'; $labels'filedeleting' = 'Sletter fil(er)...'; @@ -76,18 +84,36 @@ $labels'fileoverwrite' = 'Overskriv'; $labels'fileoverwriteall' = 'Overskriv alle'; $labels'filemoveconfirm' = 'Denne handling vil overskrive destinationsfilen: <b>$file</b>.'; +$labels'newsession' = 'Opret ny session'; +$labels'editfilerotitle' = 'Skrivebeskyttet fil'; $labels'select' = 'Vælg'; $labels'participant' = 'Deltager'; $labels'status' = 'Status'; $labels'addparticipant' = 'Tilføj deltager'; +$labels'delparticipant' = 'Fjern deltager'; $labels'invitationtextlabel' = 'Invitation/notification comment'; $labels'statusorganizer' = 'Organisator'; +$labels'statusinvited' = 'Inviteret'; +$labels'statusaccepted' = 'Accepteret'; +$labels'statusdeclined' = 'Afvist'; +$labels'statusrequested' = 'Anmodet'; +$labels'documentinviting' = 'Inviter deltager(ere)...'; +$labels'documentcancelling' = 'Fjerner deltager(ere)...'; $labels'removeparticipant' = 'Fjern'; +$labels'more' = 'Mere'; $labels'accept' = 'Acceptér'; +$labels'join' = 'Deltag i sessionen'; $labels'decline' = 'Afvis'; $labels'owner' = 'Ejer'; +$labels'when' = 'Hvornår'; +$labels'file' = 'Fil'; $labels'comment' = 'Comment'; $labels'open' = 'Åbn'; +$labels'request' = 'Anmod om invitation'; +$labels'invitationtitle' = 'Invitation for $file'; +$labels'ivitationaccepting' = 'Accepter invitation...'; +$labels'ivitationdeclining' = 'Afvis invitation...'; +$labels'ivitationrequesting' = 'Ammod invitation'; $labels'storepasswords' = 'husk adgangskode'; $labels'storepasswordsdesc' = 'Gemte adgangskoder vil blive krypteret. Slå dette til, hvis du ikke ønsker at blive spurgt om adgangskoden ved hvert login, eller hvis du ønsker at denne lagerplads skal være tilgængelig gennem WebDAV.'; $labels'arialabelsearchform' = 'Formular for filsøgning'; @@ -95,6 +121,8 @@ $labels'arialabellistoptions' = 'Tilvalg for visning af filer'; $labels'arialabelfolderoptions' = 'Mappehandlinger'; $labels'arialabelfileeditform' = 'Formular for filredigering'; +$labels'arialabelfilecreateform' = 'Fil oprettelsesformular'; +$labels'arialabelfilelist' = 'List filer'; $labels'arialabelfoldercreateform' = 'Formular for mappeoprettelse'; $labels'arialabelfoldereditform' = 'Formular for mapperedigering'; $labels'arialabelfoldermountform' = 'Formular for ekstern lagerplads'; @@ -105,3 +133,5 @@ $labels'arialabelfilesavedialog' = 'Vindue for lagring af fil(er)'; $labels'arialabelfileprops' = 'Filegenskaber'; $labels'arialabelfilecontent' = 'Filindhold'; +$labels'type.vndoasisopendocumenttext' = 'Text Dokument (ODF)'; +$labels'type.html' = 'HTML Dokument';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/de_CH.inc
Changed
@@ -7,44 +7,13 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ */ $labels'files' = 'Dateien'; -$labels'create' = 'Erstellen'; -$labels'save' = 'Speichern'; -$labels'cancel' = 'Abbrechen'; -$labels'folderinside' = 'Erstellen in'; -$labels'name' = 'Name'; -$labels'mtime' = 'Geändert'; -$labels'type' = 'Typ'; -$labels'get' = 'Herunterladen'; -$labels'rename' = 'Umbenennen'; -$labels'edit' = 'Bearbeiten'; -$labels'save' = 'Speichern'; -$labels'close' = 'Schließen'; -$labels'collection_audio' = 'Audio'; -$labels'collection_video' = 'Video'; -$labels'collection_image' = 'Bilder'; -$labels'collection_document' = 'Dokumente'; -$labels'listpermanent' = 'Permanent anzeigen'; -$labels'fileskip' = 'Überspringen'; -$labels'fileskipall' = 'Alle überspringen'; -$labels'fileoverwrite' = 'Überschreiben'; -$labels'fileoverwriteall' = 'Alle überschreiben'; -$labels'filemoveconfirm' = 'Diese Aktion wird die Zieldatei <b>$file</b> überschreiben.'; -$labels'select' = 'Auswählen'; -$labels'participant' = 'Teilnehmer'; -$labels'status' = 'Status'; -$labels'addparticipant' = 'Hinzufügen'; -$labels'invitationtextlabel' = 'Kommentar zur Einladungs/Benachrichtigung'; -$labels'statusorganizer' = 'Organisator'; -$labels'removeparticipant' = 'Löschen'; -$labels'accept' = 'Akzeptieren'; -$labels'decline' = 'Ablehnen'; -$labels'owner' = 'Eigentümer'; -$labels'comment' = 'Kommentar'; -$labels'open' = 'Öffnen'; $labels'filepreview' = 'Datei Vorschau'; $labels'saveall' = 'Alles in die Cloud speichern...'; $labels'saveto' = 'In die Cloud speichern...'; $labels'saveas' = 'Speichern als:'; +$labels'create' = 'Erstellen'; +$labels'save' = 'Speichern'; +$labels'cancel' = 'Abbrechen'; $labels'fromcloud' = 'Aus der Cloud...'; $labels'selectfiles' = 'Datei(en) zum Anhängen auswählen...'; $labels'attachsel' = 'Ausgewählte anhängen'; @@ -52,14 +21,22 @@ $labels'folderedit' = 'Verzeichnis ändern'; $labels'foldermount' = 'Speicher hinzufügen'; $labels'folderdelete' = 'Ordner löschen'; +$labels'folderinside' = 'Erstellen in'; $labels'foldername' = 'Ordnername'; +$labels'name' = 'Name'; +$labels'mtime' = 'Geändert'; +$labels'type' = 'Typ'; $labels'upload' = 'Hochladen'; $labels'uploadfile' = 'Datei(en) hochladen'; +$labels'get' = 'Herunterladen'; $labels'getfile' = 'Datei herunterladen'; $labels'view' = 'Ansehen'; $labels'viewfile' = 'Datei ansehen'; +$labels'rename' = 'Umbenennen'; $labels'deletefile' = 'Datei(en) löschen'; +$labels'edit' = 'Bearbeiten'; $labels'editfile' = 'Datei bearbeiten'; +$labels'save' = 'Speichern'; $labels'savefile' = 'Datei speichern'; $labels'printfile' = 'Datei drucken'; $labels'renamefile' = 'Datei umbenennen'; @@ -68,6 +45,11 @@ $labels'copyfile' = 'Datei kopieren'; $labels'copyandedit' = 'Kopieren und Bearbeiten'; $labels'documenttitle' = 'Titel:'; +$labels'close' = 'Schließen'; +$labels'collection_audio' = 'Audio'; +$labels'collection_video' = 'Video'; +$labels'collection_image' = 'Bilder'; +$labels'collection_document' = 'Dokumente'; $labels'sessions' = 'Sitzungen'; $labels'uploading' = 'Lade Datei(en) hoch...'; $labels'attaching' = 'Hänge Datei(en) an...'; @@ -95,24 +77,42 @@ $labels'filemovenotice' = 'Datei(en) erfolgreich verschoben.'; $labels'filecopynotice' = 'Datei(en) erfolgreich kopiert.'; $labels'uploadsizeerror' = 'Maimale Dateigröße ($size) überschritten!'; +$labels'listpermanent' = 'Permanent anzeigen'; $labels'additionalfolders' = 'Zusätzliche Ordner'; $labels'allfolders' = 'suche in allen Ordnern'; +$labels'fileskip' = 'Überspringen'; +$labels'fileskipall' = 'Alle überspringen'; +$labels'fileoverwrite' = 'Überschreiben'; +$labels'fileoverwriteall' = 'Alle überschreiben'; +$labels'filemoveconfirm' = 'Diese Aktion wird die Zieldatei <b>$file</b> überschreiben.'; $labels'editfiledialog' = 'Bearbeitungsaktion bestätigen'; $labels'newsession' = 'Neue Sitzung erstellen'; $labels'editfilerotitle' = 'Schreibgeschützte Datei'; +$labels'select' = 'Auswählen'; $labels'terminatesession' = 'Sitzung beenden'; $labels'sessionterminatedtitle' = 'Sitzung beendet'; $labels'terminate' = 'Beenden'; $labels'sessionterminating' = 'Sitzung wird beendet...'; +$labels'participant' = 'Teilnehmer'; +$labels'status' = 'Status'; +$labels'addparticipant' = 'Hinzufügen'; $labels'delparticipant' = 'Teilnehmer entfernen'; +$labels'invitationtextlabel' = 'Kommentar zur Einladungs/Benachrichtigung'; +$labels'statusorganizer' = 'Organisator'; $labels'statusinvited' = 'Eingeladen'; $labels'statusaccepted' = 'Akzeptiert'; $labels'statusdeclined' = 'Abgelehnt'; $labels'documentinviting' = 'Teilnehmer wird/werden eingeladen...'; $labels'documentcancelling' = 'Teilnehmer wird/werden entfernt...'; +$labels'removeparticipant' = 'Löschen'; $labels'sessiondialog' = 'Dokumentbearbeitungssitzung'; +$labels'accept' = 'Akzeptieren'; +$labels'decline' = 'Ablehnen'; +$labels'owner' = 'Eigentümer'; $labels'when' = 'Wenn'; $labels'file' = 'Datei'; +$labels'comment' = 'Kommentar'; +$labels'open' = 'Öffnen'; $labels'invitationtitle' = 'Einladung für $file'; $labels'storepasswords' = 'Passwort merken'; $labels'storepasswordsdesc' = 'Gespeicherte Passwörter werden verschlüsselt. Aktivieren Sie dies, wenn Sie nicht bei jedem Login nach dem Passwort gefragt werden möchten oder wenn dieser Speicher via WebDAV verfügbar sein soll.';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/de_DE.inc
Changed
@@ -7,18 +7,18 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ */ $labels'files' = 'Dateien'; -$labels'filepreview' = 'Datei Vorschau'; -$labels'saveall' = 'Alles in die Cloud speichern...'; -$labels'saveto' = 'In die Cloud speichern...'; +$labels'filepreview' = 'Dateivorschau'; +$labels'saveall' = 'Alles in der Cloud speichern …'; +$labels'saveto' = 'In der Cloud speichern …'; $labels'saveas' = 'Speichern als:'; $labels'create' = 'Erstellen'; $labels'save' = 'Speichern'; $labels'cancel' = 'Abbrechen'; -$labels'fromcloud' = 'Aus der Cloud...'; -$labels'selectfiles' = 'Datei(en) zum Anhängen auswählen...'; +$labels'fromcloud' = 'Aus der Cloud …'; +$labels'selectfiles' = 'Datei(en) zum Anhängen auswählen …'; $labels'attachsel' = 'Ausgewählte anhängen'; $labels'foldercreate' = 'Ordner erstellen'; -$labels'folderedit' = 'Verzeichnis ändern'; +$labels'folderedit' = 'Ordner ändern'; $labels'foldermount' = 'Speicher hinzufügen'; $labels'folderdelete' = 'Ordner löschen'; $labels'folderinside' = 'Erstellen in'; @@ -51,35 +51,35 @@ $labels'collection_image' = 'Bilder'; $labels'collection_document' = 'Dokumente'; $labels'sessions' = 'Sitzungen'; -$labels'uploading' = 'Lade Datei(en) hoch...'; -$labels'attaching' = 'Hänge Datei(en) an...'; -$labels'authenticating' = 'Authentifiziere...'; -$labels'foldercreating' = 'Erstelle Ordner...'; -$labels'folderupdating' = 'Aktualisiere Verzeichnis...'; -$labels'foldermounting' = 'Hinzufügen externen Speichers...'; -$labels'folderdeleting' = 'Lösche Ordner...'; +$labels'uploading' = 'Datei(en) wird/werden hochgeladen …'; +$labels'attaching' = 'Datei(en) wird/werden angehängt …'; +$labels'authenticating' = 'Legitimierung wird durchgeführt …'; +$labels'foldercreating' = 'Ordner wird erstellt …'; +$labels'folderupdating' = 'Ordner wird aktualisiert …'; +$labels'foldermounting' = 'Externer Speicher wird hinzugefügt …'; +$labels'folderdeleting' = 'Ordner werden gelöscht …'; $labels'folderdeleteconfirm' = 'Sind Sie sicher, dass Sie den gewählten Ordner löschen möchten?'; $labels'folderdeletenotice' = 'Ordner erfolgreich gelöscht.'; -$labels'folderupdatenotice' = 'Verzeichnis erfolgreich aktualisiert.'; +$labels'folderupdatenotice' = 'Ordner erfolgreich aktualisiert.'; $labels'foldercreatenotice' = 'Ordner erfolgreich erstellt.'; $labels'foldermountnotice' = 'Speicher erfolgreich hinzugefügt.'; -$labels'folderauthtitle' = 'Einloggen zu $title'; +$labels'folderauthtitle' = 'Anmelden in $title'; $labels'saveallnotice' = '$n Datei(en) erfolgreich gespeichert.'; $labels'saveallerror' = 'Speichern von $n Datei(en) fehlgeschlagen.'; $labels'attacherror' = 'Anhängen von Datei(en) aus der Cloud fehlgeschlagen.'; -$labels'fileupdating' = 'Aktualisiere Datei...'; -$labels'filecreating' = 'Datei wird erstellt...'; -$labels'filemoving' = 'Verschiebe Datei(en)...'; -$labels'filecopying' = 'Kopiere Datei(en)...'; -$labels'filedeleting' = 'Lösche Datei(en)...'; +$labels'fileupdating' = 'Datei wird aktualisiert …'; +$labels'filecreating' = 'Datei wird erstellt …'; +$labels'filemoving' = 'Datei(en) wird/werden verschoben …'; +$labels'filecopying' = 'Datei(en) wird/werden kopiert …'; +$labels'filedeleting' = 'Datei(en) wird/werden gelöscht …'; $labels'filedeleteconfirm' = 'Sind Sie sicher, dass Sie die gewählten Dateien löschen möchten?'; $labels'filedeletenotice' = 'Datei(en) erfolgreich gelöscht.'; $labels'filemovenotice' = 'Datei(en) erfolgreich verschoben.'; $labels'filecopynotice' = 'Datei(en) erfolgreich kopiert.'; -$labels'uploadsizeerror' = 'Maimale Dateigröße ($size) überschritten!'; -$labels'listpermanent' = 'Permanent anzeigen'; +$labels'uploadsizeerror' = 'Maximale Dateigröße ($size) überschritten!'; +$labels'listpermanent' = 'Dauerhaft anzeigen'; $labels'additionalfolders' = 'Zusätzliche Ordner'; -$labels'allfolders' = 'suche in allen Ordnern'; +$labels'allfolders' = 'in allen Ordnern suchen'; $labels'fileskip' = 'Überspringen'; $labels'fileskipall' = 'Alle überspringen'; $labels'fileoverwrite' = 'Überschreiben'; @@ -87,12 +87,14 @@ $labels'filemoveconfirm' = 'Diese Aktion wird die Zieldatei <b>$file</b> überschreiben.'; $labels'editfiledialog' = 'Bearbeitungsaktion bestätigen'; $labels'newsession' = 'Neue Sitzung erstellen'; +$labels'ownedsession' = 'Vorhandene Sitzung vortsetzen'; +$labels'invitedsession' = 'Sitzung des Benutzers $user beitreten'; $labels'editfilerotitle' = 'Schreibgeschützte Datei'; $labels'select' = 'Auswählen'; $labels'terminatesession' = 'Sitzung beenden'; $labels'sessionterminatedtitle' = 'Sitzung beendet'; $labels'terminate' = 'Beenden'; -$labels'sessionterminating' = 'Sitzung wird beendet...'; +$labels'sessionterminating' = 'Sitzung wird beendet …'; $labels'participant' = 'Teilnehmer'; $labels'status' = 'Status'; $labels'addparticipant' = 'Hinzufügen'; @@ -100,13 +102,15 @@ $labels'invitationtextlabel' = 'Kommentar zur Einladungs-/Benachrichtigungsnachricht'; $labels'statusorganizer' = 'Organisator'; $labels'statusinvited' = 'Eingeladen'; -$labels'statusaccepted' = 'Akzeptiert'; +$labels'statusaccepted' = 'Angenommen'; $labels'statusdeclined' = 'Abgelehnt'; -$labels'documentinviting' = 'Teilnehmer wird/werden eingeladen...'; -$labels'documentcancelling' = 'Teilnehmer wird/werden entfernt...'; +$labels'documentinviting' = 'Teilnehmer wird/werden eingeladen …'; +$labels'documentcancelling' = 'Teilnehmer wird/werden entfernt …'; $labels'removeparticipant' = 'Entfernen'; $labels'sessiondialog' = 'Dokumentbearbeitungssitzung'; -$labels'accept' = 'Akzeptieren'; +$labels'more' = 'Mehr.'; +$labels'accept' = 'Annehmen'; +$labels'join' = 'Der Sitzung beitreten'; $labels'decline' = 'Ablehnen'; $labels'owner' = 'Eigentümer'; $labels'when' = 'Wenn'; @@ -114,25 +118,28 @@ $labels'comment' = 'Kommentar'; $labels'open' = 'Öffnen'; $labels'invitationtitle' = 'Einladung für $file'; +$labels'ivitationaccepting' = 'Eine Einladung wird angenommen …'; +$labels'ivitationdeclining' = 'Eine Einladung wird abgelehnt …'; +$labels'ivitationrequesting' = 'Einladung wird angefordert …'; $labels'storepasswords' = 'Passwort merken'; $labels'storepasswordsdesc' = 'Gespeicherte Passwörter werden verschlüsselt. Aktivieren Sie dies, wenn Sie nicht bei jedem Login nach dem Passwort gefragt werden möchten oder wenn dieser Speicher via WebDAV verfügbar sein soll.'; $labels'arialabelsearchform' = 'Suchformular für Dateien'; $labels'arialabelquicksearchbox' = 'Sucheingabe'; $labels'arialabellistoptions' = 'Dateilisten Optionen'; -$labels'arialabelfolderoptions' = 'Ordner Aktionen'; -$labels'arialabelfileeditform' = 'Datei Bearbeiten Maske'; -$labels'arialabelfilecreateform' = 'Datei Erstellen Maske'; +$labels'arialabelfolderoptions' = 'Ordneraktionen'; +$labels'arialabelfileeditform' = 'Dateibearbeitenformular'; +$labels'arialabelfilecreateform' = 'Dateierstellenformular'; $labels'arialabelfilelist' = 'Dateiliste'; -$labels'arialabelfoldercreateform' = 'Ordner Erstellen Maske'; -$labels'arialabelfoldereditform' = 'Formular Verzeichnis ändern'; -$labels'arialabelfoldermountform' = 'Formular Externer Speicher'; -$labels'arialabelfolderauthform' = 'Formular Authentifizierung Externer Speicher'; -$labels'arialabelfolderlist' = 'Ordner / Sammlungs Auswahl'; -$labels'arialabelfileselectdialog' = 'Datei Auswahl Dialog'; -$labels'arialabelattachmentoptions' = 'Anhänge speichern Optionen'; -$labels'arialabelfilesavedialog' = 'Datei(en) speichern Dialog'; +$labels'arialabelfoldercreateform' = 'Ordnererstellenformular'; +$labels'arialabelfoldereditform' = 'Ordnerbearbeitenformular'; +$labels'arialabelfoldermountform' = 'Externer-Speicherformular'; +$labels'arialabelfolderauthform' = 'Legitimierungsformular des externen Speichers'; +$labels'arialabelfolderlist' = 'Ordner-/Sammelauswahl'; +$labels'arialabelfileselectdialog' = 'Dateiauswahldialog'; +$labels'arialabelattachmentoptions' = 'Anhängespeichernoptionen'; +$labels'arialabelfilesavedialog' = 'Datei(en)speicherndialog'; $labels'arialabelfileprops' = 'Dateieigenschaften'; -$labels'arialabelfilecontent' = 'Datei Inhalt'; +$labels'arialabelfilecontent' = 'Dateiinhalt'; $labels'arialabelfileeditdialog' = 'Dateibearbeitungsdialog'; $labels'type.plain' = 'Klartextdokument'; $labels'type.vndoasisopendocumenttext' = 'Textdokument (ODF)';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/el.inc
Added
@@ -0,0 +1,69 @@ +<?php +/** + * Localizations for the Kolab Files plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ + */ +$labels'files' = 'Αρχεία'; +$labels'filepreview' = 'Προεπισκόπηση αρχείου'; +$labels'saveall' = 'Αποθήκευση όλων στο cloud...'; +$labels'saveto' = 'Αποθήκευση στο cloud...'; +$labels'saveas' = 'Αποθήκευση ως:'; +$labels'create' = 'Δημιουργία'; +$labels'save' = 'Αποθήκευση'; +$labels'cancel' = 'Άκυρο'; +$labels'fromcloud' = 'Από το cloud...'; +$labels'attachsel' = 'Επισύναψη επιλεγμένου'; +$labels'foldercreate' = 'Δημιουργία φακέλου'; +$labels'folderedit' = 'Επεξεργασία φακέλου'; +$labels'foldermount' = 'Προσθήκη αποθηκευτικού χώρου'; +$labels'folderdelete' = 'Διαγραφή φακέλου'; +$labels'foldername' = 'Όνομα φακέλου'; +$labels'name' = 'Όνομα'; +$labels'type' = 'Τύπος'; +$labels'upload' = 'Μεταφόρτωση'; +$labels'uploadfile' = 'Μεταφόρτωση αρχείου(ων)'; +$labels'get' = 'Λήψη'; +$labels'view' = 'Προβολή'; +$labels'viewfile' = 'Προβολή αρχείου'; +$labels'rename' = 'Μετονομασία'; +$labels'deletefile' = 'Διαγραφή αρχείου(ων)'; +$labels'edit' = 'Επεξεργασία'; +$labels'editfile' = 'Επεξεργασία αρχείου'; +$labels'save' = 'Αποθήκευση'; +$labels'savefile' = 'Αποθήκευση αρχείου'; +$labels'printfile' = 'Εκτύπωση αρχείου'; +$labels'renamefile' = 'Μετονομασία αρχείου'; +$labels'createfile' = 'Δημιουργία αρχείου'; +$labels'createandedit' = 'Δημιουργία και επεξεργασία'; +$labels'copyfile' = 'Αντιγραφή αρχείου'; +$labels'copyandedit' = 'Αντιγραφή και επεξεργασία'; +$labels'documenttitle' = 'Τίτλος:'; +$labels'close' = 'Κλείσιμο'; +$labels'collection_audio' = 'Ήχος'; +$labels'collection_video' = 'Βίντεο'; +$labels'collection_image' = 'Εικόνες'; +$labels'collection_document' = 'Έγγραφα'; +$labels'foldercreating' = 'Γίνεται δημιουργία φακέλου...'; +$labels'folderupdating' = 'Γίνεται ενημέρωση φακέλου...'; +$labels'foldermounting' = 'Προσθήκη εξωτερικού αποθηκευτικού χώρου...'; +$labels'folderdeleting' = 'Γίνεται διαγραφή φακέλου...'; +$labels'fileupdating' = 'Γίνεται ενημέρωση αρχείου...'; +$labels'filecreating' = 'Γίνεται δημιουργία αρχείου...'; +$labels'fileoverwrite' = 'Αντικατάσταση'; +$labels'fileoverwriteall' = 'Αντικατάσταση όλων'; +$labels'select' = 'Επιλογή'; +$labels'status' = 'Κατάσταση'; +$labels'addparticipant' = 'Προσθήκη συμμετεχόντων'; +$labels'statusorganizer' = 'Οργανωτής'; +$labels'removeparticipant' = 'Αφαίρεση'; +$labels'file' = 'Αρχείο'; +$labels'comment' = 'Σχόλιο'; +$labels'open' = 'Άνοιγμα'; +$labels'request' = 'Αίτηση πρόσκλησης'; +$labels'arialabelfilelist' = 'Λίστα αρχείων'; +$labels'arialabelfileprops' = 'Ιδιότητες αρχείου'; +$labels'arialabelfilecontent' = 'Περιεχόμενο αρχείου'; +$labels'type.html' = 'Έγγραφο HTML';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/en_US.inc
Changed
@@ -50,7 +50,6 @@ $labels'copyandedit' = 'Copy and Edit'; $labels'documenttitle' = 'Title:'; $labels'close' = 'Close'; -$labels'docedit' = 'Document editing'; $labels'collection_audio' = 'Audio'; $labels'collection_video' = 'Video'; @@ -144,9 +143,9 @@ $labels'open' = 'Open'; $labels'request' = 'Request an invitation'; $labels'invitationtitle' = 'Invitation for $file'; -$labels'invitationaccepting' = 'Accepting an invitation...'; -$labels'invitationdeclining' = 'Declining an invitation...'; -$labels'invitationrequesting' = 'Requesting an invitation...'; +$labels'ivitationaccepting' = 'Accepting an invitation...'; +$labels'ivitationdeclining' = 'Declining an invitation...'; +$labels'ivitationrequesting' = 'Requesting an invitation...'; $labels'storepasswords' = 'remember password'; $labels'storepasswordsdesc' = 'Stored passwords will be encrypted. Enable this if you do not want to be asked for the password on every login or you want this storage to be available via WebDAV.'; @@ -169,9 +168,6 @@ $labels'arialabelfileprops' = 'File properties'; $labels'arialabelfilecontent' = 'File content'; $labels'arialabelfileeditdialog' = 'File editing dialog'; -$labels'arialabeldoceditorsdialog' = 'Document session management dialog'; -$labels'arialabelexportoptions' = 'Document export options'; -$labels'arialabelcollaborators' = 'List of document editors'; $labels'type.plain' = 'Plain Text Document'; $labels'type.vndoasisopendocumenttext' = 'Text Document (ODF)';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/es_ES.inc
Changed
@@ -6,19 +6,158 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ */ +$labels'files' = 'Archivos'; +$labels'filepreview' = 'Vista previa del archivo'; +$labels'saveall' = 'guardar todos en la nube...'; +$labels'saveto' = 'guardar en la nube...'; +$labels'saveas' = 'Guardar como:'; +$labels'create' = 'Crear'; $labels'save' = 'Guardar'; $labels'cancel' = 'Cancelar'; +$labels'fromcloud' = 'Desde la nube...'; +$labels'selectfiles' = 'Seleccione los archivos que desea adjuntar...'; +$labels'attachsel' = 'Adjuntos seleccionados'; +$labels'foldercreate' = 'Crear carpeta'; +$labels'folderedit' = 'Editar carpeta'; +$labels'foldermount' = 'Añadir almacenamiento'; +$labels'folderdelete' = 'Borrar carpeta'; $labels'folderinside' = 'Inserte en el interior'; +$labels'foldername' = 'Nombre de la carpeta'; $labels'name' = 'Nombre'; +$labels'mtime' = 'Modificado'; $labels'type' = 'Tipo'; +$labels'upload' = 'Cargar'; +$labels'uploadfile' = 'Cargar archivo(s)'; +$labels'get' = 'Descargar'; +$labels'getfile' = 'Descargar archivo'; +$labels'view' = 'Vista'; +$labels'viewfile' = 'Ver archivo'; +$labels'rename' = 'Renombrar'; +$labels'deletefile' = 'Eliminar archivo(s)'; $labels'edit' = 'Editar'; +$labels'editfile' = 'Editar archivo'; $labels'save' = 'Guardar'; +$labels'savefile' = 'Guardar archivo'; +$labels'printfile' = 'Imprimir archivo'; +$labels'renamefile' = 'Renombrar un archivo'; +$labels'createfile' = 'Crear un archivo'; +$labels'createandedit' = 'Crear y editar'; +$labels'copyfile' = 'Copiar un archivo'; +$labels'copyandedit' = 'Copiar y editar'; +$labels'documenttitle' = 'Título:'; +$labels'close' = 'Cerrar'; +$labels'collection_audio' = 'Audio'; +$labels'collection_video' = 'Vídeo'; +$labels'collection_image' = 'Imágenes'; +$labels'collection_document' = 'Documentos'; +$labels'sessions' = 'Sesiones'; +$labels'uploading' = 'Cargando archivo(s)...'; +$labels'attaching' = 'Adjuntando archivo(s)...'; +$labels'authenticating' = 'Validando...'; +$labels'foldercreating' = 'Creando carpeta...'; +$labels'folderupdating' = 'Actualizando carpeta...'; +$labels'foldermounting' = 'Añadiendo almacenamiento externo...'; +$labels'folderdeleting' = 'Borrando carpeta...'; +$labels'folderdeleteconfirm' = '¿Está seguro de que quiere borrar la carpeta seleccionada?'; +$labels'folderdeletenotice' = 'La carpeta se ha borrado con éxito.'; +$labels'folderupdatenotice' = 'La carpeta se ha actualizado con éxito.'; +$labels'foldercreatenotice' = 'La carpeta se ha creado con éxito.'; +$labels'foldermountnotice' = 'El almacenamiento se ha añadido con éxito.'; +$labels'folderauthtitle' = 'Iniciar sesión en $title'; +$labels'saveallnotice' = 'Los archivos $n se han guardado correctamente.'; +$labels'saveallerror' = 'Los archivos $n no se han guardado correctamente.'; +$labels'attacherror' = 'Error al adjuntar los archivos de la nube'; +$labels'fileupdating' = 'Actualizando el archivo...'; +$labels'filecreating' = 'Creando el archivo...'; +$labels'filemoving' = 'Moviendo los archivos...'; +$labels'filecopying' = 'Copiando los archivos...'; +$labels'filedeleting' = 'Borrando los archivos...'; +$labels'filedeleteconfirm' = '¿Está seguro de que quiere borrar los archivos seleccionados?'; +$labels'filedeletenotice' = 'Los archivos se han borrado correctamente.'; +$labels'filemovenotice' = 'Los archivos se han movido correctamente.'; +$labels'filecopynotice' = 'Los archivos se han copiado correctamente.'; +$labels'uploadsizeerror' = 'Se ha excedido el tamaño ($size) máximo del archivo'; $labels'listpermanent' = 'Lista Permanente'; +$labels'additionalfolders' = 'Carpetas adicionales'; +$labels'allfolders' = 'buscar en todas las carpetas'; +$labels'fileskip' = 'Saltar'; +$labels'fileskipall' = 'Saltar todas'; +$labels'fileoverwrite' = 'Sobrescribir'; +$labels'fileoverwriteall' = 'Sobrescribir todas'; +$labels'filemoveconfirm' = 'Esta acción va a sobrescribir el archivo de destino: <b>$file</b>.'; +$labels'editfiledialog' = 'Confirmar acción de edición'; +$labels'editfilesessions' = 'Hay sesiones en curso en el archivo seleccionado. Por favor, seleccione la acción que desea emprender.'; +$labels'newsession' = 'Crear una sesión nueva'; +$labels'newsessionro' = 'Crear una nueva sesión (copiar el archivo en la ubicación de lectura-escritura)'; +$labels'ownedsession' = 'Continuar la sesión existente'; +$labels'invitedsession' = 'Unirse a la sesión de $user'; +$labels'joinsession' = 'Solicitar una invitación de $user'; +$labels'editfilero' = 'Este archivo es de sólo lectura. ¿Desea crear y editar una copia del archivo?'; +$labels'editfilerotitle' = 'Archivo de sólo lectura'; $labels'select' = 'Seleccionar'; +$labels'terminatesession' = 'Finalizar sesión'; +$labels'sessionterminatedtitle' = 'Sesión finalizada'; +$labels'sessionterminated' = 'La sesión ha finalizado. Se cerrará la ventana.'; +$labels'terminate' = 'Finalizar'; +$labels'sessionterminating' = 'Finalizar la sesión...'; +$labels'unsavedchanges' = 'Hay cambios no guardados en el documento que se perderán. ¿Quieres finalizar la sesión de todos modos?'; +$labels'manageeditors' = 'Invitar al documento'; $labels'participant' = 'Participante'; $labels'status' = 'Estado'; $labels'addparticipant' = 'Añada participante'; +$labels'delparticipant' = 'Eliminar participante'; +$labels'invitationtexttitle' = 'Este comentario se adjuntará al mensaje de invitación/notificación enviado al participante'; $labels'invitationtextlabel' = 'Añadir comentarios a la Invitación/notificación'; $labels'statusorganizer' = 'Organizador'; +$labels'statusinvited' = 'Invitado'; +$labels'statusaccepted' = 'Aceptada'; +$labels'statusdeclined' = 'Rechazado'; +$labels'statusrequested' = 'Solicitado'; +$labels'documentinviting' = 'Invitando participante(s)...'; +$labels'documentcancelling' = 'Eliminando participante(s)'; $labels'removeparticipant' = 'Eliminar'; +$labels'invitednotice' = 'Ha sido invitado para la sesión de edición por $owner.'; +$labels'acceptedownernotice' = '$owner aceptó su solicitud para unirse a la sesión de edición.'; +$labels'declinedownernotice' = '$owner rechazó su solicitud para unirse a la sesión de edición.'; +$labels'acceptednotice' = '$user aceptó su solicitud para la sesión de edición.'; +$labels'declinednotice' = '$user rechazó su solicitud para la sesión de edición.'; +$labels'requestednotice' = '$user solicitó unirse a la sesión de edición.'; +$labels'sessiondialog' = 'Sesión de edición del documento'; +$labels'sessiondialogcontent' = 'Hay una sesión de edición en curso en $file creada por $owner.'; +$labels'more' = 'Mas.'; +$labels'accept' = 'Aceptar'; +$labels'join' = 'Unirse a la sesión'; +$labels'decline' = 'Declinar'; +$labels'owner' = 'Propietario'; +$labels'when' = 'Cuándo'; +$labels'file' = 'archivo'; $labels'comment' = 'Comentario'; +$labels'open' = 'Abrir'; +$labels'request' = 'Solicitar una invitación'; +$labels'invitationtitle' = 'Invitación para $file'; +$labels'ivitationaccepting' = 'Aceptar una invitación...'; +$labels'ivitationdeclining' = 'Declinar una invitación...'; +$labels'ivitationrequesting' = 'Solicitar una invitación...'; +$labels'storepasswords' = 'recordar contraseña'; +$labels'storepasswordsdesc' = 'Las contraseñas almacenadas se cifrarán. Actívelas si no desea que se le solicite la contraseña en cada inicio de sesión o si desea que este almacenamiento esté disponible a través de WebDAV.'; +$labels'arialabelsearchform' = 'Formulario de búsqueda de archivos'; +$labels'arialabelquicksearchbox' = 'Buscar entrada'; +$labels'arialabellistoptions' = 'Opciones de la lista de archivos'; +$labels'arialabelfolderoptions' = 'Acciones de carpeta'; +$labels'arialabelfileeditform' = 'Formulario de edición del archivo'; +$labels'arialabelfilecreateform' = 'Formulario de creación del archivo'; +$labels'arialabelfilelist' = 'Lista de archivos'; +$labels'arialabelfoldercreateform' = 'Formulario de creación del archivo'; +$labels'arialabelfoldereditform' = 'Formulario de edición de la carpeta'; +$labels'arialabelfoldermountform' = 'Formulario de almacenamiento externo'; +$labels'arialabelfolderauthform' = 'Formulario de validación de almacenamiento externo'; +$labels'arialabelfolderlist' = 'Selección de colección o carpeta'; +$labels'arialabelfileselectdialog' = 'Diálogo de selección de archivo'; +$labels'arialabelattachmentoptions' = 'Opciones de guardar documentos adjuntos'; +$labels'arialabelfilesavedialog' = 'Diálogo de guardar archivo(s)'; +$labels'arialabelfileprops' = 'Propiedades del archivo'; +$labels'arialabelfilecontent' = 'Contenido del archivo'; +$labels'arialabelfileeditdialog' = 'Diálogo de edición de archivo'; +$labels'type.plain' = 'Documento de texto sin formato'; +$labels'type.vndoasisopendocumenttext' = 'Documento de texto (ODF)'; +$labels'type.html' = 'Documento HTML';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/fr_FR.inc
Changed
@@ -7,15 +7,15 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ */ $labels'files' = 'Fichiers'; -$labels'filepreview' = 'Fichier d\'aperçu'; -$labels'saveall' = 'Enregistrer tout dans le nuage...'; +$labels'filepreview' = 'Aperçu du fichier'; +$labels'saveall' = 'Tout enregistrer dans le nuage...'; $labels'saveto' = 'Enregistrer dans le nuage...'; -$labels'saveas' = 'Enregistrer sous:'; +$labels'saveas' = 'Enregistrer sous :'; $labels'create' = 'Créer'; $labels'save' = 'Enregistrer'; $labels'cancel' = 'Annuler'; $labels'fromcloud' = 'Depuis le nuage...'; -$labels'selectfiles' = 'Sélectionnez le(s) fichier(s) à attacher..'; +$labels'selectfiles' = 'Sélectionnez le(s) fichier(s) à attacher...'; $labels'attachsel' = 'Attachement sélectionné'; $labels'foldercreate' = 'Nouveau répertoire'; $labels'folderedit' = 'Modifier le répertoire'; @@ -39,17 +39,24 @@ $labels'save' = 'Enregistrer'; $labels'savefile' = 'Sauvegarder le fichier'; $labels'printfile' = 'Imprimer le fichier'; -$labels'close' = 'fermer'; +$labels'renamefile' = 'Renommer un fichier'; +$labels'createfile' = 'Créer un fichier'; +$labels'createandedit' = 'Créer et modifier'; +$labels'copyfile' = 'Copier un fichier'; +$labels'copyandedit' = 'Copier et modifier'; +$labels'documenttitle' = 'Titre :'; +$labels'close' = 'Fermer'; $labels'collection_audio' = 'Son'; $labels'collection_video' = 'Vidéo'; $labels'collection_image' = 'Images'; $labels'collection_document' = 'Documents'; -$labels'uploading' = 'Téléversement de(s) fichier(s)...'; -$labels'attaching' = 'Attachement de fichier(s)...'; -$labels'authenticating' = 'Authentification ...'; +$labels'sessions' = 'Sessions'; +$labels'uploading' = 'Téléversement du(des) fichier(s)...'; +$labels'attaching' = 'Ajout du(des) fichier(s)...'; +$labels'authenticating' = 'Authentification...'; $labels'foldercreating' = 'Création d\'un répertoire...'; $labels'folderupdating' = 'Mise à jour d\'un répertoire...'; -$labels'foldermounting' = 'Ajouter stockage externe ...'; +$labels'foldermounting' = 'Ajout de stockage externe...'; $labels'folderdeleting' = 'Suppression d\'un répertoire...'; $labels'folderdeleteconfirm' = 'Êtes-vous sûr de de vouloir supprimer le répertoire sélectionné ?'; $labels'folderdeletenotice' = 'Le répertoire a été supprimé.'; @@ -57,51 +64,100 @@ $labels'foldercreatenotice' = 'Le répertoire a été créé.'; $labels'foldermountnotice' = 'Stockage ajouté avec succès.'; $labels'folderauthtitle' = 'Connexion à $title'; -$labels'saveallnotice' = '$n fichier(s) ont été sauvegardé(s)'; +$labels'saveallnotice' = '$n fichier(s) a(ont) été sauvegardé(s)'; $labels'saveallerror' = 'La sauvegarde de $n fichier(s) a échoué.'; -$labels'attacherror' = 'L\'attachement de fichier(s) depuis le nuage a échoué'; +$labels'attacherror' = 'L\'ajout du(des) fichier(s) depuis le nuage a échoué'; $labels'fileupdating' = 'Modification du fichier...'; -$labels'filemoving' = 'Déplacement de fichier(s)...'; -$labels'filecopying' = 'Copie de fichier(s)...'; -$labels'filedeleting' = 'Suppression de fichier(s)...'; +$labels'filecreating' = 'Création du fichier...'; +$labels'filemoving' = 'Déplacement du(des) fichier(s)...'; +$labels'filecopying' = 'Copie du(des) fichier(s)...'; +$labels'filedeleting' = 'Suppression du(des) fichier(s)...'; $labels'filedeleteconfirm' = 'Êtes-vous sûr de de vouloir supprimer les fichiers sélectionnés ?'; -$labels'filedeletenotice' = 'Le(s) fichier(s) ont été supprimé(s).'; -$labels'filemovenotice' = 'Le(s) fichier(s) ont été déplacé(s).'; -$labels'filecopynotice' = 'Le(s) fichier(s) ont été copié(s).'; -$labels'uploadsizeerror' = 'La taille du fichier maximale ($size) est dépassée!'; +$labels'filedeletenotice' = 'Le(s) fichier(s) a(ont) été supprimé(s).'; +$labels'filemovenotice' = 'Le(s) fichier(s) a(ont) été déplacé(s).'; +$labels'filecopynotice' = 'Le(s) fichier(s) a(ont) été copié(s).'; +$labels'uploadsizeerror' = 'La taille maximale du fichier ($size) est dépassée !'; $labels'listpermanent' = 'Lister définitivement'; +$labels'additionalfolders' = 'Dossiers supplémentaires'; $labels'allfolders' = 'Recherche dans tous les répertoires'; $labels'fileskip' = 'Ignorer'; $labels'fileskipall' = 'Ignorer tout'; $labels'fileoverwrite' = 'Écraser'; $labels'fileoverwriteall' = 'Écraser tout'; $labels'filemoveconfirm' = 'Cette action va écraser le fichier de destination : <b>$file</b>.'; +$labels'editfiledialog' = 'Confirmer la modification'; +$labels'editfilesessions' = 'Des sessions sont en cours pour le fichier choisi. Veuillez choisir l\'action souhaitée.'; +$labels'newsession' = 'Créer une nouvelle session'; +$labels'newsessionro' = 'Créer une nouvelle session (copier le fichier à l\'emplacement d\'écriture/de lecture)'; +$labels'ownedsession' = 'Poursuivre votre session existante'; +$labels'invitedsession' = 'Rejoindre la session de $user'; +$labels'joinsession' = 'Demander une invitation à $user'; +$labels'editfilero' = 'Ce fichier est disponible en lecture seule. Souhaitez-vous créer et modifier une copie du fichier ?'; +$labels'editfilerotitle' = 'Fichier en lecture seule'; $labels'select' = 'Sélectionner'; +$labels'terminatesession' = 'Fermer la session'; +$labels'sessionterminatedtitle' = 'Session terminée'; +$labels'sessionterminated' = 'La session est terminée. La fenêtre va être fermée.'; +$labels'terminate' = 'Terminer'; +$labels'sessionterminating' = 'La session va prendre fin...'; +$labels'unsavedchanges' = 'Les modifications non sauvegardées dans ce document seront perdues. Souhaitez-vous tout de même mettre fin à la session ?'; +$labels'manageeditors' = 'Inviter dans le document'; $labels'participant' = 'Participant'; -$labels'status' = 'État'; -$labels'addparticipant' = 'Ajouter participant'; +$labels'status' = 'Statut'; +$labels'addparticipant' = 'Ajouter un participant'; +$labels'delparticipant' = 'Retirer le participant'; +$labels'invitationtexttitle' = 'Ce commentaire sera joint au message d\'invitation/notification envoyé au participant'; $labels'invitationtextlabel' = 'Commentaire d’invitation ou de notification'; $labels'statusorganizer' = 'Organisateur'; +$labels'statusinvited' = 'Invité'; +$labels'statusaccepted' = 'Accepté'; +$labels'statusdeclined' = 'Refusé'; +$labels'statusrequested' = 'Demandé'; +$labels'documentinviting' = 'Invitation du ou des participant(s) en cours'; +$labels'documentcancelling' = 'Retrait du ou des participant(s)...'; $labels'removeparticipant' = 'Supprimer'; +$labels'invitednotice' = 'Vous avez été invité par $owner à rejoindre la session de modification.'; +$labels'acceptedownernotice' = '$owner a accepté votre demande à rejoindre la session de modification.'; +$labels'declinedownernotice' = '$owner a décliné votre demande à rejoindre la session de modification.'; +$labels'acceptednotice' = '$user a accepté votre invitation à rejoindre la session de modification.'; +$labels'declinednotice' = '$user a décliné votre invitation à rejoindre la session de modification.'; +$labels'requestednotice' = '$user a demandé à rejoindre la session de modification'; +$labels'sessiondialog' = 'Session de modification du document'; +$labels'sessiondialogcontent' = 'Un session de modification est en cours pour $file créé par $owner'; +$labels'more' = 'Plus.'; $labels'accept' = 'Accepter'; +$labels'join' = 'Rejoindre la session'; $labels'decline' = 'Refuser'; $labels'owner' = 'Propriétaire'; +$labels'when' = 'Quand'; +$labels'file' = 'Fichier'; $labels'comment' = 'Commentaire'; $labels'open' = 'Ouvrir'; -$labels'storepasswords' = 'rappelez-vous du mot de passe'; -$labels'storepasswordsdesc' = 'Les mots de passe stockés seront chiffrés. Permettez ceci si vous ne voulez pas que le mot de passe vous soit demandé lors de chaque connexion ou si vous voulez que ce stockage soit disponible via WebDAV.'; -$labels'arialabelsearchform' = 'Zone de recherche des fichiers'; +$labels'request' = 'Demander une invitation'; +$labels'invitationtitle' = 'Invitation pour $file'; +$labels'ivitationaccepting' = 'Invitation acceptée...'; +$labels'ivitationdeclining' = 'Invitation déclinée...'; +$labels'ivitationrequesting' = 'Demande d\'invitation...'; +$labels'storepasswords' = 'se souvenir du mot de passe'; +$labels'storepasswordsdesc' = 'Les mots de passe stockés seront chiffrés. Autorisez ceci si vous ne voulez pas que le mot de passe vous soit demandé à chaque connexion ou si vous voulez que ce stockage soit disponible via WebDAV.'; +$labels'arialabelsearchform' = 'Formulaire de recherche des fichiers'; $labels'arialabelquicksearchbox' = 'Champ de recherche'; $labels'arialabellistoptions' = 'Liste d\'options des fichiers'; $labels'arialabelfolderoptions' = 'Actions de dossier'; -$labels'arialabelfileeditform' = 'Zone d\'édition de fichier'; -$labels'arialabelfoldercreateform' = 'Zone de création de dossier'; -$labels'arialabelfoldereditform' = 'Zone d\'édition de dossier'; -$labels'arialabelfoldermountform' = 'Stockage externe depuis'; +$labels'arialabelfileeditform' = 'Formulaire d\'édition de fichiers'; +$labels'arialabelfilecreateform' = 'Formulaire de création de fichiers'; +$labels'arialabelfilelist' = 'Liste des fichiers'; +$labels'arialabelfoldercreateform' = 'Formulaire de création de dossiers'; +$labels'arialabelfoldereditform' = 'Formulaire d\'édition de dossiers'; +$labels'arialabelfoldermountform' = 'Formulaire de stockage externe'; $labels'arialabelfolderauthform' = 'Formulaire d\'authentification de stockage externe'; -$labels'arialabelfolderlist' = 'Sélection de dossier'; -$labels'arialabelfileselectdialog' = ' Fenêtre de dialogue de sélection de fichier.'; +$labels'arialabelfolderlist' = 'Sélection de dossier/de collection'; +$labels'arialabelfileselectdialog' = ' Fenêtre de sélection de fichier.'; $labels'arialabelattachmentoptions' = 'Options d\'enregistrement des pièces jointes'; -$labels'arialabelfilesavedialog' = 'Boite de dialogue d\'enregistrement de fichier(s)'; +$labels'arialabelfilesavedialog' = 'Boîte de dialogue d\'enregistrement du(des) fichier(s)'; $labels'arialabelfileprops' = 'Propriétés du fichier'; -$labels'arialabelfilecontent' = 'Contenu de fichier'; +$labels'arialabelfilecontent' = 'Contenu du fichier'; +$labels'arialabelfileeditdialog' = 'Fenêtre de modification de fichier'; +$labels'type.plain' = 'Document texte simple'; +$labels'type.vndoasisopendocumenttext' = 'Document texte (ODF)'; +$labels'type.html' = 'Fichier HTML';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/lv.inc
Added
@@ -0,0 +1,29 @@ +<?php +/** + * Localizations for the Kolab Files plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ + */ +$labels'files' = 'Faili'; +$labels'save' = 'Saglabāt'; +$labels'cancel' = 'Atcelt'; +$labels'folderinside' = 'Ievietot'; +$labels'name' = 'Nosaukums'; +$labels'edit' = 'Labot'; +$labels'save' = 'Saglabāt'; +$labels'close' = 'Aizvērt'; +$labels'listpermanent' = 'Rādīt sarakstā vienmēr'; +$labels'select' = 'Izvēlēties'; +$labels'participant' = 'Dalībnieks'; +$labels'status' = 'Statuss'; +$labels'addparticipant' = 'Pievienot dalībnieku'; +$labels'invitationtextlabel' = 'Uzaicinājumam/paziņojuma komentārs'; +$labels'statusorganizer' = 'Organizētājs'; +$labels'statusaccepted' = 'Pieņemts'; +$labels'statusdeclined' = 'Noraidīts'; +$labels'accept' = 'Pieņemt'; +$labels'decline' = 'Noraidīt'; +$labels'owner' = 'Īpašnieks'; +$labels'comment' = 'Komentārs';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/nl_NL.inc
Changed
@@ -7,76 +7,157 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_files/ */ $labels'files' = 'Bestanden'; -$labels'saveall' = 'Sla alles op in de cloud...'; -$labels'saveto' = 'Sla op in de cloud...'; +$labels'filepreview' = 'Bestandsvoorbeeld'; +$labels'saveall' = 'Alles opslaan in de cloud...'; +$labels'saveto' = 'Opslaan in de cloud...'; $labels'saveas' = 'Opslaan als:'; -$labels'create' = 'Creëer'; +$labels'create' = 'Maken'; $labels'save' = 'Opslaan'; $labels'cancel' = 'Annuleren'; $labels'fromcloud' = 'Uit de cloud...'; $labels'selectfiles' = 'Selecteer bestand(en) om toe te voegen...'; -$labels'attachsel' = 'Voeg het geselekteerde toe'; -$labels'foldercreate' = 'Creëer map'; -$labels'folderdelete' = 'Verwijder map'; -$labels'folderinside' = 'Insert inside'; -$labels'foldername' = 'Map naam'; +$labels'attachsel' = 'Selectie toevoegen'; +$labels'foldercreate' = 'Map maken'; +$labels'folderedit' = 'Map bewerken'; +$labels'foldermount' = 'Opslag toevoegen'; +$labels'folderdelete' = 'Map verwijderen'; +$labels'folderinside' = 'Invoegen in'; +$labels'foldername' = 'Mapnaam'; $labels'name' = 'Naam'; $labels'mtime' = 'Gewijzigd'; $labels'type' = 'Type'; -$labels'upload' = 'Upload'; -$labels'uploadfile' = 'Upload bestand(en)'; +$labels'upload' = 'Uploaden'; +$labels'uploadfile' = 'Bestand(en) uploaden'; $labels'get' = 'Downloaden'; -$labels'getfile' = 'Download bestand'; -$labels'view' = 'Bekijken'; -$labels'viewfile' = 'Bekijk bestand'; +$labels'getfile' = 'Bestand downloaden'; +$labels'view' = 'Weergeven'; +$labels'viewfile' = 'Bestand weergeven'; $labels'rename' = 'Naam wijzigen'; -$labels'deletefile' = 'Verwijder bestand(en)'; -$labels'edit' = 'Wijzigen'; -$labels'editfile' = 'Wijzig bestand'; +$labels'deletefile' = 'Bestand(en) verwijderen'; +$labels'edit' = 'Bewerken'; +$labels'editfile' = 'Bestand bewerken'; $labels'save' = 'Opslaan'; -$labels'savefile' = 'Sla bestand op'; -$labels'printfile' = 'Druk bestand af'; +$labels'savefile' = 'Bestand opslaan'; +$labels'printfile' = 'Bestand afdrukken'; +$labels'renamefile' = 'Naam van bestand wijzigen'; +$labels'createfile' = 'Bestand maken'; +$labels'createandedit' = 'Maken en bewerken'; +$labels'copyfile' = 'Bestand kopiëren'; +$labels'copyandedit' = 'Kopiëren en bewerken'; +$labels'documenttitle' = 'Naam:'; $labels'close' = 'Sluiten'; -$labels'collection_audio' = 'Geluid'; +$labels'collection_audio' = 'Audio'; $labels'collection_video' = 'Video'; $labels'collection_image' = 'Afbeeldingen'; $labels'collection_document' = 'Documenten'; -$labels'uploading' = 'Uploaden van bestand(en)...'; +$labels'sessions' = 'Sessies'; +$labels'uploading' = 'Bestand(en) uploaden...'; $labels'attaching' = 'Bestand(en) toevoegen...'; -$labels'foldercreating' = 'Creëren van map...'; -$labels'folderdeleting' = 'Verwijderen van map...'; +$labels'authenticating' = 'Verifiëren...'; +$labels'foldercreating' = 'Map maken...'; +$labels'folderupdating' = 'Map bijwerken...'; +$labels'foldermounting' = 'Externe opslag toevoegen...'; +$labels'folderdeleting' = 'Map verwijderen...'; $labels'folderdeleteconfirm' = 'Weet u zeker dat u de geselecteerde map wilt verwijderen?'; -$labels'folderdeletenotice' = 'Map succesvol verwijderd.'; -$labels'foldercreatenotice' = 'Map succesvol aangemaakt.'; -$labels'saveallnotice' = 'Succesvol $n bestand(en) opgeslagen.'; -$labels'saveallerror' = 'Opslaan van $n bestand(en) mislukt.'; -$labels'attacherror' = 'Toevoegen van bestand(en) uit de cloud mislukt'; -$labels'fileupdating' = 'Wijzigen van bestand...'; -$labels'filemoving' = 'Verplaatsen van bestand(en)...'; -$labels'filecopying' = 'Kopiëren van bestand(en)...'; -$labels'filedeleting' = 'Verwijderen van bestand(en)...'; +$labels'folderdeletenotice' = 'Map is met succes verwijderd.'; +$labels'folderupdatenotice' = 'Map is met succes bijgewerkt.'; +$labels'foldercreatenotice' = 'Map is met succes gemaakt.'; +$labels'foldermountnotice' = 'Opslag is met succes toegevoegd.'; +$labels'folderauthtitle' = 'Aanmelding bij $title'; +$labels'saveallnotice' = '$n bestand(en) met succes opgeslagen.'; +$labels'saveallerror' = 'Opslaan van $n bestand(en) is mislukt.'; +$labels'attacherror' = 'Toevoegen van bestand(en) uit de cloud is mislukt'; +$labels'fileupdating' = 'Bestand bijwerken...'; +$labels'filecreating' = 'Bestand maken...'; +$labels'filemoving' = 'Bestand(en) verplaatsen...'; +$labels'filecopying' = 'Bestand(en) kopiëren...'; +$labels'filedeleting' = 'Bestand(en) verwijderen...'; $labels'filedeleteconfirm' = 'Weet u zeker dat u de geselecteerde bestanden wilt verwijderen?'; -$labels'filedeletenotice' = 'Bestand(en) succesvol verwijderd.'; -$labels'filemovenotice' = 'Bestand(en) succesvol verplaatst.'; -$labels'filecopynotice' = 'Bestand(en) succesvol gekopieerd.'; +$labels'filedeletenotice' = 'Bestand(en) met succes verwijderd.'; +$labels'filemovenotice' = 'Bestand(en) met succes verplaatst.'; +$labels'filecopynotice' = 'Bestand(en) met succes gekopieerd.'; $labels'uploadsizeerror' = 'Maximale bestandsgrootte ($size) overschreden!'; -$labels'listpermanent' = 'Permanent weergeven'; -$labels'allfolders' = 'Zoek in alle mappen'; +$labels'listpermanent' = 'Definitief weergeven'; +$labels'additionalfolders' = 'Extra mappen'; +$labels'allfolders' = 'zoeken in alle mappen'; $labels'fileskip' = 'Overslaan'; -$labels'fileskipall' = 'Sla allen over'; +$labels'fileskipall' = 'Alles overslaan'; $labels'fileoverwrite' = 'Overschrijven'; -$labels'fileoverwriteall' = 'Overschrijf alle'; -$labels'filemoveconfirm' = 'Deze actie overschrijft het volgende doelbestand: <b>$file</b>.'; -$labels'select' = 'Selecteer'; +$labels'fileoverwriteall' = 'Alles overschrijven'; +$labels'filemoveconfirm' = 'Met deze actie overschrijft u het doelbestand: <b>$file</b>.'; +$labels'editfiledialog' = 'Bewerking bevestigen'; +$labels'editfilesessions' = 'Het geselecteerde bestand wordt in actieve sessies gebruikt. Selecteer de gewenste actie.'; +$labels'newsession' = 'Nieuwe sessie maken'; +$labels'newsessionro' = 'Nieuwe sessie maken (bestand kopiëren naar locatie met lees-/schrijfrechten)'; +$labels'ownedsession' = 'Huidige sessie voortzetten'; +$labels'invitedsession' = 'Deelnemen aan sessie van $user'; +$labels'joinsession' = 'Uitnodiging aan $user vragen'; +$labels'editfilero' = 'Dit bestand kan alleen worden gelezen. Wilt u een kopie van het bestand maken en bewerken?'; +$labels'editfilerotitle' = 'Alleen-lezenbestand'; +$labels'select' = 'Selecteren'; +$labels'terminatesession' = 'Sessie beëindigen'; +$labels'sessionterminatedtitle' = 'Sessie beëindigd'; +$labels'sessionterminated' = 'De sessie is beëindigd. Het venster wordt gesloten.'; +$labels'terminate' = 'Beëindigen'; +$labels'sessionterminating' = 'Sessie wordt beëindigd...'; +$labels'unsavedchanges' = 'Het document bevat wijzigingen die niet zijn opgeslagen en verloren zullen gaan. Wilt u de sessie toch beëindigen?'; +$labels'manageeditors' = 'Uitnodigen voor document'; $labels'participant' = 'Deelnemer'; $labels'status' = 'Status'; $labels'addparticipant' = 'Deelnemer toevoegen'; -$labels'invitationtextlabel' = 'Invitation/notification comment'; -$labels'statusorganizer' = 'Organisatie'; -$labels'removeparticipant' = 'Verwijder'; -$labels'accept' = 'Accepteer'; -$labels'decline' = 'Afwijzen'; +$labels'delparticipant' = 'Deelnemer verwijderen'; +$labels'invitationtexttitle' = 'Deze opmerking wordt toegevoegd aan de uitnodiging/melding die naar de deelnemer wordt verstuurd'; +$labels'invitationtextlabel' = 'Opmerking bij uitnodiging/melding'; +$labels'statusorganizer' = 'Organisator'; +$labels'statusinvited' = 'Uitgenodigd'; +$labels'statusaccepted' = 'Geaccepteerd'; +$labels'statusdeclined' = 'Geweigerd'; +$labels'statusrequested' = 'Gevraagd'; +$labels'documentinviting' = 'Deelnemer(s) uitnodigen...'; +$labels'documentcancelling' = 'Deelnemer(s) verwijderen...'; +$labels'removeparticipant' = 'Verwijderen'; +$labels'invitednotice' = 'U bent uitgenodigd voor de bewerkingssessie door $owner.'; +$labels'acceptedownernotice' = '$owner heeft uw verzoek om aan de bewerkingssessie deel te nemen geaccepteerd.'; +$labels'declinedownernotice' = '$owner heeft uw verzoek om aan de bewerkingssessie deel te nemen geweigerd.'; +$labels'acceptednotice' = '$user heeft uw uitnodiging voor de bewerkingssessie geaccepteerd.'; +$labels'declinednotice' = '$user heeft uw uitnodiging voor de bewerkingssessie geweigerd.'; +$labels'requestednotice' = '$user heeft gevraagd om deel te nemen aan de bewerkingssessie.'; +$labels'sessiondialog' = 'Bewerkingssessie voor document'; +$labels'sessiondialogcontent' = 'Er is een actieve bewerkingssessie $file die door $owner is gestart.'; +$labels'more' = 'Meer.'; +$labels'accept' = 'Accepteren'; +$labels'join' = 'Deelnemen aan sessie'; +$labels'decline' = 'Afslaan'; $labels'owner' = 'Eigenaar'; +$labels'when' = 'Wanneer'; +$labels'file' = 'Bestand'; $labels'comment' = 'Opmerking'; $labels'open' = 'Openen'; +$labels'request' = 'Uitnodiging vragen'; +$labels'invitationtitle' = 'Uitnodiging voor $file'; +$labels'ivitationaccepting' = 'Uitnodiging wordt geaccepteerd...'; +$labels'ivitationdeclining' = 'Uitnodiging wordt afgeslagen...'; +$labels'ivitationrequesting' = 'Uitnodiging wordt gevraagd...'; +$labels'storepasswords' = 'wachtwoord onthouden'; +$labels'storepasswordsdesc' = 'Opgeslagen wachtwoorden worden gecodeerd. Schakel deze optie in als u niet bij elke aanmelding het wachtwoord wilt invoeren of als u deze opslag beschikbaar wilt maken via WebDAV.'; +$labels'arialabelsearchform' = 'Zoekformulier voor bestanden'; +$labels'arialabelquicksearchbox' = 'Zoekopdracht'; +$labels'arialabellistoptions' = 'Opties voor lijst met bestanden'; +$labels'arialabelfolderoptions' = 'Mapacties'; +$labels'arialabelfileeditform' = 'Formulier voor bewerking van bestanden'; +$labels'arialabelfilecreateform' = 'Formulier voor aanmaak van bestanden'; +$labels'arialabelfilelist' = 'Lijst met bestanden'; +$labels'arialabelfoldercreateform' = 'Formulier voor aanmaak van mappen'; +$labels'arialabelfoldereditform' = 'Formulier voor bewerking van mappen'; +$labels'arialabelfoldermountform' = 'Formulier voor externe opslag'; +$labels'arialabelfolderauthform' = 'Formulier voor verificatie van externe opslag'; +$labels'arialabelfolderlist' = 'Map/verzameling selecteren'; +$labels'arialabelfileselectdialog' = 'Dialoogvenster voor selectie van bestand'; +$labels'arialabelattachmentoptions' = 'Opties voor opslag van bijlage'; +$labels'arialabelfilesavedialog' = 'Dialoogvenster voor opslag van bestand(en)'; $labels'arialabelfileprops' = 'Eigenschappen van bestand'; +$labels'arialabelfilecontent' = 'Bestandsinhoud'; +$labels'arialabelfileeditdialog' = 'Dialoogvenster voor bewerking van bestand';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_files/localization/ru_RU.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_files/localization/ru_RU.inc
Changed
@@ -85,6 +85,7 @@ $labels'fileoverwrite' = 'Перезаписать'; $labels'fileoverwriteall' = 'Перезаписать все'; $labels'filemoveconfirm' = 'Это действие перезапишет файл: <b>$file</b>.'; +$labels'editfiledialog' = 'Подтвердить выполненные действия'; $labels'newsession' = 'Создать новую сессию'; $labels'newsessionro' = 'Создать новую сессию (скопировать файл в область для для редактирования)'; $labels'ownedsession' = 'Продолжить существующую сессию'; @@ -104,10 +105,17 @@ $labels'status' = 'Статус'; $labels'addparticipant' = 'Добавить участника'; $labels'delparticipant' = 'Удалить участника'; +$labels'invitationtexttitle' = 'Комментарий будет прикреплен к приглашению/сообщению, отправленному участнику'; $labels'invitationtextlabel' = 'Комментарий к приглашению/извещению'; $labels'statusorganizer' = 'Организатор'; +$labels'statusinvited' = 'Приглашенный'; +$labels'statusaccepted' = 'Принято'; +$labels'statusdeclined' = 'Отклонено'; +$labels'statusrequested' = 'Запрошенный'; $labels'removeparticipant' = 'Убрать'; +$labels'invitednotice' = 'Вы были приглашены $owner для совместного редактирования.'; $labels'sessiondialog' = 'Сессия редактирования документа'; +$labels'more' = 'Больше.'; $labels'accept' = 'Принять'; $labels'join' = 'Присоединиться к сессии'; $labels'decline' = 'Отклонить';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_folders/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_folders/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Type-aware folder management/listing for Kolab", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.0", + "version": "3.3.2", "authors": { "name": "Aleksander Machniak",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_folders/kolab_folders.php -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_folders/kolab_folders.php
Changed
@@ -3,10 +3,9 @@ /** * Type-aware folder management/listing for Kolab * - * @version @package_version@ * @author Aleksander Machniak <machniak@kolabsys.com> * - * Copyright (C) 2011, Kolab Systems AG <contact@kolabsys.com> + * Copyright (C) 2011-2017, Kolab Systems AG <contact@kolabsys.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -42,6 +41,7 @@ private $rc; private static $instance; + private $expire_annotation = '/shared/vendor/cmu/cyrus-imapd/expire'; /** @@ -206,6 +206,8 @@ 'value' => sprintf('%s (%s)', $this->gettext('foldertypemail'), $this->gettext('inbox')), ); + $this->add_expire_input($args'form', 'INBOX'); + return $args; } @@ -260,7 +262,9 @@ $this->include_script('kolab_folders.js'); // build type SELECT fields - $type_select = new html_select(array('name' => '_ctype', 'id' => '_ctype')); + $type_select = new html_select(array('name' => '_ctype', 'id' => '_ctype', + 'onchange' => "\$('name=\"_expire\"').attr('disabled', \$(this).val() != 'mail')" + )); $sub_select = new html_select(array('name' => '_subtype', 'id' => '_subtype')); $sub_select->add('', ''); @@ -291,6 +295,8 @@ $this->rc->output->set_env('kolab_folder_subtypes', $sub_types); $this->rc->output->set_env('kolab_folder_subtype', isset($new_subtype) ? $new_subtype : $subtype); + $this->add_expire_input($args'form', $args'name', $ctype); + return $args; } @@ -373,7 +379,15 @@ } } - $args'record''class' = self::folder_class_name($ctype); + // Set messages expiration in days + if ($result && isset($_POST'_expire')) { + $expire = trim(rcube_utils::get_input_value('_expire', rcube_utils::INPUT_POST)); + $expire = intval($expire) && preg_match('/^mail/', $ctype) ? intval($expire) : null; + + $storage->set_metadata($mbox, array($this->expire_annotation => $expire)); + } + + $args'record''class' = self::folder_class_name($ctype); $args'record''subscribe' = $subscribe; $args'result' = $result; @@ -699,4 +713,53 @@ { return self::$instance->get_default_folder($type); } + + /** + * Get /shared/vendor/cmu/cyrus-imapd/expire value + * + * @param string $folder IMAP folder name + * + * @return int|false The annotation value or False if not supported + */ + private function get_expire_annotation($folder) + { + $storage = $this->rc->get_storage(); + + if ($storage->get_vendor() != 'cyrus') { + return false; + } + + if (!strlen($folder)) { + return 0; + } + + $value = $storage->get_metadata($folder, $this->expire_annotation); + + if (is_array($value)) { + return $value$folder ? intval($value$folder$this->expire_annotation) : 0; + } + + return false; + } + + /** + * Add expiration time input to the form if supported + */ + private function add_expire_input(&$form, $folder, $type = null) + { + if (($expire = $this->get_expire_annotation($folder)) !== false) { + $post = trim(rcube_utils::get_input_value('_expire', rcube_utils::INPUT_POST)); + $is_mail = empty($type) || preg_match('/^mail/i', $type); + $input = new html_inputfield(array('name' => '_expire', 'size' => 3, 'disabled' => !$is_mail)); + + if ($post && $is_mail) { + $expire = (int) $post; + } + + $form'props''fieldsets''settings''content''kolabexpire' = array( + 'label' => $this->gettext('folderexpire'), + 'value' => str_replace('$x', $input->show($expire ?: ''), $this->gettext('xdays')), + ); + } + } }
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_folders/localization/el.inc
Added
@@ -0,0 +1,23 @@ +<?php +/** + * Localizations for the Kolab Folders plugin + * + * Copyright (C) 2015, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_folders/ + */ +$labels'foldertypemail' = 'Αλληλογραφία'; +$labels'foldertypeevent' = 'Ημερολόγιο'; +$labels'foldertypetask' = 'Εργασίες'; +$labels'foldertypenote' = 'Σημειώσεις'; +$labels'foldertypecontact' = 'Επαφές'; +$labels'foldertypeconfiguration' = 'Ρυθμίσεις'; +$labels'foldertypefile' = 'Αρχεία'; +$labels'default' = 'Προεπιλογή'; +$labels'inbox' = 'Εισερχόμενα'; +$labels'drafts' = 'Πρόχειρα'; +$labels'outbox' = 'Εξερχόμενα'; +$labels'wastebasket' = 'Κάδος απορριμάτων'; +$labels'confidential' = 'Εμπιστευτικό'; +$labels'private' = 'Ιδιωτικό'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_folders/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_folders/localization/en_US.inc
Changed
@@ -31,6 +31,9 @@ $labels'confidential' = 'Confidential'; $labels'private' = 'Private'; +$labels'folderexpire' = 'Delete messages older than'; +$labels'xdays' = '$x days'; + $messages'defaultfolderexists' = 'There is already default folder of specified type'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_folders/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_folders/localization/fr_FR.inc
Changed
@@ -16,7 +16,7 @@ $labels'foldertypeconfiguration' = 'Configuration'; $labels'foldertypefile' = 'Fichiers'; $labels'foldertypefreebusy' = 'Disponible/Occupé'; -$labels'default' = 'Par Défaut'; +$labels'default' = 'Par défaut'; $labels'inbox' = 'Courrier entrant'; $labels'drafts' = 'Brouillons'; $labels'sentitems' = 'Envoyés';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_folders/localization/lv.inc
Added
@@ -0,0 +1,12 @@ +<?php +/** + * Localizations for the Kolab Folders plugin + * + * Copyright (C) 2015, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_folders/ + */ +$labels'foldertypemail' = 'E-pasts'; +$labels'foldertypeevent' = 'Kalendārs'; +$labels'foldertypefile' = 'Faili'; +?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_folders/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_folders/localization/nl_NL.inc
Changed
@@ -12,17 +12,18 @@ $labels'foldertypejournal' = 'Dagboek'; $labels'foldertypetask' = 'Taken'; $labels'foldertypenote' = 'Notities'; -$labels'foldertypecontact' = 'Adresboek'; +$labels'foldertypecontact' = 'Contactpersonen'; $labels'foldertypeconfiguration' = 'Configuratie'; $labels'foldertypefile' = 'Bestanden'; -$labels'foldertypefreebusy' = 'Vrij/Bezet'; +$labels'foldertypefreebusy' = 'Beschikbaar/Bezet'; $labels'default' = 'Standaard'; -$labels'inbox' = 'Inbox'; +$labels'inbox' = 'Postvak IN'; $labels'drafts' = 'Concepten'; -$labels'sentitems' = 'Verzonden'; -$labels'outbox' = 'Te versturen'; +$labels'sentitems' = 'Verstuurd'; +$labels'outbox' = 'Postvak UIT'; $labels'wastebasket' = 'Prullenbak'; $labels'junkemail' = 'Ongewenst'; $labels'confidential' = 'Vertrouwelijk'; -$messages'defaultfolderexists' = 'Er is reeds een standaard map voor dit type inhoud'; +$labels'private' = 'Privé'; +$messages'defaultfolderexists' = 'Er is al een standaardmap van het opgegeven type'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_folders/localization/pt_PT.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_folders/localization/pt_PT.inc
Changed
@@ -7,5 +7,8 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_folders/ */ $labels'foldertypeevent' = 'Calendário'; +$labels'foldertypetask' = 'Tarefas'; +$labels'foldertypenote' = 'Notas'; +$labels'foldertypeconfiguration' = 'Configuração'; $labels'foldertypefile' = 'Ficheiros'; ?>
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_notes/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Notes module for Roundcube connecting to a Kolab server for storage", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.0", + "version": "3.3.2", "authors": { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_notes/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/localization/de_CH.inc
Changed
@@ -8,16 +8,8 @@ */ $labels'navtitle' = 'Notizen'; $labels'tags' = 'Tags'; -$labels'notes' = 'Notizen'; -$labels'created' = 'Erstellt'; -$labels'changed' = 'Geändert'; -$labels'title' = 'Titel'; -$labels'listname' = 'Name'; -$labels'tabsharing' = 'Freigabe'; -$labels'abort' = 'Abbrechen'; -$labels'removelink' = 'E-Mail-Referenz entfernen'; -$labels'savingdata' = 'Speichere...'; $labels'lists' = 'Notizbücher'; +$labels'notes' = 'Notizen'; $labels'create' = 'Neue Notiz'; $labels'createnote' = 'Neue Notiz erstellen'; $labels'send' = 'Senden'; @@ -25,12 +17,18 @@ $labels'newnote' = 'Neue Notiz'; $labels'notags' = 'Keine Schlagworte'; $labels'removetag' = 'Schlagwort entfernen'; +$labels'created' = 'Erstellt'; +$labels'changed' = 'Geändert'; +$labels'title' = 'Titel'; $labels'now' = 'Jetzt'; $labels'sortby' = 'Sortieren nach'; $labels'newnotebook' = 'Neues Notizbuch erstellen'; $labels'addnotebook' = 'Notizbuch hinzufügen'; $labels'editlist' = 'Notizbuch bearbeiten'; +$labels'listname' = 'Name'; +$labels'tabsharing' = 'Freigabe'; $labels'discard' = 'Verwerfen'; +$labels'abort' = 'Abbrechen'; $labels'unsavedchanges' = 'Nicht gespeicherte Änderungen!'; $labels'appendnote' = 'Eine Notiz hinzufügen'; $labels'editnote' = 'Notiz bearbeiten'; @@ -41,6 +39,8 @@ $labels'nrnotebooksfound' = '$nr Notizbücher gefunden'; $labels'nonotebooksfound' = 'Keine Notizbücher gefunden'; $labels'removelist' = 'Von der Liste entfernen'; +$labels'removelink' = 'E-Mail-Referenz entfernen'; +$labels'savingdata' = 'Speichere...'; $labels'recordnotfound' = 'Eintrag nicht gefunden'; $labels'norecordsfound' = 'Keine Notizen gefunden'; $labels'nochanges' = 'Keine Änderungen werden gespeichert';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/localization/el.inc
Added
@@ -0,0 +1,26 @@ +<?php +/** + * Localizations for the Kolab Folders plugin + * + * Copyright (C) 2015, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_notes/ + */ +$labels'navtitle' = 'Σημειώσεις'; +$labels'tags' = 'Ετικέτες'; +$labels'notes' = 'Σημειώσεις'; +$labels'create' = 'Νέα σημείωση'; +$labels'createnote' = 'Δημιουργία νέας σημείωσης'; +$labels'send' = 'Αποστολή'; +$labels'sendnote' = 'Αποστολή σημείωσης μέσω ηλ. αλληλογραφίας'; +$labels'newnote' = 'Νέα σημείωση'; +$labels'notags' = 'Καμία ετικέτα'; +$labels'removetag' = 'Αφαίρεση ετικέτας'; +$labels'created' = 'Δημιουργήθηκε'; +$labels'changed' = 'Τελευταία τροποποίηση'; +$labels'title' = 'Τίτλος'; +$labels'now' = 'Τώρα'; +$labels'sortby' = 'Ταξινόμηση κατά'; +$labels'listname' = 'Όνομα'; +$labels'removelist' = 'Αφαίρεση από την λίστα'; +$labels'savingdata' = 'Αποθήκευση δεδομένων...';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_notes/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/localization/en_US.inc
Changed
@@ -43,8 +43,6 @@ $labels'nonotebooksfound' = 'No notebooks found'; $labels'removelist' = 'Remove from list'; $labels'removelink' = 'Remove email reference'; -$labels'listactions' = 'List options...'; -$labels'searchterms' = 'Search terms'; $labels'savingdata' = 'Saving data...'; $labels'recordnotfound' = 'Record not found'; @@ -67,14 +65,3 @@ $labels'arialabelmessagereferences' = 'Linked email messages'; $labels'arialabelfolderearchform' = 'Notebooks search form'; $labels'arialabelnoteform' = 'Note edit form'; - -// history dialog -$labels'showhistory' = 'Show History'; -$labels'objectchangelog' = 'Change History'; -$labels'objectdiff' = 'Changes from $rev1 to $rev2'; -$labels'objectnotfound' = 'Failed to load note data'; -$labels'objectchangelognotavailable' = 'Change history is not available for this note'; -$labels'objectdiffnotavailable' = 'No comparison possible for the selected revisions'; -$labels'revisionrestoreconfirm' = 'Do you really want to restore revision $rev of this note? This will replace the current note with the old version.'; -$labels'objectrestoresuccess' = 'Revision $rev successfully restored'; -$labels'objectrestoreerror' = 'Failed to restore the old revision';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_notes/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/localization/es_ES.inc
Changed
@@ -7,13 +7,56 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_notes/ */ $labels'navtitle' = 'Notas'; +$labels'tags' = 'Etiquetas'; +$labels'lists' = 'Libro de notas'; $labels'notes' = 'Notas'; +$labels'create' = 'Nota nueva'; +$labels'createnote' = 'Crear una nota nueva'; +$labels'send' = 'Enviar'; +$labels'sendnote' = 'Enviar nota por correo electrónico'; +$labels'newnote' = 'Nota nueva'; +$labels'notags' = 'Sin etiquetas'; +$labels'removetag' = 'Eliminar etiqueta'; $labels'created' = 'Creado'; $labels'changed' = 'Última modificación'; $labels'title' = 'Título'; +$labels'now' = 'Ahora'; +$labels'sortby' = 'Ordenar por'; +$labels'newnotebook' = 'Crear una libreta de notas nueva'; +$labels'addnotebook' = 'Añadir libro de notas'; +$labels'editlist' = 'Editar libro de notas'; $labels'listname' = 'Nombre'; $labels'tabsharing' = 'Compartir'; +$labels'discard' = 'Descartar'; +$labels'abort' = 'Abortar'; +$labels'unsavedchanges' = 'Cambios sin guardar'; +$labels'appendnote' = 'Añadir una nota'; +$labels'editnote' = 'Editar nota'; +$labels'savein' = 'Guardar en'; $labels'foldersubscribe' = 'Lista Permanente'; +$labels'findnotebooks' = 'Encontrar libretas de notas...'; +$labels'listsearchresults' = 'Libretas de direcciones adicionales'; +$labels'nrnotebooksfound' = '$nr libreta de notas encontradas'; +$labels'nonotebooksfound' = 'No se han encontrado libretas de notas'; $labels'removelist' = 'Borrar de la lista'; $labels'removelink' = 'Eliminar la referencia de correo electrónico'; $labels'savingdata' = 'Guardando datos...'; +$labels'recordnotfound' = 'Registro no encontrado'; +$labels'norecordsfound' = 'notas no encontradas'; +$labels'nochanges' = 'No se han guardado los cambios'; +$labels'entertitle' = 'Introduzca un título para esta nota'; +$labels'deletenotesconfirm' = '¿Está seguro de querer borrar las notas seleccionadas?'; +$labels'deletenotebookconfirm' = '¿Está seguro de eliminar esta libreta de notas con todas sus notas? Esta acción no puede deshacerse?'; +$labels'discardunsavedchanges' = 'Aún no se ha guardado la nota actual. ¿Descartar cambios?'; +$labels'invalidlistproperties' = 'Las propiedades de la libreta de notas no son válidas. Establezca un nombre válido.'; +$labels'entertitle' = 'Introduzca un título para esta nota'; +$labels'aclnorights' = 'Usted no tiene derechos de administrador en esta libreta de notas.'; +$labels'arialabelnoteslist' = 'Lista de notas'; +$labels'arialabelnotesearchform' = 'Formulario de búsqueda de notas'; +$labels'arialabelnotesquicksearchbox' = 'Entrada de búsqueda de notas'; +$labels'arialabelnotessortmenu' = 'Opciones de clasificación de la lista de notas'; +$labels'arialabelnotesoptionsmenu' = 'Menú de acciones de la lista de notas'; +$labels'arialabelnotebookform' = 'Propiedades de la lista de notas'; +$labels'arialabelmessagereferences' = 'Mensajes de correo electrónico vinculados'; +$labels'arialabelfolderearchform' = 'Formulario de búsqueda de la libreta de notas'; +$labels'arialabelnoteform' = 'Formulario de edición de la nota';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_notes/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/localization/fr_FR.inc
Changed
@@ -17,7 +17,7 @@ $labels'newnote' = 'Nouvelle note'; $labels'notags' = 'Pas d\'étiquette'; $labels'removetag' = 'Supprimer l\'étiquette'; -$labels'created' = 'Créée'; +$labels'created' = 'Créé'; $labels'changed' = 'Dernière modification'; $labels'title' = 'Titre'; $labels'now' = 'Maintenant'; @@ -38,25 +38,25 @@ $labels'listsearchresults' = 'Carnets supplémentaires'; $labels'nrnotebooksfound' = '$nr carnets touvés'; $labels'nonotebooksfound' = 'Pas de carnet trouvé'; -$labels'removelist' = 'supprimer de la liste'; +$labels'removelist' = 'Supprimer de la liste'; $labels'removelink' = 'Supprimer référence d\'e-mail'; $labels'savingdata' = 'Enregistrer...'; $labels'recordnotfound' = 'Enregistrement non trouvé'; -$labels'norecordsfound' = 'Pas de notes trouvées'; +$labels'norecordsfound' = 'Pas de note trouvée'; $labels'nochanges' = 'Aucun changement à sauvegarder'; $labels'entertitle' = 'Saisissez un titre pour cette note !'; $labels'deletenotesconfirm' = 'Voulez-vous vraiment supprimer les notes selectionnées ?'; -$labels'deletenotebookconfirm' = 'Voulez vous vraiment supprimer ce carnet ainsi que toutes ces notes ? Cette action est irréversible.'; +$labels'deletenotebookconfirm' = 'Voulez vous vraiment supprimer ce carnet et toutes ses notes ? Cette action est irréversible.'; $labels'discardunsavedchanges' = 'Cette note n\'a pas été sauvegardée. Voulez-vous abandonner les changements ?'; $labels'invalidlistproperties' = 'Propriétés du carnet invalide. Saisissez un nom valide.'; $labels'entertitle' = 'Saisissez un titre pour cette note !'; $labels'aclnorights' = 'Vous ne disposez pas des droits pour administrer ce carnet.'; $labels'arialabelnoteslist' = 'Liste des notes'; -$labels'arialabelnotesearchform' = 'Recherche de notes avancé'; +$labels'arialabelnotesearchform' = 'Formulaire de recherche de notes'; $labels'arialabelnotesquicksearchbox' = 'Champ de recherche des notes'; $labels'arialabelnotessortmenu' = 'Options de tri de la liste de notes'; $labels'arialabelnotesoptionsmenu' = 'Menu des actions pour un carnet'; $labels'arialabelnotebookform' = 'Propriétés du carnet'; -$labels'arialabelmessagereferences' = 'Mails liés'; +$labels'arialabelmessagereferences' = 'Courriels liés'; $labels'arialabelfolderearchform' = 'Masque de recherche des carnets'; $labels'arialabelnoteform' = 'Zone d\'édition de note';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/localization/lv.inc
Added
@@ -0,0 +1,16 @@ +<?php +/** + * Localizations for the Kolab Folders plugin + * + * Copyright (C) 2015, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_notes/ + */ +$labels'created' = 'Izveidots'; +$labels'changed' = 'Mainīts'; +$labels'listname' = 'Nosaukums'; +$labels'tabsharing' = 'Dalīšanās'; +$labels'foldersubscribe' = 'Rādīt sarakstā vienmēr'; +$labels'removelist' = 'Dzēst no saraksta'; +$labels'removelink' = 'Noņemt atsauci uz e-pastu'; +$labels'savingdata' = 'Saglabājam...';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_notes/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/localization/nl_NL.inc
Changed
@@ -7,8 +7,56 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_notes/ */ $labels'navtitle' = 'Notities'; +$labels'tags' = 'Tags'; +$labels'lists' = 'Notitieblokken'; $labels'notes' = 'Notities'; +$labels'create' = 'Nieuwe notitie'; +$labels'createnote' = 'Nieuwe notitie maken'; +$labels'send' = 'Versturen'; +$labels'sendnote' = 'Notitie versturen per e-mail'; +$labels'newnote' = 'Nieuwe notitie'; +$labels'notags' = 'Geen tags'; +$labels'removetag' = 'Tag verwijderen'; +$labels'created' = 'Gemaakt op'; +$labels'changed' = 'Laatst gewijzigd op'; +$labels'title' = 'Naam'; +$labels'now' = 'Nu'; +$labels'sortby' = 'Sorteren op'; +$labels'newnotebook' = 'Nieuw notitieblok maken'; +$labels'addnotebook' = 'Notitieblok toevoegen'; +$labels'editlist' = 'Notitieblok bewerken'; $labels'listname' = 'Naam'; $labels'tabsharing' = 'Delen'; -$labels'foldersubscribe' = 'Permanent weergeven'; -$labels'savingdata' = 'Data wordt opgeslagen...'; +$labels'discard' = 'Verwijderen'; +$labels'abort' = 'Afbreken'; +$labels'unsavedchanges' = 'Niet-opgeslagen wijzigingen!'; +$labels'appendnote' = 'Notitie toevoegen'; +$labels'editnote' = 'Notitie bewerken'; +$labels'savein' = 'Opslaan in'; +$labels'foldersubscribe' = 'Definitief weergeven'; +$labels'findnotebooks' = 'Notitieblokken zoeken...'; +$labels'listsearchresults' = 'Extra notitieblokken'; +$labels'nrnotebooksfound' = '$nr notitieblokken gevonden'; +$labels'nonotebooksfound' = 'Geen notitieblokken gevonden'; +$labels'removelist' = 'Verwijderen uit lijst'; +$labels'removelink' = 'E-mailreferentie verwijderen'; +$labels'savingdata' = 'Gegevens opslaan...'; +$labels'recordnotfound' = 'Record niet gevonden'; +$labels'norecordsfound' = 'Geen notities gevonden'; +$labels'nochanges' = 'Geen wijzigingen om op te slaan'; +$labels'entertitle' = 'Voer een naam voor deze notitie in!'; +$labels'deletenotesconfirm' = 'Weet u zeker dat u de geselecteerde notities wilt verwijderen?'; +$labels'deletenotebookconfirm' = 'Weet u zeker dat u dit notitieblok met alle notities erin wilt verwijderen? Deze actie kunt u niet ongedaan maken.'; +$labels'discardunsavedchanges' = 'De huidige notitie is nog niet opgeslagen. Wilt u de wijzigingen verwijderen?'; +$labels'invalidlistproperties' = 'Ongeldige eigenschappen van notitieblok! Stel een geldige naam in.'; +$labels'entertitle' = 'Voer een naam voor deze notitie in!'; +$labels'aclnorights' = 'U hebt geen administratorrechten voor dit notitieblok.'; +$labels'arialabelnoteslist' = 'Lijst met notities'; +$labels'arialabelnotesearchform' = 'Zoekformulier voor notities'; +$labels'arialabelnotesquicksearchbox' = 'Zoekopdracht voor notities'; +$labels'arialabelnotessortmenu' = 'Sorteeropties voor lijst met notities'; +$labels'arialabelnotesoptionsmenu' = 'Actiemenu voor notitieblok'; +$labels'arialabelnotebookform' = 'Eigenschappen van notitieblok'; +$labels'arialabelmessagereferences' = 'Gekoppelde e-mailberichten'; +$labels'arialabelfolderearchform' = 'Zoekformulier voor notitieblokken'; +$labels'arialabelnoteform' = 'Formulier voor bewerking van notities';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_notes/localization/pt_BR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/localization/pt_BR.inc
Changed
@@ -8,9 +8,13 @@ */ $labels'tags' = 'Etiquetas'; $labels'notes' = 'Notas'; +$labels'created' = 'Criado'; +$labels'changed' = 'Última modificação'; $labels'title' = 'Título'; $labels'listname' = 'Nome'; $labels'tabsharing' = 'Compartilhamento'; $labels'abort' = 'Abortar'; $labels'foldersubscribe' = 'Listar permanentemente'; +$labels'removelist' = 'Remover da lista'; +$labels'removelink' = 'Remover referência do email'; $labels'savingdata' = 'Salvando dados...';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_notes/localization/pt_PT.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_notes/localization/pt_PT.inc
Changed
@@ -6,6 +6,8 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_notes/ */ +$labels'navtitle' = 'Notas'; +$labels'notes' = 'Notas'; $labels'listname' = 'Nome'; $labels'tabsharing' = 'Compartilhamento'; $labels'foldersubscribe' = 'Listar permanentemente';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_tags/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_tags/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Email tags plugin", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.0", + "version": "3.3.2", "authors": { "name": "Aleksander Machniak",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_tags/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_tags/localization/de_CH.inc
Changed
@@ -7,12 +7,6 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ */ $labels'tags' = 'Tags'; -$labels'add' = 'Hinzufügen'; -$labels'edit' = 'Bearbeiten'; -$labels'delete' = 'Löschen'; -$labels'tagname' = 'Name'; -$labels'tagcolor' = 'Farbe'; -$labels'saving' = 'Speichere...'; $labels'unset' = 'Alle abwählen'; $labels'manage' = 'Schlagworte verwalten...'; $labels'tagactions' = 'Schlagwort Aktion...'; @@ -20,9 +14,15 @@ $labels'tagremove' = 'Entferne Schlagwort..'; $labels'untag' = 'Entferne Schlagwort'; $labels'tagremoveall' = 'Entferne alle Schlagworte'; +$labels'add' = 'Hinzufügen'; +$labels'edit' = 'Bearbeiten'; +$labels'delete' = 'Löschen'; +$labels'tagname' = 'Name'; +$labels'tagcolor' = 'Farbe'; $labels'nameempty' = 'Schlagwort kann nicht leer sein!'; $labels'nameexists' = 'Das Schlagwort existiert bereits'; $labels'colorinvalid' = 'Ungültige Farbangabe'; +$labels'saving' = 'Speichere...'; $labels'updatesuccess' = 'Schlagworte wurden erfolgreich aktualisiert.'; $labels'updateerror' = 'Schlagworte konnten nicht aktualisiert werden.'; $labels'taggingsuccess' = 'Schlagwort wurde erfolgreich zugewiesen.';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_tags/localization/el.inc
Added
@@ -0,0 +1,18 @@ +<?php +/** + * Localizations for the Kolab Tags plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ + */ +$labels'tags' = 'Ετικέτες'; +$labels'unset' = 'Αναίρεση επιλογής όλων'; +$labels'tagremove' = 'Αφαίρεση ετικέτας...'; +$labels'untag' = 'Αφαίρεση ετικέτας'; +$labels'add' = 'Προσθήκη'; +$labels'edit' = 'Επεξεργασία'; +$labels'delete' = 'Διαγραφή'; +$labels'tagname' = 'Όνομα'; +$labels'tagcolor' = 'Χρώμα'; +$labels'saving' = 'Αποθήκευση δεδομένων...';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_tags/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_tags/localization/es_ES.inc
Changed
@@ -6,9 +6,28 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ */ +$labels'tags' = 'Etiquetas'; +$labels'unset' = 'Desmarcar todos'; +$labels'manage' = 'Gestionar tareas...'; +$labels'tagactions' = 'Etiquetar acciones...'; +$labels'tagadd' = 'Etiquetar como...'; +$labels'tagremove' = 'Eliminar etiqueta...'; +$labels'untag' = 'Eliminar etiqueta'; +$labels'tagremoveall' = 'Eliminar todas las etiquetas'; $labels'add' = 'Añadir'; $labels'edit' = 'Editar'; $labels'delete' = 'Borrar'; $labels'tagname' = 'Nombre'; $labels'tagcolor' = 'Color'; +$labels'nameempty' = 'El nombre de la etiqueta no puede estar vacío'; +$labels'nameexists' = 'Marcado con un nombre específicado que ya existe'; +$labels'colorinvalid' = 'Especificación del color inválida'; $labels'saving' = 'Guardando datos...'; +$labels'updatesuccess' = 'Se han actualizado las etiquetas con éxito.'; +$labels'updateerror' = 'Error al actualizar la información de las etiquetas'; +$labels'taggingsuccess' = 'Se han asignado las etiquetas con éxito.'; +$labels'taggingerror' = 'Error al asignar los datos.'; +$labels'untaggingsuccess' = 'Se han eliminado las etiquetas con éxito.'; +$labels'untaggingerror' = 'No se pudieron eliminar las asignaciones de etiquetas'; +$labels'newtag' = 'Etiqueta nueva'; +$labels'tagsearchnew' = 'Introduzca un texto para buscar o crear una etiqueta nueva';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_tags/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_tags/localization/fr_FR.inc
Changed
@@ -7,11 +7,11 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ */ $labels'tags' = 'Étiquettes'; -$labels'unset' = 'Tout déselectionner'; +$labels'unset' = 'Tout désélectionner'; $labels'manage' = 'Gestion des étiquettes...'; $labels'tagactions' = 'Actions étiquette...'; -$labels'tagadd' = 'Étiquette comme...'; -$labels'tagremove' = 'Étiqueter comme...'; +$labels'tagadd' = 'Étiqueter en tant que...'; +$labels'tagremove' = 'Supprimer l\'étiquette...'; $labels'untag' = 'Supprimer l\'étiquette'; $labels'tagremoveall' = 'Supprimer toutes les étiquettes'; $labels'add' = 'Ajouter'; @@ -29,3 +29,5 @@ $labels'taggingerror' = 'Impossible d\'affecter les étiquettes.'; $labels'untaggingsuccess' = 'Étiquette(s) supprimée(s) avec succès.'; $labels'untaggingerror' = 'Impossible de supprimer les affectations.'; +$labels'newtag' = 'Nouvelle balise'; +$labels'tagsearchnew' = 'Entrez votre texte afin de chercher ou créez une nouvelle balise';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_tags/localization/lv.inc
Added
@@ -0,0 +1,12 @@ +<?php +/** + * Localizations for the Kolab Tags plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ + */ +$labels'edit' = 'Labot'; +$labels'tagname' = 'Nosaukums'; +$labels'tagcolor' = 'Krāsa'; +$labels'saving' = 'Saglabājam...';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/kolab_tags/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/kolab_tags/localization/nl_NL.inc
Changed
@@ -6,10 +6,28 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/kolab_tags/ */ -$labels'tags' = 'Labels'; +$labels'tags' = 'Tags'; +$labels'unset' = 'Alle selecties opheffen'; +$labels'manage' = 'Tags beheren...'; +$labels'tagactions' = 'Tagacties...'; +$labels'tagadd' = 'Taggen als...'; +$labels'tagremove' = 'Tag verwijderen...'; +$labels'untag' = 'Tag verwijderen'; +$labels'tagremoveall' = 'Alle tags verwijderen'; $labels'add' = 'Toevoegen'; -$labels'edit' = 'Wijzig'; +$labels'edit' = 'Bewerken'; $labels'delete' = 'Verwijderen'; $labels'tagname' = 'Naam'; $labels'tagcolor' = 'Kleur'; -$labels'saving' = 'Data wordt opgeslagen...'; +$labels'nameempty' = 'Tagnaam mag niet leeg zijn!'; +$labels'nameexists' = 'Tag met opgegeven naam bestaat al!'; +$labels'colorinvalid' = 'Ongeldige kleurspecificatie!'; +$labels'saving' = 'Gegevens opslaan...'; +$labels'updatesuccess' = 'Tags zijn met succes bijgewerkt.'; +$labels'updateerror' = 'Bijwerken van taginformatie is mislukt.'; +$labels'taggingsuccess' = 'Tags zijn met succes toegewezen.'; +$labels'taggingerror' = 'Toewijzen van tags is mislukt.'; +$labels'untaggingsuccess' = 'Tag(s) met succes verwijderd.'; +$labels'untaggingerror' = 'Verwijderen van toegewezen tags is mislukt.'; +$labels'newtag' = 'Nieuwe tag'; +$labels'tagsearchnew' = 'Voer tekst in die u wilt zoeken of maak een nieuwe tag';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Library providing common functions for calendaring plugins", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.0", + "version": "3.3.2", "authors": { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/de_CH.inc
Changed
@@ -85,8 +85,6 @@ $labels'statusunknown' = 'Unbekannt'; $labels'statuscompleted' = 'Abgeschlossen'; $labels'statusin-process' = 'In Bearbeitung'; -$labels'delegatedto' = 'Delegiert an:'; -$labels'delegatedfrom' = 'Delegiert von:'; $labels'itipinvitation' = 'Einladung zu'; $labels'itipupdate' = 'Aktialisiert:'; $labels'itipcancellation' = 'Abgesagt:';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/de_DE.inc
Changed
@@ -33,7 +33,7 @@ $labels'triggerattimeend' = 'zur Endzeit'; $labels'relatedstart' = 'Beginn'; $labels'relatedendevent' = 'Ende'; -$labels'relatedendtask' = 'Frist'; +$labels'relatedendtask' = 'Fällig'; $labels'addalarm' = 'Erinnerung hinzufügen'; $labels'removealarm' = 'Erinnerung entfernen'; $labels'alarmtitle' = 'Anstehende Termine'; @@ -84,8 +84,6 @@ $labels'statusneeds-action' = 'Braucht Aktion'; $labels'statusunknown' = 'Unbekannt'; $labels'statuscompleted' = 'Abgeschlossen'; -$labels'delegatedto' = 'Delegiert an:'; -$labels'delegatedfrom' = 'Delegiert von:'; $labels'statusin-process' = 'In Bearbeitung'; $labels'itipinvitation' = 'Einladung zu'; $labels'itipupdate' = 'Aktialisiert:';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/el.inc
Added
@@ -0,0 +1,29 @@ +<?php +/** + * Localizations for the Kolab calendaring utilities plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ + */ +$labels'until' = 'μέχρι'; +$labels'alarmemail' = 'Αποστολή αλληλογραφίας'; +$labels'alarmdisplay' = 'Εμφάνιση μηνύματος'; +$labels'alarmaudio' = 'Αναπαραγωγή ήχου'; +$labels'alarmdisplayoption' = 'Μήνυμα'; +$labels'alarmemailoption' = 'Ηλεκτρονική αλληλογραφία'; +$labels'alarmaudiooption' = 'Ήχος'; +$labels'trigger-H' = 'ώρες πριν'; +$labels'trigger+M' = 'λεπτά μετά'; +$labels'trigger+H' = 'ώρες μετά'; +$labels'trigger+D' = 'ημέρες μετά'; +$labels'triggerend-M' = 'λεπτά πριν το τέλος'; +$labels'triggerend-H' = 'ώρες πριν το τέλος'; +$labels'triggerend-D' = 'ημέρες πριν το τέλος'; +$labels'triggerend+M' = 'λεπτά πριν το τέλος'; +$labels'triggerend+D' = 'ημέρες μετά το τέλος'; +$labels'frequency' = 'Επανάληψη'; +$labels'recurrencend' = 'μέχρι'; +$labels'statusorganizer' = 'Οργανωτής'; +$labels'statuscompleted' = 'Ολοκληρώθηκε'; +$labels'savingdata' = 'Αποθήκευση δεδομένων...';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/en_US.inc
Changed
@@ -97,8 +97,6 @@ $labels'statusunknown' = 'Unknown'; $labels'statuscompleted' = 'Completed'; $labels'statusin-process' = 'In process'; -$labels'delegatedto' = 'Delegated to: '; -$labels'delegatedfrom' = 'Delegated from: '; // itip related labels $labels'itipinvitation' = 'Invitation to';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/localization/es_AR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/es_AR.inc
Changed
@@ -80,6 +80,7 @@ $labels'statusaccepted' = 'Aceptado'; $labels'statustentative' = 'Tentativo'; $labels'statusdeclined' = 'Rechazado'; +$labels'statusdelegated' = 'Delegado'; $labels'statusneeds-action' = 'Necesita acción'; $labels'statusunknown' = 'Desconocido'; $labels'statuscompleted' = 'Completo';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/es_ES.inc
Changed
@@ -10,8 +10,10 @@ $labels'at' = 'at'; $labels'alarmemail' = 'Send Email'; $labels'alarmdisplay' = 'Show message'; +$labels'alarmaudio' = 'Reproducir sonido'; $labels'alarmdisplayoption' = 'Message'; $labels'alarmemailoption' = 'Correo electrónico'; +$labels'alarmaudiooption' = 'Sonido'; $labels'alarmat' = 'at $datetime'; $labels'trigger@' = 'on date'; $labels'trigger-M' = 'minutes before'; @@ -20,6 +22,20 @@ $labels'trigger+M' = 'minutes after'; $labels'trigger+H' = 'hours after'; $labels'trigger+D' = 'days after'; +$labels'triggerend-M' = 'minutos para finalizar'; +$labels'triggerend-H' = 'horas para finalizar'; +$labels'triggerend-D' = 'días para finalizar'; +$labels'triggerend+M' = 'minutos tras finalizar'; +$labels'triggerend+H' = 'horas tras finalizar'; +$labels'triggerend+D' = 'días tras finalizar'; +$labels'trigger0' = 'a tiempo'; +$labels'triggerattime' = 'al iniciar'; +$labels'triggerattimeend' = 'al finalizar'; +$labels'relatedstart' = 'iniciar'; +$labels'relatedendevent' = 'fin'; +$labels'relatedendtask' = 'Plazo estipulado'; +$labels'addalarm' = 'Añadir alarma'; +$labels'removealarm' = 'Eliminar alarma'; $labels'alarmtitle' = 'Upcoming events'; $labels'dismissall' = 'Dismiss all'; $labels'dismiss' = 'Dismiss'; @@ -30,6 +46,7 @@ $labels'repeattomorrow' = 'Repeat tomorrow'; $labels'repeatinweek' = 'Repeat in a week'; $labels'showmore' = 'Show more...'; +$labels'recurring' = 'Repeticiones'; $labels'frequency' = 'Repeat'; $labels'never' = 'never'; $labels'daily' = 'daily'; @@ -41,6 +58,7 @@ $labels'days' = 'day(s)'; $labels'weeks' = 'week(s)'; $labels'months' = 'month(s)'; +$labels'years' = 'año(s)'; $labels'bydays' = 'On'; $labels'untildate' = 'the'; $labels'each' = 'Each'; @@ -48,6 +66,7 @@ $labels'onsamedate' = 'On the same date'; $labels'forever' = 'forever'; $labels'recurrencend' = 'until'; +$labels'untilenddate' = 'hasta la fecha'; $labels'forntimes' = 'for $nr time(s)'; $labels'first' = 'first'; $labels'second' = 'second'; @@ -56,10 +75,85 @@ $labels'last' = 'last'; $labels'dayofmonth' = 'Day of month'; $labels'addrdate' = 'Add repeat date'; +$labels'except' = 'excepto'; $labels'statusorganizer' = 'Organizador'; +$labels'statusaccepted' = 'Aceptada'; $labels'statustentative' = 'Provisional'; +$labels'statusdeclined' = 'Rechazado'; +$labels'statusdelegated' = 'Delgado'; $labels'statusneeds-action' = 'Necesita acción'; $labels'statusunknown' = 'Desconocido'; $labels'statuscompleted' = 'Realizado'; $labels'statusin-process' = 'En proceso'; +$labels'itipinvitation' = 'Invitación para'; +$labels'itipupdate' = 'Actualización de'; +$labels'itipcancellation' = 'Cancelado:'; +$labels'itipreply' = 'Responder a'; +$labels'itipaccepted' = 'Aceptar'; +$labels'itiptentative' = 'Tal vez'; +$labels'itipdeclined' = 'Declinar'; +$labels'itipdelegated' = 'Delegado'; +$labels'itipneeds-action' = 'Posponer'; +$labels'itipcomment' = 'Su respuesta'; +$labels'itipeditresponse' = 'Introducir un texto de respuesta'; +$labels'itipsendercomment' = 'Comentario del remitente:'; +$labels'itipsuppressreply' = 'No enviar una respuesta'; +$labels'itipobjectnotfound' = 'El objeto referido en este mensaje no se encontró en su cuenta.'; +$labels'itipsubjectaccepted' = '$name ha aceptado el "$title"'; +$labels'itipsubjecttentative' = '$name aceptado provisionalmente el "$title"'; +$labels'itipsubjectdeclined' = '$name ha declinado el "$title"'; +$labels'itipsubjectin-process' = '$name está procesando el "$title"'; +$labels'itipsubjectcompleted' = '$name ha completado el "$title"'; +$labels'itipsubjectcancel' = 'Se ha cancelado su participación en "$title'; +$labels'itipsubjectdelegated' = '$name ha delegado el "$title"'; +$labels'itipsubjectdelegatedto' = '$name ha delegado en ti el "$title"'; +$labels'itipnewattendee' = 'Esta es la respuesta de un nuevo participante'; +$labels'updateattendeestatus' = 'Actualizar el estado del participante'; +$labels'acceptinvitation' = '¿Acepta esta inviitación?'; +$labels'acceptattendee' = 'Aceptar participante'; +$labels'declineattendee' = 'Declinar participante'; +$labels'declineattendeeconfirm' = 'Introduzca un mensaje para el participante rechazado (opcional):'; +$labels'rsvpmodeall' = 'Las series completas'; +$labels'rsvpmodecurrent' = 'Este caso sólo'; +$labels'rsvpmodefuture' = 'Este y los futuros casos'; +$labels'itipsingleoccurrence' = 'Se trata de un <em>caso aislado</ em> en una serie de eventos'; +$labels'itipfutureoccurrence' = 'Se refiere a <em>este y todos los casos futuros</ em> en una serie de eventos'; +$labels'itipmessagesingleoccurrence' = 'El mensaje solo hace referencia a este caso aislado'; +$labels'itipmessagefutureoccurrence' = 'El mensaje hace referencia a este y todos los casos futuros'; +$labels'youhaveaccepted' = 'Ha aceptado esta invitación'; +$labels'youhavetentative' = 'Ha aceptado esta invitación provisionalmente'; +$labels'youhavedeclined' = 'Ha declinado esta invitación'; +$labels'youhavedelegated' = 'Ha delegado esta invitación'; +$labels'youhavein-process' = 'Está trabajando en esta asignación'; +$labels'youhavecompleted' = 'Ha completado esta asignación'; +$labels'youhaveneeds-action' = 'Sigue pendiente su respuesta a esta convitación'; +$labels'youhavepreviouslyaccepted' = 'Ha aceptado esta invitación anteriormente'; +$labels'youhavepreviouslytentative' = 'Ya ha aceptado esta invitación provisionalmente'; +$labels'youhavepreviouslydeclined' = 'Ha declinado esta invitación anteriormente'; +$labels'youhavepreviouslydelegated' = 'Ha adelegado esta invitación anteriormente'; +$labels'youhavepreviouslyin-process' = 'Ya ha informado anteriormente para trabajar en esta asignación'; +$labels'youhavepreviouslycompleted' = 'Ya ha completado esta asignación'; +$labels'youhavepreviouslyneeds-action' = 'Sigue pendiente su respuesta a esta invitación'; +$labels'attendeeaccepted' = 'El participante ha aceptado'; +$labels'attendeetentative' = 'El participante ha aceptado provisionalmente'; +$labels'attendeedeclined' = 'El participante ha declinado'; +$labels'attendeedelegated' = 'El participante ha delegado en $delegatedto'; +$labels'attendeein-process' = 'El participante está en proceso'; +$labels'attendeecompleted' = 'El participante ha completado'; +$labels'notanattendee' = 'Usted no está en la lista como asistente de este proyecto'; +$labels'outdatedinvitation' = 'Esta invitación se ha sustituido por una nueva versión'; +$labels'importtocalendar' = 'Guardar en mi calendario'; +$labels'removefromcalendar' = 'Eliminar de mi calendario'; +$labels'updatemycopy' = 'Actualizar mi copia'; +$labels'openpreview' = 'Abrir vista previa'; +$labels'deleteobjectconfirm' = '¿Esta seguro de eliminar este objeto?'; +$labels'declinedeleteconfirm' = '¿También desea eliminar este objeto declinado del calendario?'; +$labels'delegateinvitation' = 'Delegar invitación'; +$labels'delegateto' = 'Delegar en'; +$labels'delegatersvpme' = 'Mantenerme informado de las actualizaciones de esta incidencia'; +$labels'delegateinvalidaddress' = 'Introduzca una dirección de correo electrónico válida para delegar'; $labels'savingdata' = 'Guardando datos...'; +$labels'expandattendeegroup' = 'Sustituir con los miembros del grupo'; +$labels'expandattendeegroupnodata' = 'No puede sustituirse este grupo. No se han encontrado miembros.'; +$labels'expandattendeegrouperror' = 'No puede sustituirse este grupo. Tal vez tenga demasiados miembros.'; +$labels'expandattendeegroupsizelimit' = 'Este grupo contiene demasiados miembros que sustituir.';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/fr_FR.inc
Changed
@@ -6,13 +6,13 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ */ -$labels'until' = 'Jusqu\'à'; +$labels'until' = 'jusqu\'à'; $labels'at' = 'à'; -$labels'alarmemail' = 'Envoyer un email'; +$labels'alarmemail' = 'Envoyer un e-mail'; $labels'alarmdisplay' = 'Voir le message'; $labels'alarmaudio' = 'Alerte sonore'; $labels'alarmdisplayoption' = 'Message'; -$labels'alarmemailoption' = 'Email'; +$labels'alarmemailoption' = 'E-mail'; $labels'alarmaudiooption' = 'Son'; $labels'alarmat' = 'à $datetime'; $labels'trigger@' = 'à la date'; @@ -22,6 +22,18 @@ $labels'trigger+M' = 'minutes après'; $labels'trigger+H' = 'heures après'; $labels'trigger+D' = 'jours après'; +$labels'triggerend-M' = 'minutes avant la fin'; +$labels'triggerend-H' = 'heures avant la fin'; +$labels'triggerend-D' = 'jours avant la fin'; +$labels'triggerend+M' = 'minutes après la fin'; +$labels'triggerend+H' = 'heures après la fin'; +$labels'triggerend+D' = 'jours après la fin'; +$labels'trigger0' = 'dans les temps'; +$labels'triggerattime' = 'au début'; +$labels'triggerattimeend' = 'à la fin'; +$labels'relatedstart' = 'début'; +$labels'relatedendevent' = 'fin'; +$labels'relatedendtask' = 'date de fin'; $labels'addalarm' = 'Ajouter une alarme'; $labels'removealarm' = 'Supprimer l\'alarme'; $labels'alarmtitle' = 'Evénements à venir'; @@ -36,12 +48,12 @@ $labels'showmore' = 'Afficher plus...'; $labels'recurring' = 'Répétitions'; $labels'frequency' = 'Répéter'; -$labels'never' = 'Jamais'; -$labels'daily' = 'Quotidienne'; -$labels'weekly' = 'Hebdomadaire'; -$labels'monthly' = 'Mensuelle'; -$labels'yearly' = 'Annuelle'; -$labels'rdate' = 'on dates'; +$labels'never' = 'jamais'; +$labels'daily' = 'quotidienne'; +$labels'weekly' = 'hebdomadaire'; +$labels'monthly' = 'mensuelle'; +$labels'yearly' = 'annuelle'; +$labels'rdate' = 'à certaines dates'; $labels'every' = 'Tous les'; $labels'days' = 'jour(s)'; $labels'weeks' = 'semaine(s)'; @@ -51,9 +63,9 @@ $labels'untildate' = 'le'; $labels'each' = 'Chaque'; $labels'onevery' = 'Tous les'; -$labels'onsamedate' = 'à la même date'; +$labels'onsamedate' = 'À la même date'; $labels'forever' = 'toujours'; -$labels'recurrencend' = 'Jusqu\'à'; +$labels'recurrencend' = 'jusqu\'à'; $labels'untilenddate' = 'jusqu\'à la date'; $labels'forntimes' = '$nr fois'; $labels'first' = 'premier'; @@ -62,17 +74,20 @@ $labels'fourth' = 'quatrième'; $labels'last' = 'dernier'; $labels'dayofmonth' = 'Jour du mois'; -$labels'addrdate' = 'Add repeat date'; +$labels'addrdate' = 'Ajoutez une date répétée'; $labels'except' = 'sauf'; $labels'statusorganizer' = 'Organisateur'; +$labels'statusaccepted' = 'Accepté'; $labels'statustentative' = 'Provisoire'; +$labels'statusdeclined' = 'Refusé'; +$labels'statusdelegated' = 'Délégué'; $labels'statusneeds-action' = 'Action exigée'; $labels'statusunknown' = 'Inconnu'; $labels'statuscompleted' = 'Terminée'; $labels'statusin-process' = 'En cours'; $labels'itipinvitation' = 'Invitation à'; $labels'itipupdate' = 'Mise à jour de'; -$labels'itipcancellation' = 'Annulation:'; +$labels'itipcancellation' = 'Annulation :'; $labels'itipreply' = 'Répondre à'; $labels'itipaccepted' = 'Accepter'; $labels'itiptentative' = 'Peut-être'; @@ -83,59 +98,59 @@ $labels'itipeditresponse' = 'Saisissez votre réponse'; $labels'itipsendercomment' = 'Commentaire des expéditeurs'; $labels'itipsuppressreply' = 'Ne pas envoyer de réponse'; -$labels'itipobjectnotfound' = 'L\'objet en lié à ce message n\'a pas été trouvé sur votre compte.'; +$labels'itipobjectnotfound' = 'L\'objet auquel il est fait référence dans ce message n\'a pas été trouvé dans votre compte.'; $labels'itipsubjectaccepted' = '"$title" a été accepté par $name'; -$labels'itipsubjecttentative' = '"$title" a été accepté provisoirement par $name'; +$labels'itipsubjecttentative' = '"$title" a provisoirement été accepté par $name'; $labels'itipsubjectdeclined' = '"$title" a été refusé par $name'; $labels'itipsubjectin-process' = '"$title" est en cours de traitement par $name'; -$labels'itipsubjectcompleted' = '"$title" a été traité par $name'; +$labels'itipsubjectcompleted' = '"$title" a été rempli par $name'; $labels'itipsubjectcancel' = 'Votre affectation à "$title" a été annulée'; $labels'itipsubjectdelegated' = '"$title$ a été délégué par $name'; $labels'itipsubjectdelegatedto' = '"$title" vous a été délégué par $name'; -$labels'itipnewattendee' = 'Ceci est une réponse d\'un nouveau participant'; -$labels'updateattendeestatus' = 'Modifier le statut des participants'; -$labels'acceptinvitation' = 'Acceptez-vous cette invitation?'; +$labels'itipnewattendee' = 'Voici la réponse d\'un nouveau participant'; +$labels'updateattendeestatus' = 'Modifier le statut du participant'; +$labels'acceptinvitation' = 'Acceptez-vous cette invitation ?'; $labels'acceptattendee' = 'Accepter l\'utilisateur'; -$labels'declineattendee' = 'Décliner l\'utilisateur'; -$labels'declineattendeeconfirm' = 'Saisissez un message pour l\'utilisateur qui décline l\'invitation (optionnel) :'; +$labels'declineattendee' = 'Refuser l\'utilisateur'; +$labels'declineattendeeconfirm' = 'Saisissez un message pour l\'utilisateur refusé (optionnel) :'; $labels'rsvpmodeall' = 'Les séries entières'; $labels'rsvpmodecurrent' = 'Cette occurrence seulement'; $labels'rsvpmodefuture' = 'Celle-ci et les occurrences futures'; $labels'itipsingleoccurrence' = 'C\'est une <em>seule occurrence</em> parmi une série d\'événements'; $labels'itipfutureoccurrence' = 'Se réfère à <em>celle-ci et à toutes les occurrences futures</em> parmi une série d\'événements'; -$labels'itipmessagesingleoccurrence' = 'Le message se réfère seulement à cette seule occurrence'; +$labels'itipmessagesingleoccurrence' = 'Le message se réfère seulement à cette occurrence'; $labels'itipmessagefutureoccurrence' = 'Le message se réfère à celle-ci et à toutes les occurrences futures'; $labels'youhaveaccepted' = 'Vous avez accepté cette invitation'; -$labels'youhavetentative' = 'Vous avez accepté provisoirement cette invitation'; +$labels'youhavetentative' = 'Vous avez provisoirement accepté cette invitation'; $labels'youhavedeclined' = 'Vous avez refusé cette invitation'; $labels'youhavedelegated' = 'Vous avez délégué cette invitation'; -$labels'youhavein-process' = 'Vous traiter cette affectation'; +$labels'youhavein-process' = 'Vous traitez cette affectation'; $labels'youhavecompleted' = 'Vous avez traité cette affectation'; $labels'youhaveneeds-action' = 'Vous êtes en attente d\'une réponse à cette invitation'; $labels'youhavepreviouslyaccepted' = 'Vous avez déjà accepté cette invitation'; $labels'youhavepreviouslytentative' = 'Vous avez déjà tenté d\'accepter cette invitation'; $labels'youhavepreviouslydeclined' = 'Vous avez déjà décliné cette invitation'; $labels'youhavepreviouslydelegated' = 'Vous avez déjà délégué cette invitation'; -$labels'youhavepreviouslyin-process' = 'Vous avez déjà signalé que vous traitez cette affectation'; +$labels'youhavepreviouslyin-process' = 'Vous avez déjà signalé que vous traitiez cette affectation'; $labels'youhavepreviouslycompleted' = 'Vous avez déjà fini le traitement de cette affectation'; -$labels'youhavepreviouslyneeds-action' = 'Vous êtes en attente de la réponse pour cette invitation'; -$labels'attendeeaccepted' = 'Cet utilisateur a accepté l\'invitaion'; +$labels'youhavepreviouslyneeds-action' = 'Vous êtes en attente de réponse pour cette invitation'; +$labels'attendeeaccepted' = 'Cet utilisateur a accepté l\'invitation'; $labels'attendeetentative' = 'Cette utilisateur tente d\'accepter l\'invitation'; $labels'attendeedeclined' = 'Cet utilisateur a décliné l\'invitation'; $labels'attendeedelegated' = 'Cet utilisateur a délégué à $delegatedto'; $labels'attendeein-process' = 'Cet utilisateur traite la tâche'; $labels'attendeecompleted' = 'Cet utilisateur a fini la tâche'; -$labels'notanattendee' = 'Vous n\'êtes pas dans la liste des participants à cet évènement'; -$labels'outdatedinvitation' = 'Cet invitation a été remplacée par une nouvelle version'; -$labels'importtocalendar' = 'Enregistrer dans mon agenda'; -$labels'removefromcalendar' = 'Supprimer de mon agenda'; +$labels'notanattendee' = 'Vous n\'êtes pas dans la liste des participants à cet événement'; +$labels'outdatedinvitation' = 'Cette invitation a été remplacée par une nouvelle version'; +$labels'importtocalendar' = 'Enregistrer dans mon calendrier'; +$labels'removefromcalendar' = 'Supprimer de mon calendrier'; $labels'updatemycopy' = 'Mise à jour de ma copie'; $labels'openpreview' = 'Ouvrir la prévisualisation'; $labels'deleteobjectconfirm' = 'Voulez-vous vraiment supprimer cet objet ?'; $labels'declinedeleteconfirm' = 'Voulez-vous supprimer cet objet décliné de votre compte ?'; $labels'delegateinvitation' = 'Invitation à déléguer'; $labels'delegateto' = 'Déléguer à '; -$labels'delegatersvpme' = 'Me tenir informé des mises à jours de cet effet'; +$labels'delegatersvpme' = 'Me tenir informé des mises à jour de cet effet'; $labels'delegateinvalidaddress' = 'Entrer une adresse électronique valide pour le délégué'; $labels'savingdata' = 'Enregistrer...'; $labels'expandattendeegroup' = 'Remplacement par les membres du groupe';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/lv.inc
Added
@@ -0,0 +1,161 @@ +<?php +/** + * Localizations for the Kolab calendaring utilities plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ + */ +$labels'until' = 'līdz'; +$labels'at' = ' '; +$labels'alarmemail' = 'Nosūtīt e-pastu'; +$labels'alarmdisplay' = 'Parādīt paziņojumu'; +$labels'alarmaudio' = 'Spēlēt skaņu'; +$labels'alarmdisplayoption' = 'Paziņojums'; +$labels'alarmemailoption' = 'E-pasts'; +$labels'alarmaudiooption' = 'Skaņa'; +$labels'alarmat' = '$datetime'; +$labels'trigger@' = 'tieši šai datumā'; +$labels'trigger-M' = 'minūtes pirms'; +$labels'trigger-H' = 'stundas pirms'; +$labels'trigger-D' = 'dienas pirms'; +$labels'trigger+M' = 'minūtes pēc'; +$labels'trigger+H' = 'stundas pēc'; +$labels'trigger+D' = 'dienas pēc'; +$labels'triggerend-M' = 'minūtes pirms beigām'; +$labels'triggerend-H' = 'stundas pirms beigām'; +$labels'triggerend-D' = 'dienas pirms beigām'; +$labels'triggerend+M' = 'minūtes pēc beigām'; +$labels'triggerend+H' = 'stundas pēc beigām'; +$labels'triggerend+D' = 'dienas pēc beigām'; +$labels'trigger0' = 'tieši laikā'; +$labels'triggerattime' = 'sākumā'; +$labels'triggerattimeend' = 'beigās'; +$labels'relatedstart' = 'sākums'; +$labels'relatedendevent' = 'beigas'; +$labels'relatedendtask' = 'ilgums'; +$labels'addalarm' = 'Pievienot atgādinājumu'; +$labels'removealarm' = 'Noņemt atgādinājumu'; +$labels'alarmtitle' = 'Tuvojošies notikumi'; +$labels'dismissall' = 'Aizmirst visus'; +$labels'dismiss' = 'Aizmirst'; +$labels'snooze' = 'Iesnausties'; +$labels'repeatinmin' = 'Atgādināt $min minūtes pirms'; +$labels'repeatinhr' = 'Atgādināt 1 stundu pirms'; +$labels'repeatinhrs' = 'Atgādināt $hrs stundas pirms'; +$labels'repeattomorrow' = 'Atgādināt rīt'; +$labels'repeatinweek' = 'Atgādināt pēc nedēļas'; +$labels'showmore' = 'Parādīt vairāk ...'; +$labels'recurring' = 'Atkārtojumi'; +$labels'frequency' = 'Atkārtot'; +$labels'never' = 'nekad'; +$labels'daily' = 'ikdienas'; +$labels'weekly' = 'iknedēļas'; +$labels'monthly' = 'ikmēneša'; +$labels'yearly' = 'ikgadējs'; +$labels'rdate' = 'datumos'; +$labels'every' = 'Katrā'; +$labels'days' = 'dienā(-s)'; +$labels'weeks' = 'nedēļā(-s)'; +$labels'months' = 'mēnesī(-šos)'; +$labels'years' = 'gadā(-os)'; +$labels'bydays' = ' '; +$labels'untildate' = ' '; +$labels'each' = 'Katru'; +$labels'onevery' = 'Katrā'; +$labels'onsamedate' = 'Tai pašā dienā'; +$labels'forever' = 'bezgalīgi'; +$labels'recurrencend' = 'līdz'; +$labels'untilenddate' = 'līdz datumam'; +$labels'forntimes' = '$nr reizi(-es)'; +$labels'first' = 'pirmā'; +$labels'second' = 'otrā'; +$labels'third' = 'trešā'; +$labels'fourth' = 'ceturtā'; +$labels'last' = 'pēdējā'; +$labels'dayofmonth' = 'Mēneša diena'; +$labels'addrdate' = 'Pievienot atkārtošanas datumu'; +$labels'except' = 'izņemot'; +$labels'statusorganizer' = 'Organizētājs'; +$labels'statusaccepted' = 'Pieņemts'; +$labels'statustentative' = 'Varbūt'; +$labels'statusdeclined' = 'Noraidīts'; +$labels'statusdelegated' = 'Deleģēts'; +$labels'statusneeds-action' = 'Nepieciešama darbība'; +$labels'statusunknown' = 'Nezināms'; +$labels'statuscompleted' = 'Pabeigts'; +$labels'statusin-process' = 'Procesā'; +$labels'itipinvitation' = 'Uzaicinājums uz'; +$labels'itipupdate' = 'Izmaiņas'; +$labels'itipcancellation' = 'Atcelts:'; +$labels'itipreply' = 'Atbildēt:'; +$labels'itipaccepted' = 'Pieņemt'; +$labels'itiptentative' = 'Varbūt'; +$labels'itipdeclined' = 'Noraidīt'; +$labels'itipdelegated' = 'Deleģēt'; +$labels'itipneeds-action' = 'Aizturēt'; +$labels'itipcomment' = 'Jūsu atbilde'; +$labels'itipeditresponse' = 'Ievadiet atbildes tekstu'; +$labels'itipsendercomment' = 'Sūtītāja piezīmes:'; +$labels'itipsuppressreply' = 'Nesūtīt atbildi'; +$labels'itipobjectnotfound' = 'Nav atrodams objekts uz ko atsaucas šis ziņojums '; +$labels'itipsubjectaccepted' = '$name pieņēma "$title"'; +$labels'itipsubjecttentative' = '$name akceptēja varbūtēju dalību "$title"'; +$labels'itipsubjectdeclined' = ' +$name noraidīja "$title" +'; +$labels'itipsubjectin-process' = '$name apstrādā "$title"'; +$labels'itipsubjectcompleted' = '$name pabeidza "$title"'; +$labels'itipsubjectcancel' = 'Jūsu dalība "$title" tika atcelta'; +$labels'itipsubjectdelegated' = '$name deleģēja "$title"'; +$labels'itipsubjectdelegatedto' = '$name deleģēja jums "$title"'; +$labels'itipnewattendee' = 'Šī ir atbilde no jauna dalībnieka'; +$labels'updateattendeestatus' = 'Atjaunot dalībnieka statusu'; +$labels'acceptinvitation' = 'Vai pieņemat šo uzaicinājumu?'; +$labels'acceptattendee' = 'Pievienot dalībnieku'; +$labels'declineattendee' = 'Noraidīt dalībnieku'; +$labels'declineattendeeconfirm' = 'Ievadiet (neobligātu) ziņojumu noraidītajam dalībniekam:'; +$labels'rsvpmodeall' = 'Visa virkne'; +$labels'rsvpmodecurrent' = 'Tikai šai reizē'; +$labels'rsvpmodefuture' = 'Šai un nākošajās reizēs'; +$labels'itipsingleoccurrence' = 'Šis ir <em>vienreizējs</em> notikums no virknes'; +$labels'itipfutureoccurrence' = 'Attiecas uz <em>šo un visām nākamajām</em> notikuma reizēm'; +$labels'itipmessagesingleoccurrence' = 'Ziņojums attiecas tikai uz šo vienu reizi'; +$labels'itipmessagefutureoccurrence' = 'Ziņojums attiecas uz šo un visām nākamajām reizēm'; +$labels'youhaveaccepted' = 'Jūs pieņēmāt šo uzaicinājumu'; +$labels'youhavetentative' = 'Jūs varbūtēji akceptējāt šo uzaicinājumu'; +$labels'youhavedeclined' = 'Jūs noraidījāt šo uzaicinājumu'; +$labels'youhavedelegated' = 'Jūs deleģējāt šo uzaicinājumu'; +$labels'youhavein-process' = 'Jūs strādājat pie šī norīkojuma'; +$labels'youhavecompleted' = 'Jūs esat pabeidzis šo norīkojumu'; +$labels'youhaveneeds-action' = 'Tiek gaidīta jūsu atbilde uz šo uzaicinājumu'; +$labels'youhavepreviouslyaccepted' = 'Jūs jau bijāt pieņēmis šo uzaicinājumu'; +$labels'youhavepreviouslytentative' = 'Jūs jau bijāt varbūtēji akceptējis šo uzaicinājumu'; +$labels'youhavepreviouslydeclined' = 'Jūs jau bijāt noraidījis šo uzaicinājumu'; +$labels'youhavepreviouslydelegated' = 'Jūs jau bijāt deleģējis šo uzaicinājumu'; +$labels'youhavepreviouslyin-process' = 'Jūs jau esat ziņojis par veikto darbu šai norīkojumā'; +$labels'youhavepreviouslycompleted' = 'Jūs jau agrāk esat izpildījis šo norīkojumu'; +$labels'youhavepreviouslyneeds-action' = 'Tiek gaidīta jūsu atbilde uz šo uzaicinājumu'; +$labels'attendeeaccepted' = 'Dalībnieks pieņēma'; +$labels'attendeetentative' = 'Dalībnieks varbūtēji pieņēma'; +$labels'attendeedeclined' = 'Dalībnieks noraidīja'; +$labels'attendeedelegated' = 'Dalībnieks deleģēja $delegatedto'; +$labels'attendeein-process' = 'Dalībnieks apstrādā'; +$labels'attendeecompleted' = 'Dalībnieks beidza apstrādi'; +$labels'notanattendee' = 'Jūs neesat šī objekta dalībnieku sarakstā'; +$labels'outdatedinvitation' = 'Šis uzaicinājums ir aizstāts ar jaunāku versiju'; +$labels'importtocalendar' = 'Saglabāt manā kalendārā'; +$labels'removefromcalendar' = 'Dzēst no mana kalendāra'; +$labels'updatemycopy' = 'Jaunināt manu kopiju'; +$labels'openpreview' = 'Atvērt priekšskatu'; +$labels'deleteobjectconfirm' = 'Vai tiešām vēlaties dzēst šo objektu?'; +$labels'declinedeleteconfirm' = 'Vai jūs vēlaties arī dzēst šo noraidīto uzaicinājumu no sava konta?'; +$labels'delegateinvitation' = 'Deleģēt uzaicinājumu'; +$labels'delegateto' = 'Deleģēt'; +$labels'delegatersvpme' = 'Informēt mani par šī notikuma izmaiņām'; +$labels'delegateinvalidaddress' = 'Lūdzu ievadiet derīgu e-pasta adresi, kam jūs deleģējat'; +$labels'savingdata' = 'Saglabājam...'; +$labels'expandattendeegroup' = 'Aizstāt ar grupas locekļiem'; +$labels'expandattendeegroupnodata' = 'Grupu nevar aizstāt. Tajā nav neviena locekļa.'; +$labels'expandattendeegrouperror' = 'Grupu nevar aizstāt. Tajā ir pārāk daudz locekļu.'; +$labels'expandattendeegroupsizelimit' = 'Grupu nevar aizstāt. Tajā ir pārāk daudz locekļu.';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/nl_NL.inc
Changed
@@ -8,10 +8,12 @@ */ $labels'until' = 'tot'; $labels'at' = 'om'; -$labels'alarmemail' = 'Verzend E-mail'; +$labels'alarmemail' = 'E-mail versturen'; $labels'alarmdisplay' = 'Bericht weergeven'; +$labels'alarmaudio' = 'Geluid afspelen'; $labels'alarmdisplayoption' = 'Bericht'; $labels'alarmemailoption' = 'E-mail'; +$labels'alarmaudiooption' = 'Geluid'; $labels'alarmat' = 'op $datetime'; $labels'trigger@' = 'op datum'; $labels'trigger-M' = 'minuten voor'; @@ -20,32 +22,51 @@ $labels'trigger+M' = 'minuten na'; $labels'trigger+H' = 'uren na'; $labels'trigger+D' = 'dagen na'; -$labels'alarmtitle' = 'Aankomende evenementen'; -$labels'repeatinmin' = 'Herhaal over $min minuten'; -$labels'repeatinhr' = 'Herhaal over 1 uur'; -$labels'repeatinhrs' = 'Herhaal over $hrs uur'; -$labels'repeattomorrow' = 'Herhaal morgen'; -$labels'repeatinweek' = 'Herhaal over een week'; -$labels'showmore' = 'Toon meer...'; -$labels'frequency' = 'Herhaal'; +$labels'triggerend-M' = 'minuten vóór einde'; +$labels'triggerend-H' = 'uren vóór einde'; +$labels'triggerend-D' = 'dagen vóór einde'; +$labels'triggerend+M' = 'minuten na einde'; +$labels'triggerend+H' = 'uren na einde'; +$labels'triggerend+D' = 'dagen na einde'; +$labels'trigger0' = 'op tijd'; +$labels'triggerattime' = 'op begintijd'; +$labels'triggerattimeend' = 'op eindtijd'; +$labels'relatedstart' = 'begin'; +$labels'relatedendevent' = 'einde'; +$labels'relatedendtask' = 'vervaltijd'; +$labels'addalarm' = 'Herinnering toevoegen'; +$labels'removealarm' = 'Herinnering verwijderen'; +$labels'alarmtitle' = 'Geplande activiteiten'; +$labels'dismissall' = 'Alles negeren'; +$labels'dismiss' = 'Negeren'; +$labels'snooze' = 'Uitstellen'; +$labels'repeatinmin' = 'Binnen $min minuten herhalen'; +$labels'repeatinhr' = 'Binnen 1 uur herhalen'; +$labels'repeatinhrs' = 'Binnen $hrs uren herhalen'; +$labels'repeattomorrow' = 'Morgen herhalen'; +$labels'repeatinweek' = 'Binnen een week herhalen'; +$labels'showmore' = 'Meer tonen...'; +$labels'recurring' = 'Herhalingen'; +$labels'frequency' = 'Herhalen'; $labels'never' = 'nooit'; -$labels'daily' = 'dagelijks'; -$labels'weekly' = 'wekelijks'; -$labels'monthly' = 'maandelijks'; -$labels'yearly' = 'jaarlijks'; +$labels'daily' = 'elke dag'; +$labels'weekly' = 'elke week'; +$labels'monthly' = 'elke maand'; +$labels'yearly' = 'elk jaar'; $labels'rdate' = 'op datums'; $labels'every' = 'Elke'; $labels'days' = 'dag(en)'; $labels'weeks' = 'week / weken'; $labels'months' = 'maand(en)'; -$labels'years' = 'ja(a)r(en) in:'; +$labels'years' = 'jaar (jaren)'; $labels'bydays' = 'Op'; $labels'untildate' = 'de'; $labels'each' = 'Elke'; $labels'onevery' = 'Op elke'; $labels'onsamedate' = 'Op dezelfde datum'; -$labels'forever' = 'oneindig'; +$labels'forever' = 'voor altijd'; $labels'recurrencend' = 'tot'; +$labels'untilenddate' = 'tot datum'; $labels'forntimes' = 'voor $nr keer'; $labels'first' = 'eerste'; $labels'second' = 'tweede'; @@ -53,42 +74,86 @@ $labels'fourth' = 'vierde'; $labels'last' = 'laatste'; $labels'dayofmonth' = 'Dag van de maand'; -$labels'addrdate' = 'Voeg herhaal datum toe'; -$labels'statusorganizer' = 'Organisatie'; +$labels'addrdate' = 'Herhaaldatum toevoegen'; +$labels'except' = 'behalve'; +$labels'statusorganizer' = 'Organisator'; +$labels'statusaccepted' = 'Geaccepteerd'; $labels'statustentative' = 'Misschien'; -$labels'statusneeds-action' = 'Needs action'; +$labels'statusdeclined' = 'Afgeslagen'; +$labels'statusdelegated' = 'Gedelegeerd'; +$labels'statusneeds-action' = 'Actie vereist'; $labels'statusunknown' = 'Onbekend'; -$labels'statuscompleted' = 'Completed'; -$labels'statusin-process' = 'In process'; +$labels'statuscompleted' = 'Voltooid'; +$labels'statusin-process' = 'In behandeling'; $labels'itipinvitation' = 'Uitnodiging voor'; $labels'itipupdate' = 'Update van'; -$labels'itipcancellation' = 'Afgelast:'; -$labels'itipaccepted' = 'Accepteer'; +$labels'itipcancellation' = 'Geannuleerd:'; +$labels'itipreply' = 'Antwoord aan'; +$labels'itipaccepted' = 'Accepteren'; $labels'itiptentative' = 'Misschien'; -$labels'itipdeclined' = 'Afwijzen'; +$labels'itipdeclined' = 'Afslaan'; $labels'itipdelegated' = 'Gedelegeerde'; +$labels'itipneeds-action' = 'Uitstellen'; $labels'itipcomment' = 'Uw antwoord'; -$labels'itipeditresponse' = 'Voeg een antwoord tekst toe'; -$labels'itipsendercomment' = 'Opmerking van verzender:'; -$labels'itipobjectnotfound' = 'Het object waaraan in dit bericht wordt gerefereerd is niet gevonden in uw account.'; +$labels'itipeditresponse' = 'Typ het antwoord'; +$labels'itipsendercomment' = 'Opmerking van afzender:'; +$labels'itipsuppressreply' = 'Geen antwoord sturen'; +$labels'itipobjectnotfound' = 'Het object uit dit bericht is niet in uw account gevonden.'; $labels'itipsubjectaccepted' = '"$title" is geaccepteerd door $name'; +$labels'itipsubjecttentative' = '"$title" is onder voorbehoud geaccepteerd door $name'; +$labels'itipsubjectdeclined' = '"$title" is afgeslagen door $name'; +$labels'itipsubjectin-process' = '"$title" wordt behandeld door $name'; +$labels'itipsubjectcompleted' = '"$title" is voltooid door $name'; $labels'itipsubjectcancel' = 'Uw deelname aan "$title" is geannuleerd'; +$labels'itipsubjectdelegated' = '"$title" is gedelegeerd door $name'; +$labels'itipsubjectdelegatedto' = '"$title" is door $name gedelegeerd aan u'; $labels'itipnewattendee' = 'Dit is een antwoord van een nieuwe deelnemer'; -$labels'updateattendeestatus' = 'Update status van deelnemer'; -$labels'acceptinvitation' = 'Accepteer je deze uitnodiging?'; -$labels'acceptattendee' = 'Accepteer deelnemer'; -$labels'declineattendee' = 'Afwijzen deelnemer'; +$labels'updateattendeestatus' = 'Status van deelnemer bijwerken'; +$labels'acceptinvitation' = 'Accepteert u deze uitnodiging?'; +$labels'acceptattendee' = 'Deelnemer accepteren'; +$labels'declineattendee' = 'Deelnemer afwijzen'; $labels'declineattendeeconfirm' = 'Voeg een bericht toe voor de afgewezen deelnemer (optioneel):'; -$labels'youhaveaccepted' = 'Je hebt de uitnodiging geaccepteerd'; -$labels'youhavedeclined' = 'Je hebt deze uitnodiging afgewezen'; -$labels'youhavedelegated' = 'U heeft deze uitnodiging gedelegeerd'; +$labels'rsvpmodeall' = 'De gehele reeks'; +$labels'rsvpmodecurrent' = 'Alleen deze activiteit'; +$labels'rsvpmodefuture' = 'Deze en toekomstige activiteiten'; +$labels'itipsingleoccurrence' = 'Dit is <em>een enkele activiteit</em> uit een reeks activiteiten'; +$labels'itipfutureoccurrence' = 'Verwijst naar <em>deze en alle toekomstige activiteiten</em> uit een reeks activiteiten'; +$labels'itipmessagesingleoccurrence' = 'Het bericht verwijst alleen naar deze activiteit'; +$labels'itipmessagefutureoccurrence' = 'Het bericht verwijst naar deze en alle toekomstige activiteiten'; +$labels'youhaveaccepted' = 'U hebt deze uitnodiging geaccepteerd'; +$labels'youhavetentative' = 'U hebt deze uitnodiging onder voorbehoud geaccepteerd'; +$labels'youhavedeclined' = 'U hebt deze uitnodiging afgeslagen'; +$labels'youhavedelegated' = 'U hebt deze uitnodiging gedelegeerd'; +$labels'youhavein-process' = 'U werkt momenteel aan deze opdracht'; +$labels'youhavecompleted' = 'U hebt deze opdracht voltooid'; +$labels'youhaveneeds-action' = 'U hebt deze uitnodiging nog niet beantwoord'; +$labels'youhavepreviouslyaccepted' = 'U hebt deze uitnodiging eerder al geaccepteerd'; +$labels'youhavepreviouslytentative' = 'U hebt deze uitnodiging eerder al onder voorbehoud geaccepteerd'; +$labels'youhavepreviouslydeclined' = 'U hebt deze uitnodiging eerder al afgeslagen'; +$labels'youhavepreviouslydelegated' = 'U hebt deze uitnodiging eerder al gedelegeerd'; +$labels'youhavepreviouslyin-process' = 'U hebt eerder al gemeld dat u aan deze opdracht werkt'; +$labels'youhavepreviouslycompleted' = 'U hebt deze opdracht eerder al voltooid'; +$labels'youhavepreviouslyneeds-action' = 'U hebt deze uitnodiging nog niet beantwoord'; $labels'attendeeaccepted' = 'Deelnemer heeft geaccepteerd'; -$labels'attendeetentative' = 'Deelnemer heeft voorwaardelijk geaccepteerd'; -$labels'attendeedeclined' = 'Deelnemer heeft afgewezen '; -$labels'attendeedelegated' = 'Deelnemer heeft gedelegeerd aan '; -$labels'importtocalendar' = 'Bewaar in mijn kalender'; -$labels'removefromcalendar' = 'Verwijder van mijn kalender'; -$labels'updatemycopy' = 'Wijzig mijn kopie'; -$labels'deleteobjectconfirm' = 'Wilt u echt dit object verwijderen?'; -$labels'declinedeleteconfirm' = 'Wilt u tevens deze afgewezen object verwijderen uit uw kalender?'; -$labels'savingdata' = 'Data wordt opgeslagen...'; +$labels'attendeetentative' = 'Deelnemer heeft onder voorbehoud geaccepteerd'; +$labels'attendeedeclined' = 'Deelnemer heeft afgeslagen'; +$labels'attendeedelegated' = 'Deelnemer heeft gedelegeerd aan $delegatedto'; +$labels'attendeein-process' = 'De deelnemer heeft de status gewijzigd in ‘In behandeling’'; +$labels'attendeecompleted' = 'De deelnemer heeft de status gewijzigd in ‘Voltooid’'; +$labels'notanattendee' = 'U staat niet op de lijst met deelnemers aan deze activiteit'; +$labels'outdatedinvitation' = 'Deze uitnodiging is vervangen door een nieuwere versie'; +$labels'importtocalendar' = 'Opslaan in mijn agenda'; +$labels'removefromcalendar' = 'Verwijderen uit mijn agenda'; +$labels'updatemycopy' = 'Mijn exemplaar bijwerken'; +$labels'openpreview' = 'Voorbeeld openen'; +$labels'deleteobjectconfirm' = 'Weet u zeker dat u dit object wilt verwijderen?'; +$labels'declinedeleteconfirm' = 'Wilt u dit afgewezen object ook verwijderen uit uw account?'; +$labels'delegateinvitation' = 'Uitnodiging delegeren'; +$labels'delegateto' = 'Delegeren aan'; +$labels'delegatersvpme' = 'Houd me op de hoogte over updates voor deze incidentie'; +$labels'delegateinvalidaddress' = 'Voer een geldig e-mailadres voor de gedelegeerde in'; +$labels'savingdata' = 'Gegevens opslaan...'; +$labels'expandattendeegroup' = 'Vervangen door groepsleden'; +$labels'expandattendeegroupnodata' = 'Deze groep kan niet worden vervangen. Geen leden gevonden.'; +$labels'expandattendeegrouperror' = 'Deze groep kan niet worden vervangen. De groep bevat mogelijk te veel leden.'; +$labels'expandattendeegroupsizelimit' = 'Deze groep bevat te veel leden om te vervangen.';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/localization/pt_PT.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/pt_PT.inc
Changed
@@ -7,6 +7,7 @@ * For translation see https://www.transifex.com/projects/p/kolab/resource/libcalendaring/ */ $labels'until' = 'até'; +$labels'alarmemailoption' = 'Email'; $labels'frequency' = 'Repetir'; $labels'recurrencend' = 'até'; $labels'statusorganizer' = 'Organizador';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libcalendaring/localization/ru_RU.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libcalendaring/localization/ru_RU.inc
Changed
@@ -33,6 +33,8 @@ $labels'triggerattimeend' = 'в момент окончания'; $labels'relatedstart' = 'начало'; $labels'relatedendevent' = 'окончание'; +$labels'relatedendtask' = 'срок'; +$labels'addalarm' = 'Добавить напоминание'; $labels'removealarm' = 'Удалить уведомление'; $labels'alarmtitle' = 'Предстоящие события'; $labels'dismissall' = 'Отменить все'; @@ -75,7 +77,10 @@ $labels'addrdate' = 'Add repeat date'; $labels'except' = 'исключая'; $labels'statusorganizer' = 'Организатор'; +$labels'statusaccepted' = 'Принято'; $labels'statustentative' = 'Неопределённо'; +$labels'statusdeclined' = 'Отклонено'; +$labels'statusdelegated' = 'Поручено'; $labels'statusneeds-action' = 'Требует действия'; $labels'statusunknown' = 'Неизвестно'; $labels'statuscompleted' = 'Завершенные'; @@ -105,6 +110,8 @@ $labels'itipnewattendee' = 'Это ответ от нового участника'; $labels'updateattendeestatus' = 'Обновить статус участника'; $labels'acceptinvitation' = 'Вы принимаете это приглашение?'; +$labels'acceptattendee' = 'Добавить участника'; +$labels'declineattendee' = 'Удалить участника'; $labels'declineattendeeconfirm' = 'Введите сообщение для отклонённого участника (не обязательно):'; $labels'rsvpmodeall' = 'Вся серия'; $labels'rsvpmodecurrent' = 'Только это событие'; @@ -127,6 +134,7 @@ $labels'youhavepreviouslyin-process' = 'Вы уже предоставили отчет о проделанной работе на это задание'; $labels'youhavepreviouslycompleted' = 'Вы уже завершили это задание'; $labels'youhavepreviouslyneeds-action' = 'Ваш ответ на это приглашение всё ещё ожидается'; +$labels'attendeeaccepted' = 'Участник принял'; $labels'attendeetentative' = 'Участник предварительно принял приглашение'; $labels'attendeedeclined' = 'Участник отказался от приглашения'; $labels'attendeedelegated' = 'Участник делегировал приглашение $delegatedto';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libkolab/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libkolab/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Plugin to setup a basic environment for the interaction with a Kolab server.", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.1", + "version": "3.3.2", "authors": { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libkolab/lib/kolab_storage.php -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libkolab/lib/kolab_storage.php
Changed
@@ -836,13 +836,7 @@ $regexp = '/^' . preg_quote($filter, '/') . '(\..+)?$/'; // get folders types for all folders - if (!$subscribed || $prefix == '*' || !self::$config->get('kolab_skip_namespace')) { - $folderdata = self::folders_typedata($prefix); - } - else { - // fetch folder types for the effective list of (subscribed) folders when post-filtering - $folderdata = array(); - } + $folderdata = self::folders_typedata($prefix); if (!is_array($folderdata)) { return array(); @@ -874,11 +868,6 @@ // Filter folders list foreach ($folders as $idx => $folder) { - // lookup folder type - if (!array_key_exists($folder, $folderdata)) { - $folderdata$folder = self::folder_type($folder); - } - $type = $folderdata$folder; if ($filter == 'mail' && empty($type)) {
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libkolab/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libkolab/localization/cs_CZ.inc
Changed
@@ -13,10 +13,13 @@ $labels'revision' = 'Revize'; $labels'user' = 'Uživatel'; $labels'operation' = 'Činnost'; +$labels'actionreceive' = 'Přijato'; $labels'actionappend' = 'Uloženo'; $labels'actionmove' = 'Přesunuto'; $labels'actiondelete' = 'Smazáno'; $labels'actionread' = 'Označeno jako přečtené'; +$labels'actionflagset' = 'Příznak nastaven'; +$labels'actionflagclear' = 'Příznak odstraněn'; $labels'showrevision' = 'Ukázat tuto verzi'; $labels'restore' = 'Obnovit tuto verzi'; -$labels'objectchangelognotavailable' = 'Pro tuto zprávu není historie k dispozici'; +$labels'objectchangelognotavailable' = 'Pro tuto zprávu není historie dostupná';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libkolab/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libkolab/localization/de_DE.inc
Changed
@@ -6,9 +6,9 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/libkolab/ */ -$labels'showhistory' = 'Historie anzeigen'; +$labels'showhistory' = 'Verlauf anzeigen'; $labels'compare' = 'Vergleichen'; -$labels'objectchangelog' = 'Historie'; +$labels'objectchangelog' = 'Verlauf'; $labels'objectdiff' = 'Änderungen aus $rev1 nach $rev2'; $labels'revision' = 'Version'; $labels'user' = 'Benutzer'; @@ -22,4 +22,4 @@ $labels'actionflagclear' = 'Markierung entfernt'; $labels'showrevision' = 'Diese Version anzeigen'; $labels'restore' = 'Diese Version wiederherstellen'; -$labels'objectchangelognotavailable' = 'Änderungshistorie ist nicht verfügbar für diese Nachricht'; +$labels'objectchangelognotavailable' = 'Änderungsverlauf ist nicht verfügbar für diese Nachricht';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libkolab/localization/el.inc
Added
@@ -0,0 +1,16 @@ +<?php +/** + * Localizations for the Kolab libkolab plugin + * + * Copyright (C) 2015, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/libkolab/ + */ +$labels'showhistory' = 'Προβολή ιστορικού'; +$labels'compare' = 'Σύγκριση'; +$labels'objectchangelog' = 'Ιστορικό'; +$labels'user' = 'Χρήστης'; +$labels'operation' = 'Ενέργεια'; +$labels'actionreceive' = 'Ληφθέντα'; +$labels'actionappend' = 'Αποθηκεύτηκε'; +$labels'actiondelete' = 'Διαγραμμένα';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libkolab/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libkolab/localization/es_ES.inc
Changed
@@ -6,13 +6,20 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/libkolab/ */ +$labels'showhistory' = 'Mostrar historial'; $labels'compare' = 'Comparar'; $labels'objectchangelog' = 'Historia'; $labels'objectdiff' = 'Cambiar de $rev1 a $rev2'; +$labels'revision' = 'Revisión'; $labels'user' = 'Usuario'; $labels'operation' = 'Acción'; +$labels'actionreceive' = 'Recibido'; $labels'actionappend' = 'Salvado'; $labels'actionmove' = 'Movido'; $labels'actiondelete' = 'Borrado'; +$labels'actionread' = 'Marcado como leído'; +$labels'actionflagset' = 'Marca establecita'; +$labels'actionflagclear' = 'Marca eliminada'; $labels'showrevision' = 'Mostrar esta versión'; $labels'restore' = 'Restaurar esta versión'; +$labels'objectchangelognotavailable' = 'El historial no está disponible para este mensaje';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libkolab/localization/lv.inc
Added
@@ -0,0 +1,10 @@ +<?php +/** + * Localizations for the Kolab libkolab plugin + * + * Copyright (C) 2015, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/libkolab/ + */ +$labels'objectchangelog' = 'Vēsture'; +$labels'objectdiff' = 'Izmaiņas no $rev1 uz $rev2';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libkolab/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libkolab/localization/nl_NL.inc
Changed
@@ -6,8 +6,10 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/libkolab/ */ +$labels'showhistory' = 'Geschiedenis tonen'; $labels'compare' = 'Vergelijken'; $labels'objectchangelog' = 'Geschiedenis'; +$labels'objectdiff' = 'Wijzigingen van $rev1 tot $rev2'; $labels'user' = 'Gebruiker'; $labels'actionappend' = 'Opgeslagen'; $labels'actionmove' = 'Verplaatst';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/libkolab/localization/pt_BR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/libkolab/localization/pt_BR.inc
Changed
@@ -6,5 +6,6 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/libkolab/ */ +$labels'objectchangelog' = 'História'; $labels'user' = 'Usuário'; $labels'actiondelete' = 'Deletado';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/composer.json -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/composer.json
Changed
@@ -4,7 +4,7 @@ "description": "Task management plugin", "homepage": "https://git.kolab.org/diffusion/RPK/", "license": "AGPLv3", - "version": "3.3.1", + "version": "3.3.2", "authors": { "name": "Thomas Bruederli",
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/index.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:34+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:19+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,10 +20,10 @@ #: ../../en_US/_plugins/tasks/index.rst:9 msgid "Tasks" -msgstr "" +msgstr "Tareas" #: ../../en_US/_plugins/tasks/index.rst:11 msgid "" "The *Tasks* module helps you organize your daily jobs and ToDo's and will " "alert you about upcoming deadlines." -msgstr "" +msgstr "El módulo *Tareas* le ayuda a organizar sus trabajos diarios y las tareas por hacer y le avisará sobre los próximos plazos."
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/manage.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:34+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:19+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,13 +20,13 @@ #: ../../en_US/_plugins/tasks/manage.rst:7 msgid "Managing Tasks" -msgstr "" +msgstr "Gestionar tareas" #: ../../en_US/_plugins/tasks/manage.rst:9 msgid "" "All the described functions to manage your tasks are accessible from the " "main task view." -msgstr "" +msgstr "Todas las funciones descritas para administrar sus tareas son accesibles desde la vista de tareas principal." #: ../../en_US/_plugins/tasks/manage.rst:13 msgid "Create new Tasks"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/helpdocs/locale/es_ES/LC_MESSAGES/overview.po
Changed
@@ -3,13 +3,14 @@ # This file is distributed under the same license as the Roundcube Webmail Help package. # # Translators: +# Berta Narváez <bertanarvaez@hotmail.com>, 2017 msgid "" msgstr "" "Project-Id-Version: Kolab Documentation\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-11-26 23:28+0100\n" -"PO-Revision-Date: 2014-11-27 23:34+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"PO-Revision-Date: 2017-03-07 16:21+0000\n" +"Last-Translator: Berta Narváez <bertanarvaez@hotmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/kolab/kolab-documentation/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,14 +20,14 @@ #: ../../en_US/_plugins/tasks/overview.rst:6 msgid "Overview" -msgstr "" +msgstr "Información general" #: ../../en_US/_plugins/tasks/overview.rst:8 msgid "" "The content area of the tasks screen is divided into three areas: the " ":ref:`Tasks <tasklist-tasks>` itself, the :ref:`Tags <taskslist-tags>` and " "the :ref:`Tasklist Selector <tasklist-lists>`." -msgstr "" +msgstr "El área de contenido de la pantalla de tareas se divide en tres áreas: la :ref: `Tasks <tasklist-tasks>`, la :ref: Tags <taskslist-tags>` y la :ref:`Tasklist Selector <tasklist-lists>`." #: ../../en_US/_plugins/tasks/overview.rst:16 msgid "The Tasks List"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/index.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/index.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/tasks/index.rst:9 msgid "Tasks"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/manage.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/manage.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/tasks/manage.rst:7 msgid "Managing Tasks"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/overview.po -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/helpdocs/locale/pl_PL/LC_MESSAGES/overview.po
Changed
@@ -15,7 +15,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" #: ../../en_US/_plugins/tasks/overview.rst:6 msgid "Overview"
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/bg_BG.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/bg_BG.inc
Changed
@@ -22,6 +22,7 @@ $labels'nrtasklistsfound' = 'Намерени са $nr списъка със задачи'; $labels'removelist' = 'Премахни от списъка'; $labels'showcaldavurl' = 'Покажи CalDAV URL адреса'; +$labels'caldavurldescription' = 'Копирайте този адрес в <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> приложението, което използвате (напр. Evolution или Mozilla Thunderbird), за да синхронизирате този конкретен списък със задачи с вашият компютър или мобилно устройство.'; $labels'newtask' = 'Нова задача'; $labels'createtask' = 'Създаване на задача <Enter>'; $labels'createnewtask' = 'Запазване като задача';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/cs_CZ.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/cs_CZ.inc
Changed
@@ -13,6 +13,7 @@ $labels'export' = 'Uložit jako ICS'; $labels'exporttitle' = 'Uložit jako iCalendar'; $labels'exportattachments' = 'S přílohami'; +$labels'currentview' = 'Nynější pohled'; $labels'tasklistsubscribe' = 'Ukazovat seznam trvale'; $labels'listsearchresults' = 'Dostupné seznamy úkolů'; $labels'findlists' = 'Najít seznamy úkolů...'; @@ -145,8 +146,8 @@ $labels'objectchangelognotavailable' = 'Historie změn není pro tento úkol dostupná'; $labels'objectdiffnotavailable' = 'Pro vybrané verze není žádné srovnání možné'; $labels'revisionrestoreconfirm' = 'Opravdu chcete obnovit změnu $rev tohoto úkolu? Tímto dojde k nahrazení nynějšího úkolu starou verzí.'; -$labels'objectrestoresuccess' = 'Pozměnění $rev úspěšně obnoveno'; -$labels'objectrestoreerror' = 'Nepodařilo se obnovit staré pozměnění'; +$labels'objectrestoresuccess' = 'Změna $rev úspěšně obnovena'; +$labels'objectrestoreerror' = 'Nepodařilo se obnovit starou změnu'; $labels'itipobjectnotfound' = 'Úkol, na který tato zpráva odkazuje nebyl nalezen ve vašem seznamu úkolů.'; $labels'itipmailbodyaccepted' = "\$sender přijal přidělení úkolu:\n\n*\$title*\n\nTermín: \$date\n\nZadávající: \$attendees"; $labels'itipmailbodytentative' = "\$sender předběžně přijal přidělení k následujícímu úkolu:\n\n*\$title*\n\nTermín: \$date\n\nPřiděleno: \$attendees"; @@ -188,4 +189,5 @@ $labels'itipinvalidrequest' = 'Tato pozvánka již není platná'; $labels'sentresponseto' = 'Odpověď na přidělení byla úspěšně odeslána na adresu $mailto'; $labels'successremoval' = 'Úkol byl úspěšně smazán.'; +$labels'invalidlistproperties' = 'Neplatné vlastnosti seznamu! Vložte, prosím, platný název.'; $labels'arialabelsortmenu' = 'Volby pro třídění úkolů';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/da_DK.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/da_DK.inc
Changed
@@ -13,6 +13,7 @@ $labels'export' = 'Eksport'; $labels'exporttitle' = 'Eksportér til iCalendar'; $labels'exportattachments' = 'Med vedhæftninger'; +$labels'currentview' = 'Aktuel visning'; $labels'tasklistsubscribe' = 'List permanently'; $labels'listsearchresults' = 'Available Tasklists'; $labels'findlists' = 'Find tasklists...'; @@ -80,7 +81,7 @@ $labels'taskactions' = 'Task options...'; $labels'tabsummary' = 'Resumé'; $labels'tabrecurrence' = 'Gentagelse'; -$labels'tabassignments' = 'Assignments'; +$labels'tabassignments' = 'Opgaver'; $labels'tabattachments' = 'Vedhæftninger'; $labels'tabsharing' = 'Deling'; $labels'editlist' = 'Redigér liste'; @@ -107,36 +108,37 @@ $labels'deletelistconfirm' = 'Vil du virkelig slette denne liste og alle dens opgaver?'; $labels'deletelistconfirmrecursive' = 'Vil du virkelig slette denne liste og alle dens dellister og opgaver?'; $labels'aclnorights' = 'You do not have administrator rights on this task list.'; -$labels'changetaskconfirm' = 'Update task'; +$labels'changetaskconfirm' = 'Opdater opgave'; $labels'changeconfirmnotifications' = 'Do you want to notify the attendees about the modification?'; $labels'partstatupdatenotification' = 'Do you want to notify the organizer about the status change?'; -$labels'quickaddinput' = 'New task date and title'; -$labels'arialabelquickaddbox' = 'Quick add new task'; -$labels'arialabelsearchform' = 'Task search form'; -$labels'arialabelquicksearchbox' = 'Task search input'; -$labels'arialabellistsearchform' = 'Tasklists search form'; +$labels'quickaddinput' = 'Dato og title for ny opgave'; +$labels'arialabelquickaddbox' = 'Hurtig oprettelse af opgave'; +$labels'arialabelsearchform' = 'Opgave søge formular'; +$labels'arialabelquicksearchbox' = 'Opgave søge input'; +$labels'arialabellistsearchform' = 'Opgaveliste søge formular'; $labels'arialabeltaskselector' = 'List mode'; -$labels'arialabeltasklisting' = 'Tasks listing'; -$labels'attendee' = 'Assignee'; +$labels'arialabeltasklisting' = 'Opgave visning'; +$labels'attendee' = 'Erhververen'; $labels'role' = 'Rolle'; $labels'availability' = 'Tilg.'; $labels'confirmstate' = 'Status'; -$labels'addattendee' = 'Add assignee'; +$labels'addattendee' = 'Tilføj erhververen'; $labels'roleorganizer' = 'Organisator'; $labels'rolerequired' = 'Påkrævet'; $labels'roleoptional' = 'Valgfri'; $labels'rolechair' = 'Formand'; $labels'rolenonparticipant' = 'Observer'; $labels'sendinvitations' = 'Send invitationer'; -$labels'sendnotifications' = 'Notify assignees about modifications'; -$labels'sendcancellation' = 'Notify assignees about task cancellation'; -$labels'invitationsubject' = 'You\'ve been assigned to "$title"'; +$labels'sendnotifications' = 'Informér erhververen om ændringer'; +$labels'sendcancellation' = 'Informér erhververen om annullering af opgave'; +$labels'invitationsubject' = 'Du er blevet tildet opgaven "$title"'; $labels'invitationmailbody' = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with all the task details which you can import to your tasks application."; $labels'itipupdatesubject' = '"$title" er blevet opdateret'; $labels'itipupdatesubjectempty' = 'A task that concerns you has been updated'; $labels'itipupdatemailbody' = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with the updated task details which you can import to your tasks application."; +$labels'itipcancelsubject' = '"$title" er blevet annulleret'; $labels'itipcancelmailbody' = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nThe task has been cancelled by \$organizer.\n\nPlease find attached an iCalendar file with the updated task details."; -$labels'saveintasklist' = 'save in '; +$labels'saveintasklist' = 'Gem i'; $labels'taskhistory' = 'Historik'; $labels'objectchangelog' = 'Ændringshistorik'; $labels'objectdiff' = 'Ændringer fra $rev1 til $rev2'; @@ -187,4 +189,5 @@ $labels'itipinvalidrequest' = 'Denne invitation er ikke længere gyldig'; $labels'sentresponseto' = 'Successfully sent assignment response to $mailto'; $labels'successremoval' = 'The task has been deleted successfully.'; +$labels'invalidlistproperties' = 'Ugyldige liste parametre! Angiv et gyldigt navn.'; $labels'arialabelsortmenu' = 'Tasks sorting options';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/de_CH.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/de_CH.inc
Changed
@@ -13,9 +13,21 @@ $labels'export' = 'Exportieren'; $labels'exporttitle' = 'Kalender als iCalendar exportieren'; $labels'exportattachments' = 'Mit Anhängen'; +$labels'currentview' = 'Aktuelle Ansicht'; +$labels'tasklistsubscribe' = 'Permanent anzeigen'; +$labels'listsearchresults' = 'Verfügbare Aufgaben'; +$labels'findlists' = 'Finde Aufgabenlisten,..'; +$labels'searchterms' = 'Suchbegriffe'; +$labels'notasklistsfound' = 'Keine Aufgabenlisten gefunden'; +$labels'nrtasklistsfound' = '$nr Aufgabenlisten gefunden'; +$labels'removelist' = 'Von der Liste entfernen'; +$labels'showcaldavurl' = 'CalDAV URL anzeigen'; +$labels'caldavurldescription' = 'Kopieren dieser Adresse in eine <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</aClient-Anwendung (z.B. Evolution oder Mozilla Thunderbird), um diese spezifische Aufgabenliste mit Ihrem Computer oder Mobilgerät zu synchronisieren.'; $labels'newtask' = 'Neue Aufgabe'; +$labels'createtask' = 'Aufgabe erstellen <Enter>'; $labels'createnewtask' = 'Neue Aufgabe eingeben (z.B. Samstag, Rasenmähen)'; $labels'createfrommail' = 'Als Aufgabe speichern'; +$labels'printtitle' = 'Aufgaben drucken'; $labels'printdescriptions' = 'Beschrieb drucken'; $labels'mark' = 'Markieren'; $labels'unmark' = 'Markierung aufheben'; @@ -23,38 +35,53 @@ $labels'delete' = 'Löschen'; $labels'title' = 'Titel'; $labels'description' = 'Beschreibung'; +$labels'datetime' = 'Fällig'; +$labels'duetime' = 'Frist'; $labels'start' = 'Beginn'; $labels'starttime' = 'Startzeit'; $labels'alarms' = 'Erinnerung'; $labels'repeat' = 'Wiederholung'; $labels'links' = 'Referenz'; $labels'status' = 'Status'; +$labels'status-needs-action' = 'Braucht Aktion'; +$labels'status-in-process' = 'In Bearbeitung'; +$labels'status-completed' = 'Abgeschlossen'; $labels'status-cancelled' = 'Gekündigt'; +$labels'assignedto' = 'Zugewiesen an'; $labels'created' = 'Erstellt'; $labels'changed' = 'Geändert'; $labels'taskoptions' = 'Optionen'; $labels'all' = 'Alle'; $labels'flagged' = 'Markiert'; $labels'complete' = 'Erledigt'; +$labels'completeness' = 'Fortschritt'; $labels'overdue' = 'Überfällig'; $labels'today' = 'Heute'; $labels'tomorrow' = 'Morgen'; $labels'next7days' = 'Nächste 7 Tage'; $labels'later' = 'Später'; +$labels'assigned' = 'Zugewiesen'; +$labels'assignedtitle' = 'Aufgaben, welche an andere vergeben wurden'; +$labels'mytasks' = 'Meine Aufgaben'; +$labels'mytaskstitle' = 'An mich übertragene Aufgaben'; $labels'nodate' = 'kein Datum'; $labels'removetag' = 'Löschen'; $labels'removelink' = 'E-Mail-Referenz entfernen'; +$labels'auto' = 'Automatisch'; $labels'taskdetails' = 'Details'; $labels'newtask' = 'Neue Aufgabe'; $labels'edittask' = 'Aufgabe bearbeiten'; $labels'save' = 'Speichern'; $labels'cancel' = 'Abbrechen'; +$labels'saveandnotify' = 'Speichern und Benachrichtigen'; $labels'addsubtask' = 'Neue Teilaufgabe'; $labels'deletetask' = 'Aufgabe löschen'; $labels'deletethisonly' = 'Nur diese Aufgabe löschen'; $labels'deletewithchilds' = 'Mit allen Teilaufhaben löschen'; +$labels'taskactions' = 'Aufgabeneinstellungen...'; $labels'tabsummary' = 'Übersicht'; $labels'tabrecurrence' = 'Wiederholung'; +$labels'tabassignments' = 'Zuweisungen'; $labels'tabattachments' = 'Anhänge'; $labels'tabsharing' = 'Freigabe'; $labels'editlist' = 'Liste bearbeiten'; @@ -63,6 +90,8 @@ $labels'listname' = 'Name'; $labels'showalarms' = 'Erinnerungen anzeigen'; $labels'import' = 'Importieren'; +$labels'viewactions' = 'Ansicht-Aktionen'; +$labels'focusview' = 'Nur diese Liste anzeigen'; $labels'on' = 'am'; $labels'at' = 'um'; $labels'this' = 'diesen'; @@ -72,63 +101,11 @@ $labels'errorsaving' = 'Fehler beim Speichern.'; $labels'notasksfound' = 'Für die aktuellen Kriterien wurden keine Aufgaben gefunden.'; $labels'invalidstartduedates' = 'Beginn der Aufgabe darf nicht grösser als das Enddatum sein.'; +$labels'invalidstartduetimes' = 'Start- und Enddatum müssen entweder beide oder keins eine Zeit enthalten.'; +$labels'recurrencerequiresdate' = 'Wiederkehrende Aufgaben erfordern entweder ein Start- oder Enddatum.'; $labels'deletetasktconfirm' = 'Möchten Sie diese Aufgabe wirklich löschen?'; $labels'deleteparenttasktconfirm' = 'Möchten Sie diese Aufgabe inklusive aller Teilaufgaben wirklich löschen?'; $labels'deletelistconfirm' = 'Möchten Sie diese Liste mit allen Aufgaben wirklich löschen?'; -$labels'role' = 'Rolle'; -$labels'availability' = 'Verfüg.'; -$labels'confirmstate' = 'Status'; -$labels'roleorganizer' = 'Organisator'; -$labels'rolerequired' = 'Erforderlich'; -$labels'roleoptional' = 'Optional'; -$labels'rolechair' = 'Chair'; -$labels'sendinvitations' = 'Einladungen versenden'; -$labels'itipupdatesubject' = '"$title" wurde aktualisiert'; -$labels'itipcancelsubject' = '"$title" wurde abgesagt'; -$labels'taskhistory' = 'Verlauf'; -$labels'objectchangelog' = 'Änderungsverlauf'; -$labels'objectdiff' = 'Änderungen aus $rev1 nach $rev2'; -$labels'objectdiffnotavailable' = 'Vergleich für die gewählten Versionen nicht möglich'; -$labels'objectrestoresuccess' = 'Version $rev erfolgreich wiederhergestellt'; -$labels'objectrestoreerror' = 'Fehler beim Wiederherstellen der alten Version'; -$labels'itipcomment' = 'Kommentar zur Einladungs/Benachrichtigung'; -$labels'andnmore' = '$nr weitere...'; -$labels'delegatedto' = 'Delegiert an:'; -$labels'delegatedfrom' = 'Delegiert von:'; -$labels'comment' = 'Kommentar'; -$labels'attendeupdateesuccess' = 'Teilnehmerstatus erfolgreich aktualisiert'; -$labels'itipinvalidrequest' = 'Diese Einladung ist nicht mehr gültig'; -$labels'currentview' = 'Aktuelle Ansicht'; -$labels'tasklistsubscribe' = 'Permanent anzeigen'; -$labels'listsearchresults' = 'Verfügbare Aufgaben'; -$labels'findlists' = 'Finde Aufgabenlisten,..'; -$labels'searchterms' = 'Suchbegriffe'; -$labels'notasklistsfound' = 'Keine Aufgabenlisten gefunden'; -$labels'nrtasklistsfound' = '$nr Aufgabenlisten gefunden'; -$labels'removelist' = 'Von der Liste entfernen'; -$labels'showcaldavurl' = 'CalDAV URL anzeigen'; -$labels'caldavurldescription' = 'Kopieren dieser Adresse in eine <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</aClient-Anwendung (z.B. Evolution oder Mozilla Thunderbird), um diese spezifische Aufgabenliste mit Ihrem Computer oder Mobilgerät zu synchronisieren.'; -$labels'createtask' = 'Aufgabe erstellen <Enter>'; -$labels'printtitle' = 'Aufgaben drucken'; -$labels'datetime' = 'Fällig'; -$labels'duetime' = 'Frist'; -$labels'status-needs-action' = 'Braucht Aktion'; -$labels'status-in-process' = 'In Bearbeitung'; -$labels'status-completed' = 'Abgeschlossen'; -$labels'assignedto' = 'Zugewiesen an'; -$labels'completeness' = 'Fortschritt'; -$labels'assigned' = 'Zugewiesen'; -$labels'assignedtitle' = 'Aufgaben, welche an andere vergeben wurden'; -$labels'mytasks' = 'Meine Aufgaben'; -$labels'mytaskstitle' = 'An mich übertragene Aufgaben'; -$labels'auto' = 'Automatisch'; -$labels'saveandnotify' = 'Speichern und Benachrichtigen'; -$labels'taskactions' = 'Aufgabeneinstellungen...'; -$labels'tabassignments' = 'Zuweisungen'; -$labels'viewactions' = 'Ansicht-Aktionen'; -$labels'focusview' = 'Nur diese Liste anzeigen'; -$labels'invalidstartduetimes' = 'Start- und Enddatum müssen entweder beide oder keins eine Zeit enthalten.'; -$labels'recurrencerequiresdate' = 'Wiederkehrende Aufgaben erfordern entweder ein Start- oder Enddatum.'; $labels'deletelistconfirmrecursive' = 'Soll diese Liste wirklich mit allen Aufgaben und Unterlisten gelöscht werden?'; $labels'aclnorights' = 'Der Zugriff auf diese Aufgabenliste erfordert Administrator-Rechte.'; $labels'changetaskconfirm' = 'Aufgabe ändern'; @@ -142,19 +119,35 @@ $labels'arialabeltaskselector' = 'Listenmodus'; $labels'arialabeltasklisting' = 'Aufgabenauflistung'; $labels'attendee' = 'Beauftragter'; +$labels'role' = 'Rolle'; +$labels'availability' = 'Verfüg.'; +$labels'confirmstate' = 'Status'; $labels'addattendee' = 'Beauftragten hinzufügen'; +$labels'roleorganizer' = 'Organisator'; +$labels'rolerequired' = 'Erforderlich'; +$labels'roleoptional' = 'Optional'; +$labels'rolechair' = 'Chair'; $labels'rolenonparticipant' = 'Beobachter'; +$labels'sendinvitations' = 'Einladungen versenden'; $labels'sendnotifications' = 'Beauftragte Teilnehmer über die Änderung informieren'; $labels'sendcancellation' = 'Beauftragte Teilnehmer über die Stornierung informieren'; $labels'invitationsubject' = 'Ihnen wurde "$title" zugewiesen'; $labels'invitationmailbody' = "*\$title*\n\nFällig: \$date\n\nTeilnehmer: \$attendees\n\nAngehängt finden Sie eine iCalendar-Datei mit allen Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann."; +$labels'itipupdatesubject' = '"$title" wurde aktualisiert'; $labels'itipupdatesubjectempty' = 'Eine ihrer Aufgabe wurde aktualisiert'; $labels'itipupdatemailbody' = "*\$title*\n\nFällig: \$date\n\nTeilnehmer: \$attendees\n\nAngehängt finden Sie eine iCalendar-Datei mit den aktualisierten Aufgabendetails, welche in Ihre Aufgabenanwendung importiert werden kann."; +$labels'itipcancelsubject' = '"$title" wurde abgesagt'; $labels'itipcancelmailbody' = "*\$title*\n\nFällig: \$date\n\nTeilnehmer: \$attendees\n\nDie Aufgabe wurde durch \$organizer storniert.\n\nAngehängt finden Sie eine iCalendar-Datei mit den aktualisierten Aufgabendetails."; $labels'saveintasklist' = 'speichern in'; +$labels'taskhistory' = 'Verlauf'; +$labels'objectchangelog' = 'Änderungsverlauf'; +$labels'objectdiff' = 'Änderungen aus $rev1 nach $rev2'; $labels'objectnotfound' = 'Fehler beim Laden der Aufgabendaten'; $labels'objectchangelognotavailable' = 'Änderung der Historie ist nicht verfügbar für diese Aufgabe.'; +$labels'objectdiffnotavailable' = 'Vergleich für die gewählten Versionen nicht möglich'; $labels'revisionrestoreconfirm' = 'Möchten Sie wirklich die Version $rev dieser Aufgabe wiederherstellen? Dies wird die aktuelle Aufgabe mit der alten Version ersetzen.'; +$labels'objectrestoresuccess' = 'Version $rev erfolgreich wiederhergestellt'; +$labels'objectrestoreerror' = 'Fehler beim Wiederherstellen der alten Version'; $labels'itipobjectnotfound' = 'Die Aufgabe, auf welche sich diese Nachricht bezieht, wurde nicht in Ihrer Aufgabenliste gefunden.'; $labels'itipmailbodyaccepted' = "\$sender hat die Zuweisung folgender Aufgabe akzeptiert:\n\n*\$title*\n\nFällig: \$date\n\nVerantwortlich: \$attendees"; $labels'itipmailbodytentative' = "\$sender hat die Zuweisung folgender Aufgabe unter Vorbehalt akzeptiert:\n\n*\$title*\n\nFällig: \$date\n\nVerantwortlich: \$attendees"; @@ -173,12 +166,17 @@ $labels'acceptinvitation' = 'Akzeptieren Sie die Zuweisung?'; $labels'itipdeclinetask' = 'Lehnen Sie to Zuweisung dieser Aufgabe ab'; $labels'declinedeleteconfirm' = 'Möchten Sie diese abgelehnete Aufgabe aus Ihrer Aufgabenliste löschen?'; +$labels'itipcomment' = 'Kommentar zur Einladungs/Benachrichtigung'; $labels'itipcommenttitle' = 'Dieser Kommentar wird der Benachrichtigung an andere Delegierte hinzugefügt'; $labels'itipsendsuccess' = 'Benachrichtigung an Delegierte gesendet'; $labels'errornotifying' = 'Senden der Benachrichtigung an Delegierte fehlgeschlagen'; $labels'removefromcalendar' = 'Aus meinen Aufgaben entfernen'; $labels'delegateinvitation' = 'Zuweisung delegieren'; +$labels'andnmore' = '$nr weitere...'; +$labels'delegatedto' = 'Delegiert an:'; +$labels'delegatedfrom' = 'Delegiert von:';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/de_DE.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/de_DE.inc
Changed
@@ -36,7 +36,7 @@ $labels'title' = 'Titel'; $labels'description' = 'Beschreibung'; $labels'datetime' = 'Fällig'; -$labels'duetime' = 'Frist'; +$labels'duetime' = 'Fällig'; $labels'start' = 'Beginn'; $labels'starttime' = 'Startzeit'; $labels'alarms' = 'Erinnerung';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/el.inc
Added
@@ -0,0 +1,47 @@ +<?php +/** + * Localizations for the Kolab Tasks plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/tasklist/ + */ +$labels'navtitle' = 'Εργασίες'; +$labels'list' = 'Λίστα εργασιών'; +$labels'tags' = 'Ετικέτες'; +$labels'export' = 'Εξαγωγή'; +$labels'exporttitle' = 'Εξαγωγή σε iCalendar'; +$labels'currentview' = 'τρέχουσα προβολή'; +$labels'searchterms' = 'Όροι αναζήτησης'; +$labels'removelist' = 'Αφαίρεση από την λίστα'; +$labels'newtask' = 'Νέα εργασία'; +$labels'createfrommail' = 'Αποθήκευση ως εργασία'; +$labels'printtitle' = 'Εκτύπωση εργασιών'; +$labels'edit' = 'Επεξεργασία'; +$labels'delete' = 'Διαγραφή'; +$labels'title' = 'Τίτλος'; +$labels'description' = 'Περιγραφή'; +$labels'start' = 'Έναρξη'; +$labels'starttime' = 'Ώρα έναρξης'; +$labels'repeat' = 'Επανάληψη'; +$labels'status' = 'Κατάσταση'; +$labels'status-completed' = 'Ολοκληρώθηκε'; +$labels'created' = 'Δημιουργήθηκε'; +$labels'changed' = 'Τελευταία τροποποίηση'; +$labels'today' = 'Σήμερα'; +$labels'tomorrow' = 'Αύριο'; +$labels'removetag' = 'Αφαίρεση'; +$labels'newtask' = 'Νέα εργασία'; +$labels'save' = 'Αποθήκευση'; +$labels'cancel' = 'Άκυρο'; +$labels'tabsummary' = 'Περίληψη'; +$labels'listname' = 'Όνομα'; +$labels'yes' = 'ναι'; +$labels'savingdata' = 'Αποθήκευση δεδομένων...'; +$labels'role' = 'Ρόλος'; +$labels'availability' = 'Διαθ.'; +$labels'confirmstate' = 'Κατάσταση'; +$labels'roleorganizer' = 'Οργανωτής'; +$labels'taskhistory' = 'Ιστορικό'; +$labels'objectchangelog' = 'Αλλαγή ιστορικού'; +$labels'comment' = 'Σχόλιο';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/en_US.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/en_US.inc
Changed
@@ -123,10 +123,6 @@ $labels'changetaskconfirm' = 'Update task'; $labels'changeconfirmnotifications' = 'Do you want to notify the attendees about the modification?'; $labels'partstatupdatenotification' = 'Do you want to notify the organizer about the status change?'; -$labels'importtasks' = 'Import tasks'; -$labels'importsuccess' = 'Successfully imported $nr tasks'; -$labels'importnone' = 'No tasks found to be imported'; -$labels'importerror' = 'An error occured while importing'; // (hidden) titles and labels for accessibility annotations $labels'quickaddinput' = 'New task date and title'; @@ -201,6 +197,8 @@ $labels'delegateinvitation' = 'Delegate assignment'; $labels'andnmore' = '$nr more...'; +$labels'delegatedto' = 'Delegated to: '; +$labels'delegatedfrom' = 'Delegated from: '; $labels'savetotasklist' = 'Save to tasks'; $labels'comment' = 'Comment'; $labels'errorimportingtask' = 'Failed to import task(s)';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/es_ES.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/es_ES.inc
Changed
@@ -13,6 +13,7 @@ $labels'export' = 'Exportar'; $labels'exporttitle' = 'Exportar a iCalendar'; $labels'exportattachments' = 'con los adjuntos'; +$labels'currentview' = 'Vista actual'; $labels'tasklistsubscribe' = 'Lista Permanente'; $labels'listsearchresults' = 'Lista de tareas disponibles'; $labels'findlists' = 'Buscar lista de tareas'; @@ -135,6 +136,7 @@ $labels'itipupdatesubject' = '"$title" ha sido actualizada'; $labels'itipupdatesubjectempty' = 'Una tarea que le concierne ha sido actualizada'; $labels'itipupdatemailbody' = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nSe adjunta un archivo iCalendar con los detalles de la tarea actualizada, el mismo se puede importar a la aplicación de tareas."; +$labels'itipcancelsubject' = 'Se ha cancelado "$título"'; $labels'itipcancelmailbody' = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nLa tarea ha sido cancelado por \$organizer.\n\nSe adjunta un archivo iCalendar con los detalles de la tarea actualizada."; $labels'saveintasklist' = 'salvar en'; $labels'taskhistory' = 'Historial'; @@ -187,4 +189,5 @@ $labels'itipinvalidrequest' = 'Esta invitación ya no es válida'; $labels'sentresponseto' = 'Respuesta de asignación con éxito enviada a $mailto'; $labels'successremoval' = 'La tarea se ha eliminado correctamente.'; +$labels'invalidlistproperties' = 'Las propiedades de la lista no son válidas. Establezca un nombre válido.'; $labels'arialabelsortmenu' = 'Opciones de clasificación de tareas';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/fr_FR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/fr_FR.inc
Changed
@@ -12,20 +12,21 @@ $labels'tags' = 'Étiquettes'; $labels'export' = 'Exporter'; $labels'exporttitle' = 'Exporter vers iCalendar'; -$labels'exportattachments' = 'With attachments'; +$labels'exportattachments' = 'Avec pièces jointes'; +$labels'currentview' = 'stade actuel'; $labels'tasklistsubscribe' = 'Lister définitivement'; -$labels'listsearchresults' = 'Listes de Tâche disponibles'; -$labels'findlists' = 'Trouver listes de Tache....'; +$labels'listsearchresults' = 'Listes des tâches disponibles'; +$labels'findlists' = 'Trouver listes de tâches...'; $labels'searchterms' = 'Critères de recherche'; $labels'notasklistsfound' = 'Aucune liste de tâches trouvée'; $labels'nrtasklistsfound' = '$nr listes de tâches trouvées'; -$labels'removelist' = 'supprimer de la liste'; +$labels'removelist' = 'Supprimer de la liste'; $labels'showcaldavurl' = 'Afficher l\'URL CalDAV'; $labels'caldavurldescription' = 'Copier cette adresse vers une application cliente compatible <a href="http://fr.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> (par exemple Evolution et Mozilla Thunderbird) afin de synchroniser cette liste de tâches spécifique avec votre ordinateur ou votre smartphone.'; $labels'newtask' = 'Nouvelle tâche'; $labels'createtask' = 'Créer une tâche <Entrer>'; $labels'createnewtask' = 'Créer une nouvelle tâche (ex : Samedi, tondre la pelouse)'; -$labels'createfrommail' = 'Sauvegarder comme une tâche'; +$labels'createfrommail' = 'Sauvegarder en tant que tâche'; $labels'printtitle' = 'Imprimer tâches'; $labels'printdescriptions' = 'Imprimer les descriptions'; $labels'mark' = 'Sélectionner'; @@ -60,10 +61,10 @@ $labels'next7days' = '7 prochains jours'; $labels'later' = 'Plus tard'; $labels'assigned' = 'Affectée'; -$labels'assignedtitle' = 'Tâches que vous avez affecté à d\'autres'; +$labels'assignedtitle' = 'Tâches que vous avez affectée à d\'autres'; $labels'mytasks' = 'Mes tâches'; $labels'mytaskstitle' = 'Tâches qui me sont affectées'; -$labels'nodate' = 'Pas de date'; +$labels'nodate' = 'pas de date'; $labels'removetag' = 'Supprimer'; $labels'removelink' = 'Enlever référence d\'e-mail'; $labels'auto' = 'Automatique'; @@ -75,7 +76,7 @@ $labels'saveandnotify' = 'Enregistrer et notifier'; $labels'addsubtask' = 'Ajouter une sous-tâche'; $labels'deletetask' = 'Supprimer la tâche'; -$labels'deletethisonly' = 'Supprimer seulement cette tâche'; +$labels'deletethisonly' = 'Supprimer cette tâche seulement'; $labels'deletewithchilds' = 'Supprimer avec toutes les sous-tâches'; $labels'taskactions' = 'Options de la tâche...'; $labels'tabsummary' = 'Résumé'; @@ -97,24 +98,24 @@ $labels'next' = 'suivant'; $labels'yes' = 'oui'; $labels'savingdata' = 'Enregistrer...'; -$labels'errorsaving' = 'Échec lors de la sauvegarde des donnés'; -$labels'notasksfound' = 'Pas de tâche trouvé avec les critères sélectionnés'; -$labels'invalidstartduedates' = 'La date de début ne doit pas être supérieur à la date de fin'; -$labels'invalidstartduetimes' = 'Les dates de début et de fin d\'échéance doivent toutes les deux spécifier une heure ou pas.'; -$labels'recurrencerequiresdate' = 'La tâches récurrentes exigent une date soit de début soit de fin d\'échéance.'; -$labels'deletetasktconfirm' = 'Êtes-vous sur de vouloir supprimer cette tâche?'; -$labels'deleteparenttasktconfirm' = 'Êtes-vous sur de vouloir supprimer cette tâche et ses sous-tâches?'; -$labels'deletelistconfirm' = 'Êtes-vous sur de vouloir supprimer cette liste et toutes ses tâches?'; -$labels'deletelistconfirmrecursive' = 'Voulez-vous vraiment supprimer cette liste avec tous ses sous-listes et tâches?'; -$labels'aclnorights' = 'Vous ne disposez pas des droits d´ administrateur pour cette liste de tâches.'; +$labels'errorsaving' = 'Échec lors de la sauvegarde des donnés.'; +$labels'notasksfound' = 'Pas de tâche trouvée avec les critères sélectionnés'; +$labels'invalidstartduedates' = 'La date de début ne doit pas être ultérieure à la date de fin'; +$labels'invalidstartduetimes' = 'Les dates de début et de fin d\'échéance doivent toutes deux spécifier une heure, ou non.'; +$labels'recurrencerequiresdate' = 'Les tâches récurrentes exigent une date de début ou de fin d\'échéance.'; +$labels'deletetasktconfirm' = 'Êtes-vous sûr de vouloir supprimer cette tâche ?'; +$labels'deleteparenttasktconfirm' = 'Êtes-vous sûr de vouloir supprimer cette tâche et ses sous-tâches ?'; +$labels'deletelistconfirm' = 'Êtes-vous sûr de vouloir supprimer cette liste et toutes ses tâches ?'; +$labels'deletelistconfirmrecursive' = 'Voulez-vous vraiment supprimer cette liste avec toutes ses sous-listes et tâches ?'; +$labels'aclnorights' = 'Vous ne disposez pas des droits d\'administrateur pour cette liste de tâches.'; $labels'changetaskconfirm' = 'Modifier la tâche'; -$labels'changeconfirmnotifications' = 'Voulez-vous avertir les invitées à propos de cette modification ?'; -$labels'partstatupdatenotification' = 'Voulez-vous avertir l\'organisateur a propos du changement de statut ?'; +$labels'changeconfirmnotifications' = 'Voulez-vous avertir les invités de cette modification ?'; +$labels'partstatupdatenotification' = 'Voulez-vous avertir l\'organisateur du changement de statut ?'; $labels'quickaddinput' = 'Nouvelle tâche, date et titre'; $labels'arialabelquickaddbox' = 'Ajout rapide d\'une nouvelle tâche'; -$labels'arialabelsearchform' = 'Recherche de tâches'; -$labels'arialabelquicksearchbox' = 'Saisie d\'une recherche de tâche'; -$labels'arialabellistsearchform' = 'Recherche de listes de tâches'; +$labels'arialabelsearchform' = 'Formulaire de recherche de tâches'; +$labels'arialabelquicksearchbox' = 'Saisie d\'une recherche de tâches'; +$labels'arialabellistsearchform' = 'Formulaire de recherche de listes de tâches'; $labels'arialabeltaskselector' = 'Type de liste'; $labels'arialabeltasklisting' = 'Liste des tâches'; $labels'attendee' = 'Utilisateurs affectés'; @@ -124,26 +125,27 @@ $labels'addattendee' = 'Affecter un utilisateur'; $labels'roleorganizer' = 'Organisateur'; $labels'rolerequired' = 'Requis'; -$labels'roleoptional' = 'Optionel'; -$labels'rolechair' = 'Chair'; +$labels'roleoptional' = 'Optionnel'; +$labels'rolechair' = 'Présidence'; $labels'rolenonparticipant' = 'Observateur'; $labels'sendinvitations' = 'Envoyer les invitations'; -$labels'sendnotifications' = 'Avertir les utilisateurs concernant les modifications'; -$labels'sendcancellation' = 'Avertir les utilisateurs concernant l\'annulation de la tâche'; +$labels'sendnotifications' = 'Avertir les utilisateurs des modifications'; +$labels'sendcancellation' = 'Avertir les utilisateurs de l\'annulation de la tâche'; $labels'invitationsubject' = 'Vous avez été affecté à la tâche "$title"'; -$labels'invitationmailbody' = "*\$title*\n\nFin: \$date\n\nAffectée à : \$attendees\n\nVous trouverez en attachement un objet de type iCalendar comprenant le détail de cette tâche et que vous pouvez importer dans votre gestionnaire de tâches."; +$labels'invitationmailbody' = "*\$title*\n\nFin: \$date\n\nAffectée à : \$attendees\n\nVous trouverez en pièce jointe un objet de type iCalendar comprenant le détail de cette tâche, que vous pouvez importer dans votre gestionnaire de tâches."; $labels'itipupdatesubject' = '"$title" a été modifié'; $labels'itipupdatesubjectempty' = 'Une tâche vous concernant a été modifiée'; $labels'itipupdatemailbody' = "*\$title*\n\nFin : \$date\n\nAffectée à : \$attendees\n\nVous trouverez en attachement un objet de type iCalendar comprenant le détail de cette tâche modifiée et que vous pouvez importer dans votre gestionnaire de tâches."; -$labels'itipcancelmailbody' = "*\$title*\n\nFin : \$date\n\nAffectée à : \$attendees\n\nLa tâche a été supprimée par \$organizer.\n\nous trouverez en attachement un objet de type iCalendar comprenant le détail de cette tâche."; -$labels'saveintasklist' = 'Sauvegardé dans'; +$labels'itipcancelsubject' = '"$title" a été annulé'; +$labels'itipcancelmailbody' = "*\$title*\n\nFin : \$date\n\nAffectée à : \$attendees\n\nLa tâche a été supprimée par \$organizer.\n\Vous trouverez en pièce jointe un objet de type iCalendar comprenant le détail de cette tâche."; +$labels'saveintasklist' = 'sauvegardé dans'; $labels'taskhistory' = 'Historique'; $labels'objectchangelog' = 'Historique des modifications'; -$labels'objectdiff' = 'Modifications depuis $rev1 jusqu\'à $rev2'; -$labels'objectnotfound' = 'Échec lors du chargement des données de taches'; +$labels'objectdiff' = 'Modifications de $rev1 à $rev2'; +$labels'objectnotfound' = 'Échec lors du chargement des données de tâches'; $labels'objectchangelognotavailable' = 'Il n\'y a pas d\'historique des modifications pour cette tâche'; $labels'objectdiffnotavailable' = 'La comparaison des versions sélectionnées est impossible'; -$labels'revisionrestoreconfirm' = 'Voulez-vous vraiment restaurer la version $rev de cet tâche ? Cela va remplacer l\'événement courant par l\'ancienne version.'; +$labels'revisionrestoreconfirm' = 'Voulez-vous vraiment restaurer la version $rev de cette tâche ? Ceci remplacera l\'événement actuel par l\'ancienne version.'; $labels'objectrestoresuccess' = 'La révision $rev a été restaurée avec succès'; $labels'objectrestoreerror' = 'Échec lors de la restauration de la précédente révision'; $labels'itipobjectnotfound' = 'La tâche correspondant à ce massage n\'a pas été trouvée dans votre liste de têches.'; @@ -151,19 +153,21 @@ $labels'itipmailbodytentative' = "\$sender va tenter d’accepter l'affectation à cette tâche :\n\n*\$title*\n\nFin : \$date\n\nAffectée à : \$attendees"; $labels'itipmailbodydeclined' = "\$sender ne pourra probablement pas accepter l'affectation à cette tâche :\n\n*\$title*\n\nFin : \$date\n\nAffectée à: \$attendees"; $labels'itipmailbodycancel' = "\$sender a refusé l'affectation à cette tâche :\n\n*\$title*\n\nFin : \$date"; -$labels'itipmailbodyin-process' = "\$sender a fixer le statut de la tâche suivante dans l'état \"en cours de traitement\" :\n\n*\$title*\n\nFin : \$date"; +$labels'itipmailbodyin-process' = "\$sender a fixé le statut de la tâche suivante dans l'état \"en cours de traitement\" :\n\n*\$title*\n\nFin : \$date"; $labels'itipmailbodycompleted' = "\$sender a fini la tâche suivante :\n\n*\$title*\n\nFin: \$date"; +$labels'itipmailbodydelegated' = "\$sender a délégué la tâche suivante :\n\n*\$title*\n\nDue: \$date"; +$labels'itipmailbodydelegatedto' = "\$sender vous a délégué la tâche suivante :\n\n*\$title*\n\nDue: \$date"; $labels'attendeeaccepted' = 'L\'utilisateur a accepté l\'affectation'; -$labels'attendeetentative' = 'L\'utilisateur va tenté d\'accepter l\'affectation'; +$labels'attendeetentative' = 'L\'utilisateur a tenté d\'accepter l\'affectation'; $labels'attendeedeclined' = 'L\'utilisateur a décliné l\'affectation'; -$labels'attendeedelegated' = 'L\'affectation a été délégué à $delegatedto'; +$labels'attendeedelegated' = 'L\'affectation a été déléguée à $delegatedto'; $labels'attendeein-process' = 'Cette tâche est en cours de traitement par les utilisateurs affectés'; -$labels'attendeecompleted' = 'Cette tâche a été traité par les utilisateurs affectés'; -$labels'acceptinvitation' = 'Acceptez-vous cet affectation ?'; -$labels'itipdeclinetask' = 'Décline à l\'organisateur votre affectation à cette tâche'; +$labels'attendeecompleted' = 'Cette tâche a été traitée par les utilisateurs affectés'; +$labels'acceptinvitation' = 'Acceptez-vous cette affectation ?'; +$labels'itipdeclinetask' = 'Déclinez votre affectation à cette tâche auprès de l\'organisateur'; $labels'declinedeleteconfirm' = 'Voulez-vous supprimer cette tâche déclinée de votre liste ?'; $labels'itipcomment' = 'Commentaire d’invitation ou de notification'; -$labels'itipcommenttitle' = 'Ce commentaire sera inséré au message d\'invitation envoyé aux utilisateurs affectés'; +$labels'itipcommenttitle' = 'Ce commentaire sera inséré au message d\'invitation/de notification envoyé aux utilisateurs affectés'; $labels'itipsendsuccess' = 'Notification envoyée aux utilisateurs assignés'; $labels'errornotifying' = 'Erreur d\'envoi des notifications aux utilisateurs affectés à la tâche'; $labels'removefromcalendar' = 'Supprimer de mes tâches'; @@ -182,7 +186,8 @@ $labels'updatedsuccessfully' = 'Cette tâche a été modifiée avec succès dans \'$list\''; $labels'attendeupdateesuccess' = 'Le statut des participants a été modifié'; $labels'itipresponseerror' = 'Impossible d\'envoyer la réponse de l\'utilisateur affecté à la tâche'; -$labels'itipinvalidrequest' = 'C\'est invitation n\'est plus valide.'; -$labels'sentresponseto' = 'La réponse de l\'utilisateur affecté a été envoyé avec succès à $mailto'; +$labels'itipinvalidrequest' = 'Cette invitation n\'est plus valide'; +$labels'sentresponseto' = 'La réponse de l\'utilisateur affecté a été envoyée avec succès à $mailto'; $labels'successremoval' = 'Cette tâche a été supprimée avec succès.'; +$labels'invalidlistproperties' = 'Propriétés de la liste invalides ! Veuillez saisir un nom valide.'; $labels'arialabelsortmenu' = 'Options de tri des tâches';
View file
roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/lv.inc
Added
@@ -0,0 +1,69 @@ +<?php +/** + * Localizations for the Kolab Tasks plugin + * + * Copyright (C) 2014, Kolab Systems AG + * + * For translation see https://www.transifex.com/projects/p/kolab/resource/tasklist/ + */ +$labels'export' = 'Eksportēt'; +$labels'exporttitle' = 'Eksportēt uz iCalendar'; +$labels'exportattachments' = 'Ar pielikumiem'; +$labels'tasklistsubscribe' = 'Rādīt sarakstā vienmēr'; +$labels'searchterms' = 'Meklēšanas nosacījumi'; +$labels'removelist' = 'Dzēst no saraksta'; +$labels'printdescriptions' = 'Drukāt aprakstus'; +$labels'edit' = 'Labot'; +$labels'description' = 'Apraksts'; +$labels'start' = 'Sākums'; +$labels'starttime' = 'Sākums'; +$labels'alarms' = 'Atgādinājums'; +$labels'repeat' = 'Atkārtot'; +$labels'links' = 'Atsauce'; +$labels'status' = 'Statuss'; +$labels'status-needs-action' = 'Nepieciešama darbība'; +$labels'status-in-process' = 'Procesā'; +$labels'status-completed' = 'Pabeigts'; +$labels'status-cancelled' = 'Atcelts'; +$labels'created' = 'Izveidots'; +$labels'changed' = 'Mainīts'; +$labels'taskoptions' = 'iespējas'; +$labels'all' = 'Visi'; +$labels'today' = 'Šodien'; +$labels'tomorrow' = 'Rīt'; +$labels'removelink' = 'Noņemt atsauci uz e-pastu'; +$labels'taskdetails' = 'Detaļas'; +$labels'save' = 'Saglabāt'; +$labels'cancel' = 'Atcelt'; +$labels'tabsummary' = 'Kopsavilkums'; +$labels'tabrecurrence' = 'Atkārtojums'; +$labels'tabattachments' = 'Pielikumi'; +$labels'tabsharing' = 'Dalīšanās'; +$labels'listname' = 'Nosaukums'; +$labels'showalarms' = 'Rādīt atgādinājumus'; +$labels'at' = ' '; +$labels'yes' = 'jā'; +$labels'savingdata' = 'Saglabājam...'; +$labels'role' = 'Loma'; +$labels'availability' = 'Pieej.'; +$labels'confirmstate' = 'Statuss'; +$labels'roleorganizer' = 'Organizētājs'; +$labels'rolerequired' = 'Obligāti'; +$labels'roleoptional' = 'Pēc izvēles'; +$labels'rolechair' = 'Vadītājs'; +$labels'sendinvitations' = 'Nosūtīt uzaicinājumus'; +$labels'itipupdatesubject' = '"$title" ir mainīts'; +$labels'itipcancelsubject' = '"$title" ir atcelts'; +$labels'taskhistory' = 'Vēsture'; +$labels'objectchangelog' = 'Mainīt vēsturi'; +$labels'objectdiff' = 'Izmaiņas no $rev1 uz $rev2'; +$labels'objectdiffnotavailable' = 'Izvēlētās versijas nav salīdzināmas'; +$labels'objectrestoresuccess' = 'Versija $rev veiksmīgi atjaunota'; +$labels'objectrestoreerror' = 'Kļūda atjaunojot veco versiju'; +$labels'itipcomment' = 'Uzaicinājumam/paziņojuma komentārs'; +$labels'andnmore' = 'vēl $nr ...'; +$labels'delegatedto' = 'Deleģēt:'; +$labels'delegatedfrom' = 'Deleģēts no:'; +$labels'comment' = 'Komentārs'; +$labels'attendeupdateesuccess' = 'Dalībnieku statusi veiksmīgi atjaunoti'; +$labels'itipinvalidrequest' = 'Šis uzaicinājums vairs nav spēkā';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/nl_NL.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/nl_NL.inc
Changed
@@ -9,170 +9,185 @@ $labels'navtitle' = 'Taken'; $labels'lists' = 'Takenlijsten'; $labels'list' = 'Takenlijst'; -$labels'tags' = 'Labels'; -$labels'export' = 'Exporteer naar ICS'; -$labels'exporttitle' = 'Als iCalender exporteren'; -$labels'exportattachments' = 'Exporteer bijlages'; -$labels'tasklistsubscribe' = 'Permanent weergeven'; -$labels'listsearchresults' = 'Available Tasklists'; -$labels'findlists' = 'Find tasklists...'; -$labels'searchterms' = 'Search terms'; -$labels'notasklistsfound' = 'No tasklists found'; -$labels'nrtasklistsfound' = '$nr tasklists found'; -$labels'removelist' = 'Remove from list'; -$labels'newtask' = 'Nieuwe Taak'; -$labels'createtask' = 'Create Task <Enter>'; -$labels'createnewtask' = 'Creer een nieuwe Taak (bijv. Zaterdag, gras maaien)'; -$labels'createfrommail' = 'Als taak opslaan'; +$labels'tags' = 'Tags'; +$labels'export' = 'Exporteren'; +$labels'exporttitle' = 'Exporteren naar iCalendar'; +$labels'exportattachments' = 'Met bijlagen'; +$labels'currentview' = 'huidige weergave'; +$labels'tasklistsubscribe' = 'Definitief weergeven'; +$labels'listsearchresults' = 'Beschikbare takenlijsten'; +$labels'findlists' = 'Takenlijsten zoeken...'; +$labels'searchterms' = 'Zoektermen'; +$labels'notasklistsfound' = 'Geen takenlijsten gevonden'; +$labels'nrtasklistsfound' = '$nr takenlijsten gevonden'; +$labels'removelist' = 'Verwijderen uit lijst'; +$labels'showcaldavurl' = 'CalDAV-URL tonen'; +$labels'caldavurldescription' = 'Kopieer dit adres naar een <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a>-client (bijv. Evolution of Mozilla Thunderbird) om deze specifieke takenlijst te synchroniseren met uw computer of mobiele apparaat.'; +$labels'newtask' = 'Nieuwe taak'; +$labels'createtask' = 'Taak maken <Enter>'; +$labels'createnewtask' = 'Nieuwe taak maken (bijv. gras maaien op zaterdag)'; +$labels'createfrommail' = 'Opslaan als taak'; $labels'printtitle' = 'Taken afdrukken'; -$labels'printdescriptions' = 'Print beschrijvingen'; +$labels'printdescriptions' = 'Beschrijvingen afdrukken'; $labels'mark' = 'Markeren'; -$labels'unmark' = 'Demarkeren'; -$labels'edit' = 'Wijzigen'; +$labels'unmark' = 'Markering opheffen'; +$labels'edit' = 'Bewerken'; $labels'delete' = 'Verwijderen'; -$labels'title' = 'Titel'; +$labels'title' = 'Naam'; $labels'description' = 'Beschrijving'; $labels'datetime' = 'Vóór'; -$labels'duetime' = 'Due time'; +$labels'duetime' = 'Vervaltijd'; $labels'start' = 'Begin'; -$labels'starttime' = 'Start time'; +$labels'starttime' = 'Begintijd'; $labels'alarms' = 'Herinnering'; -$labels'repeat' = 'Herhaal'; -$labels'links' = 'Reference'; +$labels'repeat' = 'Herhalen'; +$labels'links' = 'Referentie'; $labels'status' = 'Status'; -$labels'status-needs-action' = 'Needs action'; -$labels'status-in-process' = 'In process'; -$labels'status-completed' = 'Completed'; -$labels'status-cancelled' = 'Afgelast'; -$labels'assignedto' = 'Assigned to'; -$labels'created' = 'Created'; -$labels'changed' = 'Last Modified'; +$labels'status-needs-action' = 'Actie vereist'; +$labels'status-in-process' = 'In behandeling'; +$labels'status-completed' = 'Voltooid'; +$labels'status-cancelled' = 'Geannuleerd'; +$labels'assignedto' = 'Toegewezen aan'; +$labels'created' = 'Gemaakt op'; +$labels'changed' = 'Laatst gewijzigd op'; $labels'taskoptions' = 'Opties'; -$labels'all' = 'Alle'; +$labels'all' = 'Alles'; $labels'flagged' = 'Gemarkeerd'; -$labels'complete' = 'Compleet'; -$labels'completeness' = 'Progress'; +$labels'complete' = 'Voltooien'; +$labels'completeness' = 'Voortgang'; $labels'overdue' = 'Achterstallig'; $labels'today' = 'Vandaag'; $labels'tomorrow' = 'Morgen'; $labels'next7days' = 'Volgende 7 dagen'; $labels'later' = 'Later'; -$labels'assigned' = 'Assigned'; -$labels'assignedtitle' = 'Tasks you assigned to others'; -$labels'mytasks' = 'My tasks'; -$labels'mytaskstitle' = 'Tasks assigned to you'; +$labels'assigned' = 'Toegewezen'; +$labels'assignedtitle' = 'Taken die u aan anderen hebt toegewezen'; +$labels'mytasks' = 'Mijn taken'; +$labels'mytaskstitle' = 'Taken die aan u zijn toegewezen'; $labels'nodate' = 'geen datum'; -$labels'removetag' = 'Verwijder'; -$labels'removelink' = 'Remove email reference'; -$labels'auto' = 'Auto'; +$labels'removetag' = 'Verwijderen'; +$labels'removelink' = 'E-mailreferentie verwijderen'; +$labels'auto' = 'Automatisch'; $labels'taskdetails' = 'Details'; -$labels'newtask' = 'Nieuwe Taak'; -$labels'edittask' = 'Taak Wijzigen'; +$labels'newtask' = 'Nieuwe taak'; +$labels'edittask' = 'Taak bewerken'; $labels'save' = 'Opslaan'; $labels'cancel' = 'Annuleren'; -$labels'saveandnotify' = 'Save and Notify'; -$labels'addsubtask' = 'Voeg subtaak toe'; -$labels'deletetask' = 'Verwijder taak'; -$labels'deletethisonly' = 'Verwijder alleen deze taak'; -$labels'deletewithchilds' = 'Verwijder inclusief subtaken'; -$labels'taskactions' = 'Task options...'; +$labels'saveandnotify' = 'Opslaan en melden'; +$labels'addsubtask' = 'Subtaak toevoegen'; +$labels'deletetask' = 'Taak verwijderen'; +$labels'deletethisonly' = 'Alleen deze taak verwijderen'; +$labels'deletewithchilds' = 'Verwijderen inclusief subtaken'; +$labels'taskactions' = 'Taakopties...'; $labels'tabsummary' = 'Samenvatting'; $labels'tabrecurrence' = 'Herhaling'; -$labels'tabassignments' = 'Assignments'; -$labels'tabattachments' = 'Toebehoren'; +$labels'tabassignments' = 'Toegewezen taken'; +$labels'tabattachments' = 'Bijlagen'; $labels'tabsharing' = 'Delen'; -$labels'editlist' = 'Lijst wijzigen'; +$labels'editlist' = 'Lijst bewerken'; $labels'createlist' = 'Lijst toevoegen'; -$labels'listactions' = 'Lijst opties...'; +$labels'listactions' = 'Lijstopties...'; $labels'listname' = 'Naam'; -$labels'showalarms' = 'Laat herinneringen zien'; +$labels'showalarms' = 'Herinneringen tonen'; $labels'import' = 'Importeren'; -$labels'viewactions' = 'View actions'; -$labels'focusview' = 'Bekijk alleen deze lijst'; +$labels'viewactions' = 'Acties weergeven'; +$labels'focusview' = 'Alleen deze lijst weergeven'; $labels'on' = 'op'; $labels'at' = 'om'; $labels'this' = 'deze'; $labels'next' = 'volgende'; $labels'yes' = 'ja'; -$labels'savingdata' = 'Data wordt opgeslagen...'; -$labels'errorsaving' = 'Fout in opslaan van data.'; -$labels'notasksfound' = 'Geen taken gevonden voor de gegeven criteria'; -$labels'invalidstartduedates' = 'Begin datum kan niet later zijn dan vervaldag.'; -$labels'deletetasktconfirm' = 'Wilt u deze taak echt verwijderen?'; -$labels'deleteparenttasktconfirm' = 'Wilt u deze taak en alle subtaken echt verwijderen?'; -$labels'deletelistconfirm' = 'Wilt u deze lijst met alle taken echt verwijderen?'; -$labels'deletelistconfirmrecursive' = 'Wilt u deze lijst en alle taken en subtaken echt verwijderen?'; -$labels'aclnorights' = 'You do not have administrator rights on this task list.'; -$labels'changetaskconfirm' = 'Update task'; -$labels'changeconfirmnotifications' = 'Do you want to notify the attendees about the modification?'; -$labels'partstatupdatenotification' = 'Do you want to notify the organizer about the status change?'; -$labels'quickaddinput' = 'New task date and title'; -$labels'arialabelquickaddbox' = 'Quick add new task'; -$labels'arialabelsearchform' = 'Task search form'; -$labels'arialabelquicksearchbox' = 'Task search input'; -$labels'arialabellistsearchform' = 'Tasklists search form'; -$labels'arialabeltaskselector' = 'List mode'; -$labels'arialabeltasklisting' = 'Tasks listing'; -$labels'attendee' = 'Assignee'; +$labels'savingdata' = 'Gegevens opslaan...'; +$labels'errorsaving' = 'Fout bij opslaan van gegevens.'; +$labels'notasksfound' = 'Geen taken gevonden voor de opgegeven criteria'; +$labels'invalidstartduedates' = 'Begindatum kan niet na vervaldatum vallen.'; +$labels'invalidstartduetimes' = 'Zowel de begindatum als de einddatum moet al dan niet een tijd opgeven.'; +$labels'recurrencerequiresdate' = 'Herhaalde taken vereisen een begin- of vervaldatum.'; +$labels'deletetasktconfirm' = 'Weet u zeker dat u deze taak wilt verwijderen?'; +$labels'deleteparenttasktconfirm' = 'Weet u zeker dat u deze taak en alle subtaken wilt verwijderen?'; +$labels'deletelistconfirm' = 'Weet u zeker dat u deze lijst met alle taken wilt verwijderen?'; +$labels'deletelistconfirmrecursive' = 'Weet u zeker dat u deze lijst met alle taken en subtaken wilt verwijderen?'; +$labels'aclnorights' = 'U hebt geen administratorrechten voor deze takenlijst.'; +$labels'changetaskconfirm' = 'Taak bijwerken'; +$labels'changeconfirmnotifications' = 'Wilt u de wijziging melden aan de deelnemers?'; +$labels'partstatupdatenotification' = 'Wilt u de gewijzigde status melden aan de organisator?'; +$labels'quickaddinput' = 'Nieuwe datum en naam voor taak'; +$labels'arialabelquickaddbox' = 'Snel nieuwe taak toevoegen'; +$labels'arialabelsearchform' = 'Zoekformulier voor taken'; +$labels'arialabelquicksearchbox' = 'Zoekopdracht voor taken'; +$labels'arialabellistsearchform' = 'Zoekformulier voor takenlijsten'; +$labels'arialabeltaskselector' = 'Lijstmodus'; +$labels'arialabeltasklisting' = 'Taken in lijst weergeven'; +$labels'attendee' = 'Toegewezen persoon'; $labels'role' = 'Rol'; -$labels'availability' = 'Beschikb.'; +$labels'availability' = 'Beschikbaar'; $labels'confirmstate' = 'Status'; -$labels'addattendee' = 'Add assignee'; -$labels'roleorganizer' = 'Organisatie'; +$labels'addattendee' = 'Toegewezen persoon toevoegen'; +$labels'roleorganizer' = 'Organisator'; $labels'rolerequired' = 'Verplicht'; $labels'roleoptional' = 'Optioneel'; $labels'rolechair' = 'Voorzitter';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/pt_BR.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/pt_BR.inc
Changed
@@ -12,82 +12,86 @@ $labels'tags' = 'Etiquetas'; $labels'export' = 'Exportar'; $labels'exporttitle' = 'Exportar para iCalendar'; -$labels'exportattachments' = 'With attachments'; +$labels'exportattachments' = 'Com anexos'; +$labels'currentview' = 'visão atual'; $labels'tasklistsubscribe' = 'Listar permanentemente'; -$labels'listsearchresults' = 'Available Tasklists'; -$labels'findlists' = 'Find tasklists...'; -$labels'searchterms' = 'Search terms'; -$labels'notasklistsfound' = 'No tasklists found'; -$labels'nrtasklistsfound' = '$nr tasklists found'; -$labels'removelist' = 'Remove from list'; +$labels'listsearchresults' = 'Listas de tarefas disponíveis'; +$labels'findlists' = 'Encontrar listas de tarefas...'; +$labels'searchterms' = 'Encontrar termos'; +$labels'notasklistsfound' = 'Listas de tarefas não encontradas'; +$labels'nrtasklistsfound' = '$nr listas de tarefas encontradas'; +$labels'removelist' = 'Remover da lista'; +$labels'showcaldavurl' = 'Mostrar URL de CalDAV'; +$labels'caldavurldescription' = 'Copie este endereço para uma aplicação <a href="http://en.wikipedia.org/wiki/CalDAV" target="_blank">CalDAV</a> cliente (ex.: Evolution ou Mozilla Thunderbird) para sincronizar esta lista de tarefas específica com o seu computador ou dispositivo móvel.'; $labels'newtask' = 'Nova Tarefa'; -$labels'createtask' = 'Create Task <Enter>'; +$labels'createtask' = 'Criar Tarefa <Enter>'; $labels'createnewtask' = 'Criar nova Tarefa (ex.: Sábado, Cortar a grama)'; $labels'createfrommail' = 'Salvar como tarefa'; -$labels'printdescriptions' = 'Descrições de impressão'; +$labels'printtitle' = 'Imprimir tarefas'; +$labels'printdescriptions' = 'Imprimir descrições'; $labels'mark' = 'Marcar'; $labels'unmark' = 'Desmarcar'; $labels'edit' = 'Editar'; -$labels'delete' = 'Deletar'; +$labels'delete' = 'Excluir'; $labels'title' = 'Título'; $labels'description' = 'Descrição'; -$labels'datetime' = 'Due'; -$labels'duetime' = 'Due time'; +$labels'datetime' = 'Vencimento'; +$labels'duetime' = 'Hora de vencimento'; $labels'start' = 'Início'; -$labels'starttime' = 'Start time'; +$labels'starttime' = 'Hora de início'; $labels'alarms' = 'Lembrete'; $labels'repeat' = 'Repetir'; -$labels'links' = 'Reference'; +$labels'links' = 'Referência'; $labels'status' = 'Situação'; -$labels'status-needs-action' = 'Needs action'; -$labels'status-in-process' = 'In process'; -$labels'status-completed' = 'Completed'; -$labels'status-cancelled' = 'Cancalado'; -$labels'assignedto' = 'Assigned to'; -$labels'created' = 'Created'; -$labels'changed' = 'Last Modified'; +$labels'status-needs-action' = 'Precisa ação'; +$labels'status-in-process' = 'Em progresso'; +$labels'status-completed' = 'Completo'; +$labels'status-cancelled' = 'Cancelado'; +$labels'assignedto' = 'Atribuído à'; +$labels'created' = 'Criado'; +$labels'changed' = 'Última modificação'; $labels'taskoptions' = 'Opções'; $labels'all' = 'Todos'; $labels'flagged' = 'Marcado'; -$labels'complete' = 'Completado'; -$labels'completeness' = 'Progress'; +$labels'complete' = 'Completo'; +$labels'completeness' = 'Progresso'; $labels'overdue' = 'Atrasado'; $labels'today' = 'Hoje'; $labels'tomorrow' = 'Amanhã'; $labels'next7days' = 'Próximos 7 dias'; $labels'later' = 'Mais tarde'; -$labels'assigned' = 'Assigned'; -$labels'assignedtitle' = 'Tasks you assigned to others'; -$labels'mytasks' = 'My tasks'; -$labels'mytaskstitle' = 'Tasks assigned to you'; +$labels'assigned' = 'Atribuído'; +$labels'assignedtitle' = 'Tarefas que você designou para outros'; +$labels'mytasks' = 'Minhas tarefas'; +$labels'mytaskstitle' = 'Tarefas designadas para você'; $labels'nodate' = 'sem data'; $labels'removetag' = 'Remover'; -$labels'removelink' = 'Remove email reference'; -$labels'auto' = 'Auto'; +$labels'removelink' = 'Remover referência do email'; +$labels'auto' = 'Automático'; $labels'taskdetails' = 'Detalhes'; $labels'newtask' = 'Nova Tarefa'; $labels'edittask' = 'Editar Tarefa'; $labels'save' = 'Gravar'; $labels'cancel' = 'Cancelar'; -$labels'saveandnotify' = 'Save and Notify'; +$labels'saveandnotify' = 'Salvar e Notificar'; $labels'addsubtask' = 'Adicionar subtarefa'; $labels'deletetask' = 'Remover tarefa'; -$labels'deletethisonly' = 'Remover esta tarefa somente'; +$labels'deletethisonly' = 'Excluir somente esta tarefa'; $labels'deletewithchilds' = 'Remover com todas as subtarefas'; -$labels'taskactions' = 'Task options...'; -$labels'tabsummary' = 'Sumário'; -$labels'tabrecurrence' = 'Repetição'; -$labels'tabassignments' = 'Assignments'; +$labels'taskactions' = 'Opções de tarefas...'; +$labels'tabsummary' = 'Resumo'; +$labels'tabrecurrence' = 'Recorrência'; +$labels'tabassignments' = 'Atribuições'; $labels'tabattachments' = 'Anexos'; $labels'tabsharing' = 'Compartilhamento'; $labels'editlist' = 'Editar lista'; $labels'createlist' = 'Adicionar lista'; $labels'listactions' = 'Opções da lista...'; $labels'listname' = 'Nome'; -$labels'showalarms' = 'Show reminders'; +$labels'showalarms' = 'Mostrar lembrentes'; $labels'import' = 'Importar'; -$labels'viewactions' = 'View actions'; -$labels'focusview' = 'View only this list'; +$labels'viewactions' = 'Ver ações'; +$labels'focusview' = 'Ver somente esta lista'; $labels'on' = 'em'; $labels'at' = 'no'; $labels'this' = 'este'; @@ -97,80 +101,45 @@ $labels'errorsaving' = 'Falha ao salvar dados.'; $labels'notasksfound' = 'Nenhuma tarefa encontrada com estes critérios'; $labels'invalidstartduedates' = 'Data de início não deve ser maior que data de término.'; -$labels'deletetasktconfirm' = 'Você realmente quer remover esta tarefa?'; -$labels'deleteparenttasktconfirm' = 'Você realmente quer remover esta tarefa e todas suas subtarefas?'; -$labels'deletelistconfirm' = 'Você realmente quer remover esta lista com todas as suas tarefas?'; -$labels'deletelistconfirmrecursive' = 'Do you really want to delete this list with all its sub-lists and tasks?'; -$labels'aclnorights' = 'You do not have administrator rights on this task list.'; -$labels'changetaskconfirm' = 'Update task'; -$labels'changeconfirmnotifications' = 'Do you want to notify the attendees about the modification?'; -$labels'partstatupdatenotification' = 'Do you want to notify the organizer about the status change?'; -$labels'quickaddinput' = 'New task date and title'; -$labels'arialabelquickaddbox' = 'Quick add new task'; -$labels'arialabelsearchform' = 'Task search form'; -$labels'arialabelquicksearchbox' = 'Task search input'; -$labels'arialabellistsearchform' = 'Tasklists search form'; -$labels'arialabeltaskselector' = 'List mode'; -$labels'arialabeltasklisting' = 'Tasks listing'; -$labels'attendee' = 'Assignee'; +$labels'invalidstartduetimes' = 'Ambas as datas de início e término devem ser especificadas ou não com um horário. +'; +$labels'recurrencerequiresdate' = 'Tarefas recursivas requerem ou uma data de início ou de término.'; +$labels'deletetasktconfirm' = 'Você realmente quer excluir esta tarefa?'; +$labels'deleteparenttasktconfirm' = 'Você realmente quer excluir esta tarefa e todas suas subtarefas?'; +$labels'deletelistconfirm' = 'Você realmente quer excluir esta lista com todas as suas tarefas?'; +$labels'deletelistconfirmrecursive' = 'Você realmente quer excluir esta lista com todas suas sublistas e tarefas?'; +$labels'aclnorights' = 'Você não tem permissões de administrador nesta lista de tareas.'; +$labels'changetaskconfirm' = 'Atualizar tarefa'; +$labels'changeconfirmnotifications' = 'Você deseja notificar os participantes sobre essa modificação?'; +$labels'partstatupdatenotification' = 'Você deseja notificar o organizador sobre a mudança de status?'; +$labels'quickaddinput' = 'Nova data e título da tarefa'; +$labels'arialabelquickaddbox' = 'Adicionar rapidamente nova tarefa'; +$labels'arialabelsearchform' = 'Formulário de busca de tarefa'; +$labels'arialabelquicksearchbox' = 'Entrada de busca de tarefa'; +$labels'arialabellistsearchform' = 'Formulário de busca de listas de tarefas'; +$labels'arialabeltaskselector' = 'Modo lista'; +$labels'arialabeltasklisting' = 'Listagem de tarefas'; +$labels'attendee' = 'Designar'; $labels'role' = 'Papel'; $labels'availability' = 'Disp.'; $labels'confirmstate' = 'Situação'; -$labels'addattendee' = 'Add assignee'; +$labels'addattendee' = 'Adicionar designação'; $labels'roleorganizer' = 'Organizador'; $labels'rolerequired' = 'Obrigatório'; $labels'roleoptional' = 'Opcional'; -$labels'rolechair' = 'Chair'; -$labels'rolenonparticipant' = 'Observer'; +$labels'rolechair' = 'Cadeira'; +$labels'rolenonparticipant' = 'Observador'; $labels'sendinvitations' = 'Enviar convites'; -$labels'sendnotifications' = 'Notify assignees about modifications'; -$labels'sendcancellation' = 'Notify assignees about task cancellation'; -$labels'invitationsubject' = 'You\'ve been assigned to "$title"'; -$labels'invitationmailbody' = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with all the task details which you can import to your tasks application."; +$labels'sendnotifications' = 'Notificar designados sobre as modificações'; +$labels'sendcancellation' = 'Notificar designados sobre tarefa cancelada'; +$labels'invitationsubject' = 'Você foi designado para "$title"'; $labels'itipupdatesubject' = '"$title" foi atualizado'; -$labels'itipupdatesubjectempty' = 'A task that concerns you has been updated'; -$labels'itipupdatemailbody' = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nPlease find attached an iCalendar file with the updated task details which you can import to your tasks application."; -$labels'itipcancelmailbody' = "*\$title*\n\nDue: \$date\n\nAssignees: \$attendees\n\nThe task has been cancelled by \$organizer.\n\nPlease find attached an iCalendar file with the updated task details."; -$labels'saveintasklist' = 'save in '; -$labels'itipobjectnotfound' = 'The task referred by this message was not found in your tasks list.'; -$labels'itipmailbodyaccepted' = "\$sender has accepted the assignment to the following task:\n\n*\$title*\n\nDue: \$date\n\nAssignees: \$attendees"; -$labels'itipmailbodytentative' = "\$sender has tentatively accepted the assignment to the following task:\n\n*\$title*\n\nDue: \$date\n\nAssignees: \$attendees"; -$labels'itipmailbodydeclined' = "\$sender has declined the assignment to the following task:\n\n*\$title*\n\nDue: \$date\n\nAssignees: \$attendees"; -$labels'itipmailbodycancel' = "\$sender has rejected your assignment to the following task:\n\n*\$title*\n\nDue: \$date"; -$labels'itipmailbodyin-process' = "\$sender has set the status of the following task to in-process:\n\n*\$title*\n\nDue: \$date"; -$labels'itipmailbodycompleted' = "\$sender has completed the following task:\n\n*\$title*\n\nDue: \$date"; -$labels'itipmailbodydelegated' = "\$sender has delegated the following task:\n\n*\$title*\n\nDue: \$date"; -$labels'itipmailbodydelegatedto' = "\$sender has delegated the following task to you:\n\n*\$title*\n\nDue: \$date"; -$labels'attendeeaccepted' = 'Assignee has accepted'; -$labels'attendeetentative' = 'Assignee has tentatively accepted';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/pt_PT.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/pt_PT.inc
Changed
@@ -6,6 +6,7 @@ * * For translation see https://www.transifex.com/projects/p/kolab/resource/tasklist/ */ +$labels'navtitle' = 'Tarefas'; $labels'export' = 'Exportar'; $labels'exporttitle' = 'Exportar para iCalendar'; $labels'exportattachments' = 'Incluir anexos';
View file
roundcubemail-plugins-kolab-3.3.1.tar.gz/plugins/tasklist/localization/ru_RU.inc -> roundcubemail-plugins-kolab-3.3.2.tar.gz/plugins/tasklist/localization/ru_RU.inc
Changed
@@ -13,6 +13,7 @@ $labels'export' = 'Экспорт'; $labels'exporttitle' = 'Экспорт в iCalendar'; $labels'exportattachments' = 'С вложениями'; +$labels'currentview' = 'текущее представление'; $labels'tasklistsubscribe' = 'Всегда показывать'; $labels'listsearchresults' = 'Доступные списки задач'; $labels'findlists' = 'Найти списки задач...'; @@ -100,6 +101,7 @@ $labels'errorsaving' = 'Не удалось сохранить.'; $labels'notasksfound' = 'По заданному условию не найдено задач'; $labels'invalidstartduedates' = 'Начальная дата не может превышать конечную.'; +$labels'invalidstartduetimes' = 'Для обоих параметров: "дата начала" и "дата окончания" должно быть указано или не указано время.'; $labels'recurrencerequiresdate' = 'Повторяющиеся задачи требуют даты начала или завершения.'; $labels'deletetasktconfirm' = 'Вы действительно хотите удалить эту задачу?'; $labels'deleteparenttasktconfirm' = 'Вы действительно хотите удалить эту задачу и все ее подзадачи?';
View file
roundcubemail-plugins-kolab.dsc
Changed
@@ -2,7 +2,7 @@ Source: roundcubemail-plugins-kolab Binary: roundcubemail-plugins-kolab Architecture: all -Version: 1:3.3.1-0~kolab2 +Version: 1:3.3.2-0~kolab1 Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> Uploaders: Paul Klos <kolab@klos2day.nl> Standards-Version: 3.9.3 @@ -34,5 +34,5 @@ roundcubemail-plugin-tinymce-config deb web extra roundcubemail-plugin-wap-client deb web extra Files: - 00000000000000000000000000000000 0 roundcubemail-plugins-kolab-3.3.1.tar.gz + 00000000000000000000000000000000 0 roundcubemail-plugins-kolab-3.3.2.tar.gz 00000000000000000000000000000000 0 debian.tar.gz
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.