Merge branch 'master' of github.com:owncloud/core into vcategories_db
|
Before Width: | Height: | Size: 742 B After Width: | Height: | Size: 559 B |
@ -1 +1 @@
|
||||
0.9.5
|
||||
0.9.8
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 706 B |
|
Before Width: | Height: | Size: 260 B After Width: | Height: | Size: 260 B |
|
Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 251 B |
|
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 178 B |
|
Before Width: | Height: | Size: 104 B After Width: | Height: | Size: 104 B |
|
Before Width: | Height: | Size: 125 B After Width: | Height: | Size: 125 B |
|
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 90 B After Width: | Height: | Size: 90 B |
|
Before Width: | Height: | Size: 129 B After Width: | Height: | Size: 129 B |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 260 B After Width: | Height: | Size: 260 B |
|
Before Width: | Height: | Size: 251 B After Width: | Height: | Size: 251 B |
|
Before Width: | Height: | Size: 178 B After Width: | Height: | Size: 178 B |
|
Before Width: | Height: | Size: 104 B After Width: | Height: | Size: 104 B |
|
Before Width: | Height: | Size: 125 B After Width: | Height: | Size: 125 B |
|
Before Width: | Height: | Size: 105 B After Width: | Height: | Size: 105 B |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 90 B After Width: | Height: | Size: 90 B |
|
Before Width: | Height: | Size: 129 B After Width: | Height: | Size: 129 B |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
@ -0,0 +1,12 @@
|
||||
/* Czech initialisation for the timepicker plugin */
|
||||
/* Written by David Spohr (spohr.david at gmail). */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['cs'] = {
|
||||
hourText: 'Hodiny',
|
||||
minuteText: 'Minuty',
|
||||
amPmText: ['AM', 'PM'] ,
|
||||
closeButtonText: 'Zavřít',
|
||||
nowButtonText: 'Nyní',
|
||||
deselectButtonText: 'Odoznačit' }
|
||||
$.timepicker.setDefaults($.timepicker.regional['cs']);
|
||||
});
|
||||
@ -1,9 +1,12 @@
|
||||
/* Deutsch initialisation for the timepicker plugin */
|
||||
/* Written by Bernd Plagge (bplagge@choicenet.ne.jp). */
|
||||
/* German initialisation for the timepicker plugin */
|
||||
/* Written by Lowie Hulzinga. */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['de'] = {
|
||||
hourText: 'Stunde',
|
||||
minuteText: 'Minuten',
|
||||
amPmText: ['AM', 'PM'] }
|
||||
amPmText: ['AM', 'PM'] ,
|
||||
closeButtonText: 'Beenden',
|
||||
nowButtonText: 'Aktuelle Zeit',
|
||||
deselectButtonText: 'Wischen' }
|
||||
$.timepicker.setDefaults($.timepicker.regional['de']);
|
||||
});
|
||||
});
|
||||
|
||||
@ -0,0 +1,12 @@
|
||||
/* Spanish initialisation for the jQuery time picker plugin. */
|
||||
/* Writen by Jandro González (agonzalezalves@gmail.com) */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['es'] = {
|
||||
hourText: 'Hora',
|
||||
minuteText: 'Minuto',
|
||||
amPmText: ['AM', 'PM'],
|
||||
closeButtonText: 'Aceptar',
|
||||
nowButtonText: 'Ahora',
|
||||
deselectButtonText: 'Deseleccionar' }
|
||||
$.timepicker.setDefaults($.timepicker.regional['es']);
|
||||
});
|
||||
@ -0,0 +1,13 @@
|
||||
/* Croatian/Bosnian initialisation for the timepicker plugin */
|
||||
/* Written by Rene Brakus (rene.brakus@infobip.com). */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['hr'] = {
|
||||
hourText: 'Sat',
|
||||
minuteText: 'Minuta',
|
||||
amPmText: ['Prijepodne', 'Poslijepodne'],
|
||||
closeButtonText: 'Zatvoriti',
|
||||
nowButtonText: 'Sada',
|
||||
deselectButtonText: 'Poništite'}
|
||||
|
||||
$.timepicker.setDefaults($.timepicker.regional['hr']);
|
||||
});
|
||||
@ -0,0 +1,12 @@
|
||||
/* Italian initialisation for the jQuery time picker plugin. */
|
||||
/* Written by Serge Margarita (serge.margarita@gmail.com) */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['it'] = {
|
||||
hourText: 'Ore',
|
||||
minuteText: 'Minuti',
|
||||
amPmText: ['AM', 'PM'],
|
||||
closeButtonText: 'Chiudi',
|
||||
nowButtonText: 'Adesso',
|
||||
deselectButtonText: 'Svuota' }
|
||||
$.timepicker.setDefaults($.timepicker.regional['it']);
|
||||
});
|
||||
@ -0,0 +1,12 @@
|
||||
/* Nederlands initialisation for the timepicker plugin */
|
||||
/* Written by Lowie Hulzinga. */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['nl'] = {
|
||||
hourText: 'Uren',
|
||||
minuteText: 'Minuten',
|
||||
amPmText: ['AM', 'PM'],
|
||||
closeButtonText: 'Sluiten',
|
||||
nowButtonText: 'Actuele tijd',
|
||||
deselectButtonText: 'Wissen' }
|
||||
$.timepicker.setDefaults($.timepicker.regional['nl']);
|
||||
});
|
||||
@ -0,0 +1,12 @@
|
||||
/* Polish initialisation for the timepicker plugin */
|
||||
/* Written by Mateusz Wadolkowski (mw@pcdoctor.pl). */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['pl'] = {
|
||||
hourText: 'Godziny',
|
||||
minuteText: 'Minuty',
|
||||
amPmText: ['', ''],
|
||||
closeButtonText: 'Zamknij',
|
||||
nowButtonText: 'Teraz',
|
||||
deselectButtonText: 'Odznacz'}
|
||||
$.timepicker.setDefaults($.timepicker.regional['pl']);
|
||||
});
|
||||
@ -0,0 +1,12 @@
|
||||
/* Brazilan initialisation for the timepicker plugin */
|
||||
/* Written by Daniel Almeida (quantodaniel@gmail.com). */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['pt-BR'] = {
|
||||
hourText: 'Hora',
|
||||
minuteText: 'Minuto',
|
||||
amPmText: ['AM', 'PM'],
|
||||
closeButtonText: 'Fechar',
|
||||
nowButtonText: 'Agora',
|
||||
deselectButtonText: 'Limpar' }
|
||||
$.timepicker.setDefaults($.timepicker.regional['pt-BR']);
|
||||
});
|
||||
@ -0,0 +1,12 @@
|
||||
/* Slovenian localization for the jQuery time picker plugin. */
|
||||
/* Written by Blaž Maležič (blaz@malezic.si) */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['sl'] = {
|
||||
hourText: 'Ure',
|
||||
minuteText: 'Minute',
|
||||
amPmText: ['AM', 'PM'],
|
||||
closeButtonText: 'Zapri',
|
||||
nowButtonText: 'Zdaj',
|
||||
deselectButtonText: 'Pobriši' }
|
||||
$.timepicker.setDefaults($.timepicker.regional['sl']);
|
||||
});
|
||||
@ -0,0 +1,12 @@
|
||||
/* Swedish initialisation for the timepicker plugin */
|
||||
/* Written by Björn Westlin (bjorn.westlin@su.se). */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['sv'] = {
|
||||
hourText: 'Timme',
|
||||
minuteText: 'Minut',
|
||||
amPmText: ['AM', 'PM'] ,
|
||||
closeButtonText: 'Stäng',
|
||||
nowButtonText: 'Nu',
|
||||
deselectButtonText: 'Rensa' }
|
||||
$.timepicker.setDefaults($.timepicker.regional['sv']);
|
||||
});
|
||||
@ -0,0 +1,12 @@
|
||||
/* Turkish initialisation for the jQuery time picker plugin. */
|
||||
/* Written by Mutlu Tevfik Koçak (mtkocak@gmail.com) */
|
||||
jQuery(function($){
|
||||
$.timepicker.regional['tr'] = {
|
||||
hourText: 'Saat',
|
||||
minuteText: 'Dakika',
|
||||
amPmText: ['AM', 'PM'],
|
||||
closeButtonText: 'Kapat',
|
||||
nowButtonText: 'Şu anda',
|
||||
deselectButtonText: 'Seçimi temizle' }
|
||||
$.timepicker.setDefaults($.timepicker.regional['tr']);
|
||||
});
|
||||
@ -1,5 +1,8 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Expire all versions" => "Eksvalidigi ĉiujn eldonojn",
|
||||
"History" => "Historio",
|
||||
"Versions" => "Eldonoj",
|
||||
"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj"
|
||||
"This will delete all existing backup versions of your files" => "Ĉi tio forigos ĉiujn estantajn sekurkopiajn eldonojn de viaj dosieroj",
|
||||
"Files Versioning" => "Dosiereldonigo",
|
||||
"Enable" => "Kapabligi"
|
||||
);
|
||||
|
||||