File tree Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -191,6 +191,9 @@ facets.used=Pou\u017eit\u00e9 filtry
191
191
192
192
ctx.actions.pdftitle =Download title as pdf
193
193
ctx.actions.onepagepdf =Download current page as pdf
194
+ ctx.actions.pdftitle.message.1 =Maximum number of pages is limited to:
195
+ ctx.actions.pdftitle.message.2 =. The pdf starts from current selected page.
196
+
194
197
195
198
ctx.actions.printandpdf =Print or pdf output
196
199
ctx.actions.print =Print
@@ -339,4 +342,4 @@ dctitle.none=unknown
339
342
common.founded =Found
340
343
common.page.singural =page
341
344
common.page.plural_1 =pages
342
- common.page.plural_2 =pages
345
+ common.page.plural_2 =pages
Original file line number Diff line number Diff line change @@ -86,6 +86,9 @@ ctx.actions.downloadoriginal=Stáhnout originál
86
86
ctx.actions.edit =Editace ...
87
87
ctx.actions.pdftitle =Stáhnout více stran jako pdf
88
88
ctx.actions.onepagepdf =Stáhnout aktuální stranu jako pdf
89
+ ctx.actions.pdftitle.message.1 =Maximání poočet stránek limitován na:
90
+ ctx.actions.pdftitle.message.2 =. Tiskne se od aktuálně vybrané.
91
+
89
92
90
93
ctx.actions.printandpdf =Tiskovy nebo PDF vystup
91
94
ctx.actions.printonepage =Tisk aktuální strany
Original file line number Diff line number Diff line change @@ -130,9 +130,9 @@ DownloadItem.prototype.open = function() {
130
130
var selAction = K5 . gui . selected . download . selectAction ( ) ;
131
131
if ( selAction && selAction . object . message ) {
132
132
var tMess = selAction . object . message ( ) ;
133
- $ ( "#download_action_message" ) . text ( tMess ) ;
133
+ $ ( "#download_action_message" ) . html ( tMess ) ;
134
134
} else {
135
- $ ( "#download_action_message" ) . text ( "" ) ;
135
+ $ ( "#download_action_message" ) . html ( "" ) ;
136
136
}
137
137
138
138
} ) ;
@@ -192,4 +192,4 @@ DownloadItem.prototype.open = function() {
192
192
193
193
DownloadItem . prototype . cleanDialog = function ( ) {
194
194
$ ( "#download_options" ) . empty ( ) ;
195
- }
195
+ }
Original file line number Diff line number Diff line change @@ -528,7 +528,9 @@ PDFSiblingsTitle.prototype = {
528
528
'message' :function ( ) {
529
529
if ( this . ctx && this . ctx . conf ) {
530
530
if ( this . ctx . conf . pdfMaxRange !== "unlimited" ) {
531
- return "Maximalni pocet stranek limitovan na:" + this . ctx . conf . pdfMaxRange + ". Tiskne se od aktualne vybrane." ;
531
+ var f = K5 . i18n . ctx . dictionary [ 'ctx.actions.pdftitle.message.1' ] ;
532
+ var s = K5 . i18n . ctx . dictionary [ 'ctx.actions.pdftitle.message.2' ] ;
533
+ return f + this . ctx . conf . pdfMaxRange + s ;
532
534
}
533
535
} else return null ;
534
536
} ,
@@ -565,7 +567,9 @@ PDFTitle.prototype = {
565
567
this . ctx . conf
566
568
if ( this . ctx && this . ctx . conf ) {
567
569
if ( this . ctx . conf . pdfMaxRange !== "unlimited" ) {
568
- return "Maximalni pocet stranek :" + this . ctx . conf . pdfMaxRange ;
570
+ var f = K5 . i18n . ctx . dictionary [ 'ctx.actions.pdftitle.message.1' ] ;
571
+ var s = K5 . i18n . ctx . dictionary [ 'ctx.actions.pdftitle.message.2' ] ;
572
+ return f + this . ctx . conf . pdfMaxRange ;
569
573
}
570
574
} else return null ;
571
575
} ,
You can’t perform that action at this time.
0 commit comments