Index: branches/MwEmbedStandAlone/tests/testLang.html |
— | — | @@ -1,194 +0,0 @@ |
2 | | -<html> |
3 | | -<head> |
4 | | -<title>Test Plural Conversions (should match php) </title> |
5 | | -<script type="text/javascript" src="../mwEmbed.js"></script> |
6 | | -<style> |
7 | | -td{ |
8 | | - border:solid thin black; |
9 | | -} |
10 | | -</style> |
11 | | -<script type="text/javascript" > |
12 | | - |
13 | | -mw.ready( function(){ |
14 | | - //for just setting one or two to test at a time for debug |
15 | | - //var langTestSet = [ 'tk', 'tt', 'sr-el', 'sr-ec', 'sr', 'shi', 'se', 'shi']; |
16 | | - //doLangTable ( langTestSet ); |
17 | | - |
18 | | - // Setup bindings: |
19 | | - $j('#runLang').click(function(){ |
20 | | - $j('#table_out,#score_card').empty(); |
21 | | - if( !mw.Language.names[ $j('#testLangKey').val() ] ){ |
22 | | - alert( escape( $j('#testLangKey').val() ) + ' does not appear to be a valid language key' ); |
23 | | - } else { |
24 | | - doLangTable( new Array( $j('#testLangKey').val() ) ) |
25 | | - } |
26 | | - }); |
27 | | - $j('#runAll').click(function(){ |
28 | | - $j('#table_out,#score_card').empty(); |
29 | | - // Build the langTestSet from mw.Language.names |
30 | | - var langTestSet = [] |
31 | | - for( var i in mw.Language.names ) { |
32 | | - langTestSet.push( i ) ; |
33 | | - } |
34 | | - doLangTable( langTestSet ); |
35 | | - }); |
36 | | - |
37 | | - // Set-up base convert plural and gender (to restore for non-transofrm languages ) |
38 | | - var baseConvertPlural = mw.Language.convertPlural; |
39 | | - var baseGender = mw.Language.gender.prototype; |
40 | | - |
41 | | - // Do mauall script loaders calls to test multiple languages: |
42 | | - function doLangTable( langSet ){ |
43 | | - $j('#table_out').loadingSpinner(); |
44 | | - //build table output: |
45 | | - var msgTestSet = { |
46 | | - 'undelete_short' : [ 0, 1, 2, 5, 21, 101 ], |
47 | | - //category-subcat-count' has two params: |
48 | | - 'category-subcat-count' : [ |
49 | | - [0,10], |
50 | | - [1,2], |
51 | | - [3,30] |
52 | | - ] |
53 | | - }; |
54 | | - |
55 | | - var passTest=0; |
56 | | - var failTest=0; |
57 | | - var testCount=0; |
58 | | - |
59 | | - /** |
60 | | - * Proccess a language key test set |
61 | | - */ |
62 | | - function doProcLangKey( langKey ){ |
63 | | - mw.log(" doProcLangKey: " + langKey ); |
64 | | - // Clear out the old digitTransformTable |
65 | | - mw.Language.digitTransformTable = null; |
66 | | - // Load the current language js file if it has a langKey |
67 | | - var transformLangKey = mw.getLangTransformKey ( langKey ); |
68 | | - if( transformLangKey != 'en' ){ |
69 | | - mw.log( langKey + " load msg transform" ); |
70 | | - var langName = 'Language' + transformLangKey.substr(0,1).toUpperCase() + transformLangKey.substr( 1, transformLangKey.length ); |
71 | | - $j.getScript( '../languages/classes/' + langName + '.js' , function(){ |
72 | | - doLangTest(); |
73 | | - }); |
74 | | - } else { |
75 | | - mw.log( langKey + " no msg transform restore base" ); |
76 | | - //If no transform, restore base plural |
77 | | - mw.Language.convertPlural = baseConvertPlural; |
78 | | - doLangTest(); |
79 | | - } |
80 | | - |
81 | | - function doLangTest(){ |
82 | | - // Get the current language mw.testLang js |
83 | | - $j.getScript( '../../../mwScriptLoader.php?class=mw.testLang&debug=true&uselang='+langKey, function(){ |
84 | | - var o=''; |
85 | | - o+='<tr><td colspan="6" height="20" style="font-size:large"><b>Lang:' + langKey + '</b></td></tr>'; |
86 | | - //now for each langage msg: |
87 | | - $j.each(msgTestSet, function(mKey, mTestSet){ |
88 | | - //output table names: |
89 | | - o+='<tr>'+ |
90 | | - '<td>$1[,$2]</td>'+ |
91 | | - '<td width="14%">Msg key</td>'+ |
92 | | - '<td width="34%">Msg text</td>'+ |
93 | | - '<td width="24%">Msg Transform JS</td>'+ |
94 | | - '<td width="24%">Msg Transform Mw</td>'+ |
95 | | - '</tr>'; |
96 | | - |
97 | | - //for each number value |
98 | | - for(var i in mTestSet){ |
99 | | - var numVal = mTestSet[i]; |
100 | | - var numKey = (typeof numVal== 'object')? numVal.join( '_' ).replace('/ /', '_') : numVal; |
101 | | - var tkey = mKey + '_' + numKey + '_' + langKey; |
102 | | - o+='<tr>'+ |
103 | | - '<td>' + numVal + '</td>' + |
104 | | - '<td>' + mKey + '</td>' + |
105 | | - '<td>' + mw.Language.msgNoTrans( mKey ) + '</td>' + |
106 | | - '<td id="' + tkey + '_js">' + gM( mKey, numVal ) + '</td>'; |
107 | | - //show mw col: |
108 | | - if( mKey.substr(0, 5) == 'test_' ){ |
109 | | - o+='<td> (test msg) </td>'; |
110 | | - }else{ |
111 | | - o+='<td id="' + tkey + '">loading...</td>'; |
112 | | - |
113 | | - //get transform from mw (& compare and highlight) |
114 | | - function doPopWmMsg(mKey, numVal, numKey){ |
115 | | - //set the local tkey: |
116 | | - var tkey = mKey + '_' + numKey + '_' + langKey; |
117 | | - testCount++; |
118 | | - $j('#score_card').html('Running Tests <span id="perc_done">0</sapn>% done'); |
119 | | - var msgparam = (typeof numVal== 'object')? numVal.join( '|' ) : numVal; |
120 | | - var request = { |
121 | | - 'action' : 'query', |
122 | | - 'meta' : 'allmessages', |
123 | | - 'ammessages' : mKey, |
124 | | - 'amlang' : langKey, |
125 | | - 'amargs' : msgparam, |
126 | | - 'amenableparser' : true |
127 | | - }; |
128 | | - mw.getJSON('../../../api.php', request, function( data ) { |
129 | | - var t = '#'+ tkey; |
130 | | - var $target = $j( t ) ; |
131 | | - if( data.query && data.query.allmessages && data.query.allmessages[0]){ |
132 | | - var msgText = data.query.allmessages && data.query.allmessages[0]['*']; |
133 | | - if( msgText == '' ) |
134 | | - msgText = ' %missing% '; |
135 | | - $target.html( msgText ); |
136 | | - var js_txt = $j.trim( $j(t + '_js').text().replace('\n', '') ); |
137 | | - var php_txt = $j.trim( msgText ); |
138 | | - // Just get the part in the <p> to compare with js version |
139 | | - if( js_txt != php_txt ){ |
140 | | - $target.css('color', 'red'); |
141 | | - failTest++; |
142 | | - }else{ |
143 | | - $target.css('color', 'green'); |
144 | | - passTest++; |
145 | | - } |
146 | | - var perc = ( failTest + passTest ) / testCount |
147 | | - if( perc != 1){ |
148 | | - $j('#perc_done').html( Math.round(perc*1000)/1000 + '%'); |
149 | | - }else{ |
150 | | - var failHtlm = (failTest == 0)?failTest: '<span style="color:red">'+ failTest+'</span>'; |
151 | | - $j('#score_card').html( |
152 | | - 'Passed: <span style="color:green">' + passTest + '</span> Failed:' + failHtlm ); |
153 | | - |
154 | | - //done with this lang... call outer function if we have lang keys left to proccess: |
155 | | - if( langSet.length !=0 ) |
156 | | - doProcLangKey( langSet.pop() ); |
157 | | - } |
158 | | - }else{ |
159 | | - $target.html(' error ').css('color', 'red'); |
160 | | - } |
161 | | - }); |
162 | | - }; |
163 | | - //pop off an anonymous function call |
164 | | - doPopWmMsg(mKey, numVal, numKey); |
165 | | - } |
166 | | - o+='</tr>'; |
167 | | - } |
168 | | - //output a spacer: |
169 | | - o+='<tr><td colspan="6" height="20"> </td></tr>'; |
170 | | - }); |
171 | | - // remove the spiner |
172 | | - $j( '.loading_spinner').remove(); |
173 | | - //put the output into the page: |
174 | | - $j('#table_out').append( o ); |
175 | | - }); |
176 | | - } |
177 | | - }//procc lang key: |
178 | | - |
179 | | - doProcLangKey( langSet.pop() ); |
180 | | - } |
181 | | -}); |
182 | | - |
183 | | -</script> |
184 | | -</head> |
185 | | -<body> |
186 | | -<h3>Test Javascript plural msg transformations ( note this is a very resource intensive test )</h3> |
187 | | -<a id="runAll" href="#">Run Test all<a> ( takes a while ) <br> |
188 | | -<a id="runLang" href="#">Run Language Key</a>:<input size="5" id="testLangKey" name = "testLangKey" value="en"/> |
189 | | - |
190 | | -<div id="score_card" style="font-size:large"></div> |
191 | | -<table id="table_out"></table> |
192 | | - |
193 | | - |
194 | | -</body> |
195 | | -</html> |
Index: branches/MwEmbedStandAlone/tests/testLang.js |
— | — | @@ -1,10 +0,0 @@ |
2 | | -/* a simple language tester replacements |
3 | | - */ |
4 | | - |
5 | | -mw.addMessages( { |
6 | | - "undelete_short" : "Undelete {{PLURAL:$1|one edit|$1 edits}}", |
7 | | - "category-subcat-count" : "{{PLURAL:$2|This category has only the following subcategory.|This category has the following {{PLURAL:$1|subcategory|$1 subcategories}}, out of $2 total.}}", |
8 | | - "mwe-upload-multi" : "Upload {{PLURAL:$1|file|files}}" |
9 | | -} ); |
10 | | -// define a class by the name of this file: |
11 | | -mw.testLang = { }; |
\ No newline at end of file |
Index: branches/MwEmbedStandAlone/modules/TimedText/mw.TimedText.js |
— | — | @@ -17,34 +17,34 @@ |
18 | 18 | */ |
19 | 19 | |
20 | 20 | mw.addMessages( { |
21 | | - "mwe-back-btn" : "Back", |
22 | | - "mwe-chose-text" : "Chose text", |
23 | | - "mwe-add-timed-text" : "Add timed text", |
24 | | - "mwe-loading-text-edit" : "Loading timed text editor", |
| 21 | + "mwe-timedtext-back-btn" : "Back", |
| 22 | + "mwe-timedtext-choose-text" : "Chose text", |
| 23 | + "mwe-timedtext-add-timed-text" : "Add timed text", |
| 24 | + "mwe-timedtext-loading-text-edit" : "Loading timed text editor", |
25 | 25 | |
26 | | - "mwe-search" : "Search clip", |
| 26 | + "mwe-timedtext-search" : "Search clip", |
27 | 27 | |
28 | | - "mwe-layout" : "Layout", |
29 | | - "mwe-layout-ontop" : "Ontop of video", |
30 | | - "mwe-layout-below": "Below video", |
31 | | - "mwe-layout-off" : "Hide subtitles", |
| 28 | + "mwe-timedtext-layout" : "Layout", |
| 29 | + "mwe-timedtext-layout-ontop" : "Ontop of video", |
| 30 | + "mwe-timedtext-layout-below": "Below video", |
| 31 | + "mwe-timedtext-layout-off" : "Hide subtitles", |
32 | 32 | |
33 | | - "mwe-loading-text" : "Loading text ...", |
| 33 | + "mwe-timedtext-loading-text" : "Loading text ...", |
34 | 34 | |
35 | | - "mwe-key-language": "$1, $2", |
| 35 | + "mwe-timedtext-key-language": "$1, $2", |
36 | 36 | |
37 | | - "mwe-textcat-cc" : "Captions", |
38 | | - "mwe-textcat-sub" : "Subtitles", |
39 | | - "mwe-textcat-tad" : "Audio description", |
40 | | - "mwe-textcat-ktv" : "Karaoke", |
41 | | - "mwe-textcat-tik" : "Ticker text", |
42 | | - "mwe-textcat-ar" : "Active regions", |
43 | | - "mwe-textcat-nb" : "Annotation", |
44 | | - "mwe-textcat-meta" : "Timed metadata", |
45 | | - "mwe-textcat-trx" : "Transcript", |
46 | | - "mwe-textcat-lrc" : "Lyrics", |
47 | | - "mwe-textcat-lin" : "Linguistic markup", |
48 | | - "mwe-textcat-cue" : "Cue points" |
| 37 | + "mwe-timedtext-textcat-cc" : "Captions", |
| 38 | + "mwe-timedtext-textcat-sub" : "Subtitles", |
| 39 | + "mwe-timedtext-textcat-tad" : "Audio description", |
| 40 | + "mwe-timedtext-textcat-ktv" : "Karaoke", |
| 41 | + "mwe-timedtext-textcat-tik" : "Ticker text", |
| 42 | + "mwe-timedtext-textcat-ar" : "Active regions", |
| 43 | + "mwe-timedtext-textcat-nb" : "Annotation", |
| 44 | + "mwe-timedtext-textcat-meta" : "Timed metadata", |
| 45 | + "mwe-timedtext-textcat-trx" : "Transcript", |
| 46 | + "mwe-timedtext-textcat-lrc" : "Lyrics", |
| 47 | + "mwe-timedtext-textcat-lin" : "Linguistic markup", |
| 48 | + "mwe-timedtext-textcat-cue" : "Cue points" |
49 | 49 | } ); |
50 | 50 | |
51 | 51 | // Bind to mw ( for uncluttered global namespace ) |
— | — | @@ -235,7 +235,7 @@ |
236 | 236 | 'autoShow': autoShow, |
237 | 237 | 'targetMenuContainer' : _this.menuTarget, |
238 | 238 | 'positionOpts' : positionOpts, |
239 | | - 'backLinkText' : gM( 'mwe-back-btn' ) |
| 239 | + 'backLinkText' : gM( 'mwe-timedtext-back-btn' ) |
240 | 240 | } ) |
241 | 241 | }); |
242 | 242 | }, |
— | — | @@ -458,16 +458,16 @@ |
459 | 459 | // Chouse text menu item ( if there are sources) |
460 | 460 | if( _this.textSources.length != 0 ) { |
461 | 461 | $menu.append( |
462 | | - $j.getLineItem( gM( 'mwe-chose-text'), 'comment' ).append( |
| 462 | + $j.getLineItem( gM( 'mwe-timedtext-choose-text'), 'comment' ).append( |
463 | 463 | _this.getLanguageMenu() |
464 | 464 | ), |
465 | 465 | // Layout Menu option |
466 | | - $j.getLineItem( gM( 'mwe-layout' ), 'image' ).append( |
| 466 | + $j.getLineItem( gM( 'mwe-timedtext-layout' ), 'image' ).append( |
467 | 467 | _this.getLayoutMenu() |
468 | 468 | ) |
469 | 469 | |
470 | 470 | // Search Menu option |
471 | | - //$j.getLineItem( gM('mwe-search'), 'search') |
| 471 | + //$j.getLineItem( gM('mwe-timedtext-search'), 'search') |
472 | 472 | ); |
473 | 473 | } |
474 | 474 | // Put in the "Make Transcript" link |
— | — | @@ -487,7 +487,7 @@ |
488 | 488 | showTimedTextEditUI: function( mode ) { |
489 | 489 | var _this = this; |
490 | 490 | // Show a loader: |
491 | | - mw.addLoaderDialog( gM( 'mwe-loading-text-edit' )); |
| 491 | + mw.addLoaderDialog( gM( 'mwe-timedtext-loading-text-edit' )); |
492 | 492 | // Load the timedText edit interface |
493 | 493 | mw.load( 'TimedText.Edit', function() { |
494 | 494 | if( ! _this.editText ) { |
— | — | @@ -511,7 +511,7 @@ |
512 | 512 | */ |
513 | 513 | getLiAddText: function() { |
514 | 514 | var _this = this; |
515 | | - return $j.getLineItem( gM( 'mwe-add-timed-text'), 'script', function() { |
| 515 | + return $j.getLineItem( gM( 'mwe-timedtext-add-timed-text'), 'script', function() { |
516 | 516 | _this.showTimedTextEditUI( 'add' ); |
517 | 517 | } ) |
518 | 518 | }, |
— | — | @@ -536,7 +536,7 @@ |
537 | 537 | var langKey = source.lang.toLowerCase(); |
538 | 538 | _this.getLanguageName ( langKey ); |
539 | 539 | return $j.getLineItem( |
540 | | - gM('mwe-key-language', [langKey, unescape( mw.Language.names[ source.lang ] ) ] ), |
| 540 | + gM('mwe-timedtext-key-language', [langKey, unescape( mw.Language.names[ source.lang ] ) ] ), |
541 | 541 | source_icon, |
542 | 542 | function() { |
543 | 543 | mw.log(" call selectTextSource"); |
— | — | @@ -579,7 +579,7 @@ |
580 | 580 | var icon = ( _this.config.layout == layoutMode ) ? 'bullet' : 'radio-on'; |
581 | 581 | $ul.append( |
582 | 582 | $j.getLineItem( |
583 | | - gM( 'mwe-layout-' + layoutMode), |
| 583 | + gM( 'mwe-timedtext-layout-' + layoutMode), |
584 | 584 | icon, |
585 | 585 | function() { |
586 | 586 | _this.selectLayout( layoutMode ); |
— | — | @@ -641,7 +641,7 @@ |
642 | 642 | //Set any existing text target to "loading" |
643 | 643 | if( !source.loaded ) { |
644 | 644 | var $playerTarget = this.embedPlayer.$interface; |
645 | | - $playerTarget.find('.itext').text( gM('mwe-loading-text') ); |
| 645 | + $playerTarget.find('.itext').text( gM('mwe-timedtext-loading-text') ); |
646 | 646 | } |
647 | 647 | // Load the text: |
648 | 648 | source.load( function() { |
— | — | @@ -706,7 +706,7 @@ |
707 | 707 | } |
708 | 708 | // Append a cat menu item for each category list |
709 | 709 | $langMenu.append( |
710 | | - $j.getLineItem( gM( 'mwe-textcat-' + catKey.toLowerCase() ) ).append( |
| 710 | + $j.getLineItem( gM( 'mwe-timedtext-textcat-' + catKey.toLowerCase() ) ).append( |
711 | 711 | $catChildren |
712 | 712 | ) |
713 | 713 | ); |
Index: branches/MwEmbedStandAlone/modules/TimedText/mw.TimedTextEdit.js |
— | — | @@ -2,30 +2,30 @@ |
3 | 3 | * Timed text edit interface based off of participatory culture foundation timed text mockups. |
4 | 4 | */ |
5 | 5 | mw.addMessages( { |
6 | | - "mew-timedtext-editor" : "Timed text editor", |
7 | | - "mwe-stage-transcribe" : "Transcribe", |
8 | | - "mwe-stage-sync" : "Sync", |
9 | | - "mwe-stage-translate" : "Translate", |
10 | | - "mwe-stage-upload" : "Upload from local file", |
| 6 | + "mwe-timedtext-editor" : "Timed text editor", |
| 7 | + "mwe-timedtext-stage-transcribe" : "Transcribe", |
| 8 | + "mwe-timedtext-stage-sync" : "Sync", |
| 9 | + "mwe-timedtext-stage-translate" : "Translate", |
| 10 | + "mwe-timedtext-stage-upload" : "Upload from local file", |
11 | 11 | |
12 | | - "mwe-select-language": "Select language", |
13 | | - "mwe-file-language": "Subtitle file language", |
| 12 | + "mwe-timedtext-select-language": "Select language", |
| 13 | + "mwe-timedtext-file-language": "Subtitle file language", |
14 | 14 | |
15 | | - "mwe-upload-text": "Upload text file", |
16 | | - "mwe-uploading-text": "Uploading text file", |
17 | | - "mwe-upload-text-desc-title": "Upload a text file", |
18 | | - "mwe-upload-text-desc-help": "The upload text file interface accepts .srt files", |
19 | | - "mwe-upload-text-desc-help-browse": "Browse your local computer for the srt file you want to upload", |
20 | | - "mwe-upload-text-desc-help-select" : "Select the language of the file", |
21 | | - "mwe-upload-text-desc-help-review" : "Review / edit the text content and then press upload to add the text", |
22 | | - "mwe-upload-text-preview" : "Review text", |
| 15 | + "mwe-timedtext-upload-text": "Upload text file", |
| 16 | + "mwe-timedtext-uploading-text": "Uploading text file", |
| 17 | + "mwe-timedtext-upload-text-desc-title": "Upload a text file", |
| 18 | + "mwe-timedtext-upload-text-desc-help": "The upload text file interface accepts .srt files", |
| 19 | + "mwe-timedtext-upload-text-desc-help-browse": "Browse your local computer for the srt file you want to upload", |
| 20 | + "mwe-timedtext-upload-text-desc-help-select" : "Select the language of the file", |
| 21 | + "mwe-timedtext-upload-text-desc-help-review" : "Review / edit the text content and then press upload to add the text", |
| 22 | + "mwe-timedtext-upload-text-preview" : "Review text", |
23 | 23 | |
24 | | - "mwe-upload-text-success" : "Upload of timed text was successful", |
25 | | - "mwe-upload-text-done" : "Upload done", |
26 | | - "mwe-upload-text-fail-desc" : "Upload was unsuccessful", |
27 | | - "mwe-upload-text-fail-title" : "Upload failed", |
28 | | - "mwe-upload-text-another" : "Upload another", |
29 | | - "mwe-upload-text-done-uploading" : "Done uploading" |
| 24 | + "mwe-timedtext-upload-text-success" : "Upload of timed text was successful", |
| 25 | + "mwe-timedtext-upload-text-done" : "Upload done", |
| 26 | + "mwe-timedtext-upload-text-fail-desc" : "Upload was unsuccessful", |
| 27 | + "mwe-timedtext-upload-text-fail-title" : "Upload failed", |
| 28 | + "mwe-timedtext-upload-text-another" : "Upload another", |
| 29 | + "mwe-timedtext-upload-text-done-uploading" : "Done uploading" |
30 | 30 | } ); |
31 | 31 | |
32 | 32 | mw.TimedTextEdit = function( parentTimedText ) { |
— | — | @@ -99,7 +99,7 @@ |
100 | 100 | .addClass( 'ui-icon ui-icon-' + editStage.icon ) |
101 | 101 | , |
102 | 102 | $j('<span>') |
103 | | - .text( gM('mwe-stage-' + edit_stage_id) ) |
| 103 | + .text( gM('mwe-timedtext-stage-' + edit_stage_id) ) |
104 | 104 | ) |
105 | 105 | ) |
106 | 106 | ); |
— | — | @@ -159,7 +159,7 @@ |
160 | 160 | $j('<div />') |
161 | 161 | .addClass( "leftcolumn" ) |
162 | 162 | .append('<h4>') |
163 | | - .text( gM('mwe-upload-text') ), |
| 163 | + .text( gM('mwe-timedtext-upload-text') ), |
164 | 164 | $j('<div />') |
165 | 165 | .addClass( 'rightcolumn' ) |
166 | 166 | .append( |
— | — | @@ -167,17 +167,17 @@ |
168 | 168 | .attr('id', "timed-text-rightcolum-desc") |
169 | 169 | .append( |
170 | 170 | $j('<h4>') |
171 | | - .text( gM('mwe-upload-text-desc-title') ), |
172 | | - $j('<i>').text ( gM( 'mwe-upload-text-desc-help' ) ), |
| 171 | + .text( gM('mwe-timedtext-upload-text-desc-title') ), |
| 172 | + $j('<i>').text ( gM( 'mwe-timedtext-upload-text-desc-help' ) ), |
173 | 173 | $j('<ul>').append( |
174 | | - $j('<li>').text( gM('mwe-upload-text-desc-help-browse') ), |
175 | | - $j('<li>').text( gM('mwe-upload-text-desc-help-select') ), |
176 | | - $j('<li>').text( gM('mwe-upload-text-desc-help-review') ) |
| 174 | + $j('<li>').text( gM('mwe-timedtext-upload-text-desc-help-browse') ), |
| 175 | + $j('<li>').text( gM('mwe-timedtext-upload-text-desc-help-select') ), |
| 176 | + $j('<li>').text( gM('mwe-timedtext-upload-text-desc-help-review') ) |
177 | 177 | ) |
178 | 178 | ), |
179 | 179 | //The text preview |
180 | 180 | $j('<h3>') |
181 | | - .text( gM( 'mwe-upload-text-preview' ) ), |
| 181 | + .text( gM( 'mwe-timedtext-upload-text-preview' ) ), |
182 | 182 | $j('<textarea id="timed-text-file-preview"></textarea>') |
183 | 183 | ) |
184 | 184 | ) |
— | — | @@ -226,7 +226,7 @@ |
227 | 227 | $j.button( { |
228 | 228 | 'style': { 'float' : 'left' }, |
229 | 229 | 'class': 'language-select-btn', |
230 | | - 'text': gM('mwe-select-language'), |
| 230 | + 'text': gM('mwe-timedtext-select-language'), |
231 | 231 | 'icon_id': 'triangle-1-e' |
232 | 232 | } ).attr('id', 'language-select') |
233 | 233 | .unbind() |
— | — | @@ -258,7 +258,7 @@ |
259 | 259 | // Add menu binding to button target |
260 | 260 | $buttonTarget.menu( { |
261 | 261 | 'content' : _this.getLanguageList(), |
262 | | - 'backLinkText' : gM( 'mwe-back-btn' ), |
| 262 | + 'backLinkText' : gM( 'mwe-timedtext-back-btn' ), |
263 | 263 | 'targetMenuContainer': '#upload-language-select' |
264 | 264 | } ); |
265 | 265 | |
— | — | @@ -299,7 +299,7 @@ |
300 | 300 | $j('<br />'), |
301 | 301 | $j.button( { |
302 | 302 | 'style': { 'float' : 'left' }, |
303 | | - 'text': gM('mwe-upload-text'), |
| 303 | + 'text': gM('mwe-timedtext-upload-text'), |
304 | 304 | 'icon_id': 'disk' |
305 | 305 | } ) |
306 | 306 | .unbind() |
— | — | @@ -315,7 +315,7 @@ |
316 | 316 | */ |
317 | 317 | uploadTextFile: function() { |
318 | 318 | // Put a dialog ontop |
319 | | - mw.addLoaderDialog( gM( 'mwe-uploading-text') ); |
| 319 | + mw.addLoaderDialog( gM( 'mwe-timedtext-uploading-text') ); |
320 | 320 | |
321 | 321 | // Get timed text target title |
322 | 322 | // NOTE: this should be cleaned up with accessors |
— | — | @@ -339,23 +339,23 @@ |
340 | 340 | |
341 | 341 | if( data.edit && data.edit.result == 'Success' ) { |
342 | 342 | var buttons = { }; |
343 | | - buttons[ gM("mwe-upload-text-another")] = function() { |
| 343 | + buttons[ gM("mwe-timedtext-upload-text-another")] = function() { |
344 | 344 | // just close the current dialog: |
345 | 345 | $j( this ).dialog('close'); |
346 | 346 | } |
347 | | - buttons[ gM( "mwe-upload-text-done-uploading" ) ] = function() { |
| 347 | + buttons[ gM( "mwe-timedtext-upload-text-done-uploading" ) ] = function() { |
348 | 348 | window.location.reload(); |
349 | 349 | } |
350 | 350 | //Edit success |
351 | 351 | mw.addDialog( |
352 | | - gM( "mwe-upload-text-done"), |
353 | | - gM("mwe-upload-text-success"), |
| 352 | + gM( "mwe-timedtext-upload-text-done"), |
| 353 | + gM("mwe-timedtext-upload-text-success"), |
354 | 354 | buttons |
355 | 355 | ) |
356 | 356 | }else{ |
357 | 357 | mw.addDialog( |
358 | | - gM( "mwe-upload-text-fail-title"), |
359 | | - gM( "mwe-upload-text-fail-desc"), |
| 358 | + gM( "mwe-timedtext-upload-text-fail-title"), |
| 359 | + gM( "mwe-timedtext-upload-text-fail-desc"), |
360 | 360 | 'ok' |
361 | 361 | ) |
362 | 362 | } |
— | — | @@ -419,14 +419,14 @@ |
420 | 420 | $j('<div>') |
421 | 421 | .attr({ |
422 | 422 | 'id' : 'timedTextEdit_target', |
423 | | - 'title' : gM( 'mew-timedtext-editor' ) |
| 423 | + 'title' : gM( 'mwe-timedtext-editor' ) |
424 | 424 | }) |
425 | 425 | .addClass('TimedTextEdit') |
426 | 426 | ); |
427 | 427 | |
428 | 428 | // Build cancel button |
429 | 429 | var cancelButton = {}; |
430 | | - var cancelText = gM( 'mwe-cancel' ); |
| 430 | + var cancelText = gM( 'mwe-timedtext-cancel' ); |
431 | 431 | cancelButton[ cancelText ] = function() { |
432 | 432 | _this.onCancelClipEdit(); |
433 | 433 | }; |
Index: branches/MwEmbedStandAlone/modules/TimedText/TimedText.i18n.php |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Internationalisation for TimedText |
5 | 5 | * |
6 | 6 | * @file |
— | — | @@ -7,51 +7,163 @@ |
8 | 8 | */ |
9 | 9 | |
10 | 10 | $messages = array(); |
| 11 | + |
11 | 12 | $messages['en'] = array( |
12 | | - 'mew-timedtext-editor' => 'Timed text editor', |
13 | | - 'mwe-stage-transcribe' => 'Transcribe', |
14 | | - 'mwe-stage-sync' => 'Sync', |
15 | | - 'mwe-stage-translate' => 'Translate', |
16 | | - 'mwe-stage-upload' => 'Upload from local file', |
17 | | - 'mwe-select-language' => 'Select language', |
18 | | - 'mwe-file-language' => 'Subtitle file language', |
19 | | - 'mwe-upload-text' => 'Upload text file', |
20 | | - 'mwe-uploading-text' => 'Uploading text file', |
21 | | - 'mwe-upload-text-desc-title' => 'Upload a text file', |
22 | | - 'mwe-upload-text-desc-help' => 'The upload text file interface accepts .srt files', |
23 | | - 'mwe-upload-text-desc-help-browse' => 'Browse your local computer for the srt file you want to upload', |
24 | | - 'mwe-upload-text-desc-help-select' => 'Select the language of the file', |
25 | | - 'mwe-upload-text-desc-help-review' => 'Review / edit the text content and then press upload to add the text', |
26 | | - 'mwe-upload-text-preview' => 'Review text', |
27 | | - 'mwe-upload-text-success' => 'Upload of timed text was successful', |
28 | | - 'mwe-upload-text-done' => 'Upload done', |
29 | | - 'mwe-upload-text-fail-desc' => 'Upload was unsuccessful', |
30 | | - 'mwe-upload-text-fail-title' => 'Upload failed', |
31 | | - 'mwe-upload-text-another' => 'Upload another', |
32 | | - 'mwe-upload-text-done-uploading' => 'Done uploading', |
33 | | - 'mwe-back-btn' => 'Back', |
34 | | - 'mwe-chose-text' => 'Chose text', |
35 | | - 'mwe-add-timed-text' => 'Add timed text', |
36 | | - 'mwe-loading-text-edit' => 'Loading timed text editor', |
37 | | - 'mwe-search' => 'Search clip', |
38 | | - 'mwe-layout' => 'Layout', |
39 | | - 'mwe-layout-ontop' => 'Ontop of video', |
40 | | - 'mwe-layout-below' => 'Below video', |
41 | | - 'mwe-layout-off' => 'Hide subtitles', |
42 | | - 'mwe-loading-text' => 'Loading text ...', |
43 | | - 'mwe-key-language' => '$1, $2', |
44 | | - 'mwe-textcat-cc' => 'Captions', |
45 | | - 'mwe-textcat-sub' => 'Subtitles', |
46 | | - 'mwe-textcat-tad' => 'Audio description', |
47 | | - 'mwe-textcat-ktv' => 'Karaoke', |
48 | | - 'mwe-textcat-tik' => 'Ticker text', |
49 | | - 'mwe-textcat-ar' => 'Active regions', |
50 | | - 'mwe-textcat-nb' => 'Annotation', |
51 | | - 'mwe-textcat-meta' => 'Timed metadata', |
52 | | - 'mwe-textcat-trx' => 'Transcript', |
53 | | - 'mwe-textcat-lrc' => 'Lyrics', |
54 | | - 'mwe-textcat-lin' => 'Linguistic markup', |
55 | | - 'mwe-textcat-cue' => 'Cue points', |
56 | | - 'mwe-language-subtitles-for-clip' => '$1 subtitles for clip: $2', |
57 | | - 'mwe-language-no-subtitles-for-clip' => 'No $1 subtitles where found for clip: $2', |
| 13 | + 'mwe-timedtext-editor' => 'Timed text editor', |
| 14 | + 'mwe-timedtext-stage-transcribe' => 'Transcribe', |
| 15 | + 'mwe-timedtext-stage-sync' => 'Sync', |
| 16 | + 'mwe-timedtext-stage-translate' => 'Translate', |
| 17 | + 'mwe-timedtext-stage-upload' => 'Upload from local file', |
| 18 | + 'mwe-timedtext-select-language' => 'Select language', |
| 19 | + 'mwe-timedtext-file-language' => 'Subtitle file language', |
| 20 | + 'mwe-timedtext-upload-text' => 'Upload text file', |
| 21 | + 'mwe-timedtext-uploading-text' => 'Uploading text file', |
| 22 | + 'mwe-timedtext-upload-text-desc-title' => 'Upload a text file', |
| 23 | + 'mwe-timedtext-upload-text-desc-help' => 'The upload text file interface accepts .srt files', |
| 24 | + 'mwe-timedtext-upload-text-desc-help-browse' => 'Browse your local computer for the .srt file you want to upload', |
| 25 | + 'mwe-timedtext-upload-text-desc-help-select' => 'Select the language of the file', |
| 26 | + 'mwe-timedtext-upload-text-desc-help-review' => 'Review / edit the text content and then press upload to add the text', |
| 27 | + 'mwe-timedtext-upload-text-preview' => 'Review text', |
| 28 | + 'mwe-timedtext-upload-text-success' => 'Upload of timed text was successful', |
| 29 | + 'mwe-timedtext-upload-text-done' => 'Upload done', |
| 30 | + 'mwe-timedtext-upload-text-fail-desc' => 'Upload was unsuccessful', |
| 31 | + 'mwe-timedtext-upload-text-fail-title' => 'Upload failed', |
| 32 | + 'mwe-timedtext-upload-text-another' => 'Upload another', |
| 33 | + 'mwe-timedtext-upload-text-done-uploading' => 'Done uploading', |
| 34 | + 'mwe-timedtext-back-btn' => 'Back', |
| 35 | + 'mwe-timedtext-choose-text' => 'Choose text', |
| 36 | + 'mwe-timedtext-add-timed-text' => 'Add timed text', |
| 37 | + 'mwe-timedtext-loading-text-edit' => 'Loading timed text editor', |
| 38 | + 'mwe-timedtext-search' => 'Search clip', |
| 39 | + 'mwe-timedtext-layout' => 'Layout', |
| 40 | + 'mwe-timedtext-layout-ontop' => 'On top of video', |
| 41 | + 'mwe-timedtext-layout-below' => 'Below video', |
| 42 | + 'mwe-timedtext-layout-off' => 'Hide subtitles', |
| 43 | + 'mwe-timedtext-loading-text' => 'Loading text ...', |
| 44 | + 'mwe-timedtext-key-language' => '$1, $2', |
| 45 | + 'mwe-timedtext-textcat-cc' => 'Captions', |
| 46 | + 'mwe-timedtext-textcat-sub' => 'Subtitles', |
| 47 | + 'mwe-timedtext-textcat-tad' => 'Audio description', |
| 48 | + 'mwe-timedtext-textcat-ktv' => 'Karaoke', |
| 49 | + 'mwe-timedtext-textcat-tik' => 'Ticker text', |
| 50 | + 'mwe-timedtext-textcat-ar' => 'Active regions', |
| 51 | + 'mwe-timedtext-textcat-nb' => 'Annotation', |
| 52 | + 'mwe-timedtext-textcat-meta' => 'Timed metadata', |
| 53 | + 'mwe-timedtext-textcat-trx' => 'Transcript', |
| 54 | + 'mwe-timedtext-textcat-lrc' => 'Lyrics', |
| 55 | + 'mwe-timedtext-textcat-lin' => 'Linguistic markup', |
| 56 | + 'mwe-timedtext-textcat-cue' => 'Cue points', |
| 57 | + 'mwe-timedtext-language-subtitles-for-clip' => '$1 subtitles for clip: $2', |
| 58 | + 'mwe-timedtext-language-no-subtitles-for-clip' => 'No $1 subtitles where found for clip: $2', |
58 | 59 | ); |
| 60 | + |
| 61 | +/** Dutch (Nederlands) |
| 62 | + * @author Siebrand |
| 63 | + */ |
| 64 | +$messages['nl'] = array( |
| 65 | + 'mwe-timedtext-editor' => 'Tekstverwerker voor ondertitels', |
| 66 | + 'mwe-timedtext-stage-transcribe' => 'Transcriptie', |
| 67 | + 'mwe-timedtext-stage-sync' => 'Synchroniseren', |
| 68 | + 'mwe-timedtext-stage-translate' => 'Vertalen', |
| 69 | + 'mwe-timedtext-stage-upload' => 'Uploaden van lokaal bestand', |
| 70 | + 'mwe-timedtext-select-language' => 'Taal selecteren', |
| 71 | + 'mwe-timedtext-file-language' => 'Taal ondertitelbestand', |
| 72 | + 'mwe-timedtext-upload-text' => 'tekstbestand uploaden', |
| 73 | + 'mwe-timedtext-uploading-text' => 'Bezig met het uploaden van het tekstbestand', |
| 74 | + 'mwe-timedtext-upload-text-desc-title' => 'Tekstbestand uploaden', |
| 75 | + 'mwe-timedtext-upload-text-desc-help' => 'De interface ondersteunt srt-bestanden', |
| 76 | + 'mwe-timedtext-upload-text-desc-help-browse' => 'Selecteer op uw computer het te uploaden srt-bestand', |
| 77 | + 'mwe-timedtext-upload-text-desc-help-select' => 'Selecteer de taal van het bestand', |
| 78 | + 'mwe-timedtext-upload-text-desc-help-review' => 'Controleer of bewerk de tekst en klik op "Uploaden" om de tekst toe te voegen', |
| 79 | + 'mwe-timedtext-upload-text-preview' => 'Tekst controleren', |
| 80 | + 'mwe-timedtext-upload-text-success' => 'De upload van de tekst is geslaagd', |
| 81 | + 'mwe-timedtext-upload-text-done' => 'Upload afgerond', |
| 82 | + 'mwe-timedtext-upload-text-fail-desc' => 'De upload is mislukt', |
| 83 | + 'mwe-timedtext-upload-text-fail-title' => 'Upload mislukt', |
| 84 | + 'mwe-timedtext-upload-text-another' => 'Nog een tekstbestand uploaden', |
| 85 | + 'mwe-timedtext-upload-text-done-uploading' => 'Upload afgerond', |
| 86 | + 'mwe-timedtext-back-btn' => 'Terug', |
| 87 | + 'mwe-timedtext-choose-text' => 'Tekst kiezen', |
| 88 | + 'mwe-timedtext-add-timed-text' => 'Ondertitels toevoegen', |
| 89 | + 'mwe-timedtext-loading-text-edit' => 'Bezig met het laden van de tekstverwerker voor ondertitels', |
| 90 | + 'mwe-timedtext-search' => 'Clip zoeken', |
| 91 | + 'mwe-timedtext-layout' => 'Vormgeving', |
| 92 | + 'mwe-timedtext-layout-ontop' => 'Boven de video', |
| 93 | + 'mwe-timedtext-layout-below' => 'Onder de video', |
| 94 | + 'mwe-timedtext-layout-off' => 'Ondertitels verbergen', |
| 95 | + 'mwe-timedtext-loading-text' => 'Bezig met het laden van de tekst...', |
| 96 | + 'mwe-timedtext-textcat-cc' => 'Ondertitels', |
| 97 | + 'mwe-timedtext-textcat-sub' => 'Ondertitels', |
| 98 | + 'mwe-timedtext-textcat-tad' => 'Audiobeschrijving', |
| 99 | + 'mwe-timedtext-textcat-ktv' => 'Karaoke', |
| 100 | + 'mwe-timedtext-textcat-tik' => 'Informatiebalk', |
| 101 | + 'mwe-timedtext-textcat-ar' => 'Actieve gebieden', |
| 102 | + 'mwe-timedtext-textcat-nb' => 'Annotatie', |
| 103 | + 'mwe-timedtext-textcat-meta' => 'Tijdgebaseerde metadata', |
| 104 | + 'mwe-timedtext-textcat-trx' => 'Transcriptie', |
| 105 | + 'mwe-timedtext-textcat-lrc' => 'Songteksten', |
| 106 | + 'mwe-timedtext-textcat-lin' => 'Taalkundige markup', |
| 107 | + 'mwe-timedtext-textcat-cue' => 'Richtpunten', |
| 108 | + 'mwe-timedtext-language-subtitles-for-clip' => '$1 ondertitels voor clip: $2', |
| 109 | + 'mwe-timedtext-language-no-subtitles-for-clip' => 'Er zijn geen $1ondertitels gevonden voor clip: $2', |
| 110 | +); |
| 111 | + |
| 112 | +/** Portuguese (Português) |
| 113 | + * @author Giro720 |
| 114 | + */ |
| 115 | +$messages['pt'] = array( |
| 116 | + 'mwe-timedtext-stage-sync' => 'Sinc', |
| 117 | + 'mwe-timedtext-stage-translate' => 'Traduzir', |
| 118 | + 'mwe-timedtext-select-language' => 'Escolha o idioma', |
| 119 | +); |
| 120 | + |
| 121 | +/** Russian (Русский) |
| 122 | + * @author Александр Сигачёв |
| 123 | + */ |
| 124 | +$messages['ru'] = array( |
| 125 | + 'mwe-timedtext-editor' => 'Редактор синхронизированного текста', |
| 126 | + 'mwe-timedtext-stage-transcribe' => 'Стенограмма', |
| 127 | + 'mwe-timedtext-stage-sync' => 'Синхро', |
| 128 | + 'mwe-timedtext-stage-translate' => 'Перевод', |
| 129 | + 'mwe-timedtext-stage-upload' => 'Загрузить из локального файла', |
| 130 | + 'mwe-timedtext-select-language' => 'Выберите язык', |
| 131 | + 'mwe-timedtext-file-language' => 'Язык файла субтитров', |
| 132 | + 'mwe-timedtext-upload-text' => 'Загрузить текстовый файл', |
| 133 | + 'mwe-timedtext-uploading-text' => 'Загрузка текстового файла', |
| 134 | + 'mwe-timedtext-upload-text-desc-title' => 'Загрузка текстового файла', |
| 135 | + 'mwe-timedtext-upload-text-desc-help' => 'Интерфейс загрузки текстовых файлов принимает формат .srt', |
| 136 | + 'mwe-timedtext-upload-text-desc-help-browse' => 'Укажите на вашем компьютере файл .srt, который вы хотите загрузить', |
| 137 | + 'mwe-timedtext-upload-text-desc-help-select' => 'Выберите язык этого файла', |
| 138 | + 'mwe-timedtext-upload-text-desc-help-review' => 'Проверьте / исправьте текст и нажмите «Загрузить», чтобы добавить текст', |
| 139 | + 'mwe-timedtext-upload-text-preview' => 'Проверить текст', |
| 140 | + 'mwe-timedtext-upload-text-success' => 'Загрузка синхронизированного текста прошла успешна', |
| 141 | + 'mwe-timedtext-upload-text-done' => 'Загрузка завершена', |
| 142 | + 'mwe-timedtext-upload-text-fail-desc' => 'Загрузка не удалась', |
| 143 | + 'mwe-timedtext-upload-text-fail-title' => 'Сбой при загрузке', |
| 144 | + 'mwe-timedtext-upload-text-another' => 'Добавить ещё один', |
| 145 | + 'mwe-timedtext-back-btn' => 'Назад', |
| 146 | + 'mwe-timedtext-choose-text' => 'Выберите текст', |
| 147 | + 'mwe-timedtext-add-timed-text' => 'Добавить синхронизированный текст', |
| 148 | + 'mwe-timedtext-loading-text-edit' => 'Загрузка редактора синхронизированного текста', |
| 149 | + 'mwe-timedtext-search' => 'Поиск клипа', |
| 150 | + 'mwe-timedtext-layout' => 'Положение', |
| 151 | + 'mwe-timedtext-layout-ontop' => 'В верху видео', |
| 152 | + 'mwe-timedtext-layout-below' => 'Внизу видео', |
| 153 | + 'mwe-timedtext-layout-off' => 'Скрыть субтитры', |
| 154 | + 'mwe-timedtext-loading-text' => 'Загрузка текста…', |
| 155 | + 'mwe-timedtext-textcat-cc' => 'Субтитры-описания', |
| 156 | + 'mwe-timedtext-textcat-sub' => 'Субтитры', |
| 157 | + 'mwe-timedtext-textcat-tad' => 'Аудио-описание', |
| 158 | + 'mwe-timedtext-textcat-ktv' => 'Караоке', |
| 159 | + 'mwe-timedtext-textcat-tik' => 'Текстовые карточки', |
| 160 | + 'mwe-timedtext-textcat-ar' => 'Активные области', |
| 161 | + 'mwe-timedtext-textcat-nb' => 'Аннотация', |
| 162 | + 'mwe-timedtext-textcat-meta' => 'Синхронизированные метаданные', |
| 163 | + 'mwe-timedtext-textcat-trx' => 'Стенограмма', |
| 164 | + 'mwe-timedtext-textcat-lrc' => 'Слова песни', |
| 165 | + 'mwe-timedtext-textcat-lin' => 'Лингвистическая разметка', |
| 166 | + 'mwe-timedtext-textcat-cue' => 'Знаковые точки', |
| 167 | + 'mwe-timedtext-language-subtitles-for-clip' => '$1 — субтитры для клипа: $2', |
| 168 | + 'mwe-timedtext-language-no-subtitles-for-clip' => 'Не найдено субтитров на $1 для клипа: $2', |
| 169 | +); |
| 170 | + |
Index: branches/MwEmbedStandAlone/modules/AddMedia/mw.UploadHandler.js |
— | — | @@ -23,7 +23,7 @@ |
24 | 24 | "mwe-file-thumbnail-no" : "The filename begins with <b><tt>$1<\/tt><\/b>", |
25 | 25 | "mwe-go-to-resource" : "Go to resource page", |
26 | 26 | "mwe-upload-misc-error" : "Unknown upload error", |
27 | | - "mwe-wgfogg_warning_bad_extension" : "You have selected a file with an unsuported extension (<a href=\"http:\/\/commons.wikimedia.org\/wiki\/Commons:Firefogg#Supported_File_Types\">more information<\/a>).", |
| 27 | + "mwe-wgfogg_warning_bad_extension" : "You have selected a file with an unsupported extension (<a href=\"http:\/\/commons.wikimedia.org\/wiki\/Commons:Firefogg#Supported_File_Types\">more information<\/a>).", |
28 | 28 | "mwe-thumbnail-more" : "Enlarge", |
29 | 29 | "mwe-license-header" : "Licensing", |
30 | 30 | "mwe-filedesc" : "Summary", |
Index: branches/MwEmbedStandAlone/modules/AddMedia/mw.Firefogg.js |
— | — | @@ -6,7 +6,7 @@ |
7 | 7 | mw.addMessages({ |
8 | 8 | "mwe-upload-transcoded-status" : "Transcoded", |
9 | 9 | "mwe-upload-transcode-in-progress" : "Transcode and upload in progress (do not close this window)", |
10 | | - "fogg-transcoding" : "Encoding video to ogg", |
| 10 | + "fogg-transcoding" : "Encoding video to Ogg", |
11 | 11 | "fogg-select_file" : "Select file", |
12 | 12 | "fogg-select_new_file" : "Select new file", |
13 | 13 | "fogg-select_url" : "Select URL", |
— | — | @@ -15,10 +15,10 @@ |
16 | 16 | "fogg-not-installed" : "Firefogg is not installed or not enabled.", |
17 | 17 | "fogg-for_improved_uploads" : "For improved uploads:", |
18 | 18 | "fogg-please-install" : "$1. More $2", |
19 | | - "fogg-please-install-install-linktext" : "Install firefogg", |
20 | | - "fogg-please-install-about-linktext" : "about firefogg", |
| 19 | + "fogg-please-install-install-linktext" : "Install Firefogg", |
| 20 | + "fogg-please-install-about-linktext" : "about Firefogg", |
21 | 21 | "fogg-use_latest_firefox" : "Please first install $1. <i>Then revisit this page to install the <b>Firefogg<\/b> extension.<\/i>", |
22 | | - "fogg-latest-firefox" : "latest firefox", |
| 22 | + "fogg-latest-firefox" : "latest Firefox", |
23 | 23 | "fogg-passthrough_mode" : "Your selected file is already ogg or not a video file", |
24 | 24 | "fogg-encoding-done" : "Encoding complete", |
25 | 25 | "fogg-badtoken" : "Token is not valid", |
Index: branches/MwEmbedStandAlone/modules/AddMedia/mw.RemoteSearchDriver.js |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | "mwe-no_recent_uploads" : "No recent uploads", |
42 | 42 | |
43 | 43 | "mwe-not-logged-in-uploads" : "You may not be logged in so no recent uploads can be displayed. $1 login and $2", |
44 | | - "mwe-ie-eye-permision" : "If using Internet Exploer and logged in, you may need to adjust your privacy settings", |
| 44 | + "mwe-ie-eye-permision" : "If using Internet Explorer and logged in, you may need to adjust your privacy settings", |
45 | 45 | |
46 | 46 | "mwe-loggin-link" : "Please login", |
47 | 47 | "mwe-try-again-link" : "try again", |
— | — | @@ -57,11 +57,11 @@ |
58 | 58 | "mwe-return-search-results" : "Return to search results", |
59 | 59 | "mwe-importing_asset" : "Importing asset", |
60 | 60 | "mwe-preview_insert_resource" : "Preview insert of resource: $1", |
61 | | - "mwe-do-more-modification" : "Do More Modification", |
| 61 | + "mwe-do-more-modification" : "Do more modification", |
62 | 62 | "mwe-checking-resource" : "Checking for resource", |
63 | 63 | "mwe-resource-needs-import" : "Resource $1 needs to be imported to $2", |
64 | 64 | |
65 | | - "mwe-warning-upload-to-commons" : "$1 recommends you upload to commons, only upload locally after you have read $2", |
| 65 | + "mwe-warning-upload-to-commons" : "$1 recommends you upload to Wikimedia Commons, only upload locally after you have read $2", |
66 | 66 | "mwe-local-upload-policy-link" : "local upload policy" , |
67 | 67 | |
68 | 68 | "mwe-ftype-svg" : "SVG vector file", |
— | — | @@ -74,7 +74,7 @@ |
75 | 75 | "rsd-wiki_commons-title": "Wikimedia Commons", |
76 | 76 | "rsd-wiki_commons": "Wikimedia Commons, an archive of freely-licensed educational media content (images, sound and video clips)", |
77 | 77 | |
78 | | - "rsd-kaltura-title" : "All Sources", |
| 78 | + "rsd-kaltura-title" : "All sources", |
79 | 79 | "rsd-kaltura" : "Kaltura aggregated search for free-licensed media across multiple search providers", |
80 | 80 | |
81 | 81 | "rsd-this_wiki-title" : "This wiki", |
— | — | @@ -84,7 +84,7 @@ |
85 | 85 | "rsd-archive_org-desc" : "The Internet Archive, a digital library of cultural artefacts", |
86 | 86 | |
87 | 87 | "rsd-flickr-title" : "Flickr.com", |
88 | | - "rsd-flickr-desc" : "Flickr.com, a online photo sharing site", |
| 88 | + "rsd-flickr-desc" : "Flickr.com, an online photo sharing site", |
89 | 89 | "rsd-metavid-title" : "Metavid.org", |
90 | 90 | "rsd-metavid-desc" : "Metavid.org, a community archive of US House and Senate floor proceedings", |
91 | 91 | |
Index: branches/MwEmbedStandAlone/modules/EmbedPlayer/loader.js |
— | — | @@ -165,7 +165,7 @@ |
166 | 166 | mw.addModuleLoader( 'EmbedPlayer', function( callback ) { |
167 | 167 | var _this = this; |
168 | 168 | // Set module specific class videonojs to loading: |
169 | | - $j( '.videonojs' ).html( gM( 'mwe-loading_txt' ) ); |
| 169 | + $j( '.videonojs' ).html( gM( 'mwe-embedplayer-loading_txt' ) ); |
170 | 170 | |
171 | 171 | // Set up the embed video player class request: (include the skin js as well) |
172 | 172 | var dependencyRequest = [ |
Index: branches/MwEmbedStandAlone/modules/EmbedPlayer/mw.EmbedPlayer.js |
— | — | @@ -9,64 +9,64 @@ |
10 | 10 | */ |
11 | 11 | |
12 | 12 | mw.addMessages( { |
13 | | - "mwe-loading_plugin" : "loading plugin ...", |
14 | | - "mwe-select_playback" : "Set playback preference", |
15 | | - "mwe-link_back" : "Link back", |
16 | | - "mwe-error_swap_vid" : "Error: mwEmbed was unable to swap the video tag for the mwEmbed interface", |
17 | | - "mwe-add_to_end_of_sequence" : "Add to end of sequence", |
18 | | - "mwe-missing_video_stream" : "The video file for this stream is missing", |
19 | | - "mwe-play_clip" : "Play clip", |
20 | | - "mwe-pause_clip" : "Pause clip", |
21 | | - "mwe-volume_control" : "Volume control", |
22 | | - "mwe-player_options" : "Player options", |
23 | | - "mwe-timed_text" : "Timed text", |
24 | | - "mwe-player_fullscreen" : "Fullscreen", |
25 | | - "mwe-next_clip_msg" : "Play next clip", |
26 | | - "mwe-prev_clip_msg" : "Play previous clip", |
27 | | - "mwe-current_clip_msg" : "Continue playing this clip", |
28 | | - "mwe-seek_to" : "Seek $1", |
29 | | - "mwe-paused" : "paused", |
30 | | - "mwe-download_segment" : "Download selection:", |
31 | | - "mwe-download_full" : "Download full video file:", |
32 | | - "mwe-download_right_click" : "To download, right click and select <i>Save link as...<\/i>", |
33 | | - "mwe-download_clip" : "Download video", |
34 | | - "mwe-download_text" : "Download text (<a style=\"color:white\" title=\"cmml\" href=\"http:\/\/wiki.xiph.org\/index.php\/CMML\">CMML<\/a> xml):", |
35 | | - "mwe-download" : "Download", |
36 | | - "mwe-share" : "Share", |
37 | | - "mwe-credits" : "Credits", |
38 | | - "mwe-clip_linkback" : "Clip source page", |
39 | | - "mwe-chose_player" : "Choose video player", |
40 | | - "mwe-no-player" : "No player available for $1", |
41 | | - "mwe-share_this_video" : "Share this video", |
42 | | - "mwe-video_credits" : "Video credits", |
43 | | - "mwe-kaltura-platform-title" : "Kaltura open source video platform", |
44 | | - "mwe-menu_btn" : "Menu", |
45 | | - "mwe-close_btn" : "Close", |
46 | | - "mwe-ogg-player-vlc-player" : "VLC player", |
47 | | - "mwe-ogg-player-oggNative" : "HTML5 ogg player", |
48 | | - "mwe-ogg-player-h264Native" : "HTML5 h.264 player", |
49 | | - "mwe-ogg-player-oggPlugin" : "Generic Ogg plugin", |
50 | | - "mwe-ogg-player-quicktime-mozilla" : "QuickTime plugin", |
51 | | - "mwe-ogg-player-quicktime-activex" : "QuickTime ActiveX", |
52 | | - "mwe-ogg-player-cortado" : "Java Cortado", |
53 | | - "mwe-ogg-player-flowplayer" : "Flowplayer", |
54 | | - "mwe-ogg-player-kplayer" : "Kaltura player", |
55 | | - "mwe-ogg-player-selected" : "(selected)", |
56 | | - "mwe-ogg-player-omtkplayer" : "OMTK Flash Vorbis", |
57 | | - "mwe-generic_missing_plugin" : "You browser does not appear to support the following playback type: <b>$1<\/b><br \/>Visit the <a href=\"http:\/\/commons.wikimedia.org\/wiki\/Commons:Media_help\">Playback Methods<\/a> page to download a player.<br \/>", |
58 | | - "mwe-missing-source" : "No source video was found, check that your embed code includes a source or api key", |
59 | | - "mwe-for_best_experience" : "For a better video playback experience we recommend the <b><a href=\"http:\/\/www.mozilla.com\/en-US\/firefox\/upgrade.html?from=mwEmbed\">latest firefox<\/a>.<\/b>", |
60 | | - "mwe-do_not_warn_again" : "Dismiss for now.", |
61 | | - "mwe-playerSelect" : "Players", |
62 | | - "mwe-read_before_embed" : "<a href=\"http:\/\/mediawiki.org\/wiki\/Security_Notes_on_Remote_Embedding\" target=\"_new\">Read this<\/a> before embedding.", |
63 | | - "mwe-embed_site_or_blog" : "Embed on a page", |
64 | | - "mwe-related_videos" : "Related videos", |
65 | | - "mwe-seeking" : "seeking", |
66 | | - "mwe-copy-code" : "Copy code", |
67 | | - "mwe-video-h264" : "H.264 video", |
68 | | - "mwe-video-flv" : "Flash video", |
69 | | - "mwe-video-ogg" : "Ogg video", |
70 | | - "mwe-video-audio" : "Ogg audio" |
| 13 | + "mwe-embedplayer-loading_plugin" : "Loading plugin ...", |
| 14 | + "mwe-embedplayer-select_playback" : "Set playback preference", |
| 15 | + "mwe-embedplayer-link_back" : "Link back", |
| 16 | + "mwe-embedplayer-error_swap_vid" : "Error: mwEmbed was unable to swap the video tag for the mwEmbed interface", |
| 17 | + "mwe-embedplayer-add_to_end_of_sequence" : "Add to end of sequence", |
| 18 | + "mwe-embedplayer-missing_video_stream" : "The video file for this stream is missing", |
| 19 | + "mwe-embedplayer-play_clip" : "Play clip", |
| 20 | + "mwe-embedplayer-pause_clip" : "Pause clip", |
| 21 | + "mwe-embedplayer-volume_control" : "Volume control", |
| 22 | + "mwe-embedplayer-player_options" : "Player options", |
| 23 | + "mwe-embedplayer-timed_text" : "Timed text", |
| 24 | + "mwe-embedplayer-player_fullscreen" : "Fullscreen", |
| 25 | + "mwe-embedplayer-next_clip_msg" : "Play next clip", |
| 26 | + "mwe-embedplayer-prev_clip_msg" : "Play previous clip", |
| 27 | + "mwe-embedplayer-current_clip_msg" : "Continue playing this clip", |
| 28 | + "mwe-embedplayer-seek_to" : "Seek $1", |
| 29 | + "mwe-embedplayer-paused" : "paused", |
| 30 | + "mwe-embedplayer-download_segment" : "Download selection:", |
| 31 | + "mwe-embedplayer-download_full" : "Download full video file:", |
| 32 | + "mwe-embedplayer-download_right_click" : "To download, right click and select <i>Save link as...<\/i>", |
| 33 | + "mwe-embedplayer-download_clip" : "Download video", |
| 34 | + "mwe-embedplayer-download_text" : "Download text (<a style=\"color:white\" title=\"cmml\" href=\"http:\/\/wiki.xiph.org\/index.php\/CMML\">CMML<\/a> xml):", |
| 35 | + "mwe-embedplayer-download" : "Download", |
| 36 | + "mwe-embedplayer-share" : "Share", |
| 37 | + "mwe-embedplayer-credits" : "Credits", |
| 38 | + "mwe-embedplayer-clip_linkback" : "Clip source page", |
| 39 | + "mwe-embedplayer-choose_player" : "Choose video player", |
| 40 | + "mwe-embedplayer-no-player" : "No player available for $1", |
| 41 | + "mwe-embedplayer-share_this_video" : "Share this video", |
| 42 | + "mwe-embedplayer-video_credits" : "Video credits", |
| 43 | + "mwe-embedplayer-kaltura-platform-title" : "Kaltura open source video platform", |
| 44 | + "mwe-embedplayer-menu_btn" : "Menu", |
| 45 | + "mwe-embedplayer-close_btn" : "Close", |
| 46 | + "mwe-embedplayer-ogg-player-vlc-player" : "VLC player", |
| 47 | + "mwe-embedplayer-ogg-player-oggNative" : "HTML5 Ogg player", |
| 48 | + "mwe-embedplayer-ogg-player-h264Native" : "HTML5 H.264 player", |
| 49 | + "mwe-embedplayer-ogg-player-oggPlugin" : "Generic Ogg plugin", |
| 50 | + "mwe-embedplayer-ogg-player-quicktime-mozilla" : "QuickTime plugin", |
| 51 | + "mwe-embedplayer-ogg-player-quicktime-activex" : "QuickTime ActiveX", |
| 52 | + "mwe-embedplayer-ogg-player-cortado" : "Java Cortado", |
| 53 | + "mwe-embedplayer-ogg-player-flowplayer" : "Flowplayer", |
| 54 | + "mwe-embedplayer-ogg-player-kplayer" : "Kaltura player", |
| 55 | + "mwe-embedplayer-ogg-player-selected" : "(selected)", |
| 56 | + "mwe-embedplayer-ogg-player-omtkplayer" : "OMTK Flash Vorbis", |
| 57 | + "mwe-embedplayer-generic_missing_plugin" : "You browser does not appear to support the following playback type: <b>$1<\/b><br \/>Visit the <a href=\"http:\/\/commons.wikimedia.org\/wiki\/Commons:Media_help\">Playback methods<\/a> page to download a player.<br \/>", |
| 58 | + "mwe-embedplayer-missing-source" : "No source video was found. Check that your embed code includes a source or API key", |
| 59 | + "mwe-embedplayer-for_best_experience" : "For a better video playback experience we recommend the <b><a href=\"http:\/\/www.mozilla.com\/en-US\/firefox\/upgrade.html?from=mwEmbed\">latest Firefox<\/a>.<\/b>", |
| 60 | + "mwe-embedplayer-do_not_warn_again" : "Dismiss for now.", |
| 61 | + "mwe-embedplayer-playerSelect" : "Players", |
| 62 | + "mwe-embedplayer-read_before_embed" : "<a href=\"http:\/\/mediawiki.org\/wiki\/Security_Notes_on_Remote_Embedding\" target=\"_new\">Read this<\/a> before embedding.", |
| 63 | + "mwe-embedplayer-embed_site_or_blog" : "Embed on a page", |
| 64 | + "mwe-embedplayer-related_videos" : "Related videos", |
| 65 | + "mwe-embedplayer-seeking" : "seeking", |
| 66 | + "mwe-embedplayer-copy-code" : "Copy code", |
| 67 | + "mwe-embedplayer-video-h264" : "H.264 video", |
| 68 | + "mwe-embedplayer-video-flv" : "Flash video", |
| 69 | + "mwe-embedplayer-video-ogg" : "Ogg video", |
| 70 | + "mwe-embedplayer-video-audio" : "Ogg audio" |
71 | 71 | } ); |
72 | 72 | |
73 | 73 | /* |
— | — | @@ -790,16 +790,16 @@ |
791 | 791 | // Return a Title based on mime type: |
792 | 792 | switch( this.getMIMEType() ) { |
793 | 793 | case 'video/h264' : |
794 | | - return gM( 'mwe-video-h264' ); |
| 794 | + return gM( 'mwe-embedplayer-video-h264' ); |
795 | 795 | break; |
796 | 796 | case 'video/x-flv' : |
797 | | - return gM( 'mwe-video-flv' ); |
| 797 | + return gM( 'mwe-embedplayer-video-flv' ); |
798 | 798 | break; |
799 | 799 | case 'video/ogg' : |
800 | | - return gM( 'mwe-video-ogg' ); |
| 800 | + return gM( 'mwe-embedplayer-video-ogg' ); |
801 | 801 | break; |
802 | 802 | case 'audio/ogg' : |
803 | | - return gM( 'mwe-video-audio' ); |
| 803 | + return gM( 'mwe-embedplayer-video-audio' ); |
804 | 804 | break; |
805 | 805 | } |
806 | 806 | |
— | — | @@ -1817,7 +1817,7 @@ |
1818 | 1818 | 'height' : this.height + 'px' |
1819 | 1819 | }) |
1820 | 1820 | .text( |
1821 | | - gM( 'mwe-loading_plugin' ) |
| 1821 | + gM( 'mwe-embedplayer-loading_plugin' ) |
1822 | 1822 | ) |
1823 | 1823 | ); |
1824 | 1824 | |
— | — | @@ -1965,7 +1965,7 @@ |
1966 | 1966 | if( this.mediaElement.sources.length == 0 ){ |
1967 | 1967 | $j( this ).html( |
1968 | 1968 | $j('<span />').text( |
1969 | | - gM('mwe-missing-source') |
| 1969 | + gM('mwe-embedplayer-missing-source') |
1970 | 1970 | ) |
1971 | 1971 | ); |
1972 | 1972 | return ; |
— | — | @@ -1980,14 +1980,14 @@ |
1981 | 1981 | } |
1982 | 1982 | $j( this ).html( |
1983 | 1983 | $j('<div />').append( |
1984 | | - gM( 'mwe-generic_missing_plugin', misssingType ), |
| 1984 | + gM( 'mwe-embedplayer-generic_missing_plugin', misssingType ), |
1985 | 1985 | $j( '<br />' ), |
1986 | 1986 | $j( '<a />' ) |
1987 | 1987 | .attr( { |
1988 | | - 'title' : gM( 'mwe-download_clip' ), |
| 1988 | + 'title' : gM( 'mwe-embedplayer-download_clip' ), |
1989 | 1989 | 'href' : source.src |
1990 | 1990 | }) |
1991 | | - .text( gM( 'mwe-download_clip' ) ) |
| 1991 | + .text( gM( 'mwe-embedplayer-download_clip' ) ) |
1992 | 1992 | ) |
1993 | 1993 | ) |
1994 | 1994 | } |
— | — | @@ -2430,7 +2430,7 @@ |
2431 | 2431 | doLinkBack: function() { |
2432 | 2432 | if ( ! this.linkback && this.roe && this.mediaElement.addedROEData == false ) { |
2433 | 2433 | var _this = this; |
2434 | | - this.displayOverlay( gM( 'mwe-loading_txt' ) ); |
| 2434 | + this.displayOverlay( gM( 'mwe-embedplayer-loading_txt' ) ); |
2435 | 2435 | this.getMvJsonUrl( this.roe, function( data ) { |
2436 | 2436 | _this.mediaElement.addROE( data ); |
2437 | 2437 | _this.doLinkBack(); |
— | — | @@ -2441,7 +2441,7 @@ |
2442 | 2442 | } else if ( this.mediaElement.linkback ) { |
2443 | 2443 | window.location = this.mediaElement.linkback; |
2444 | 2444 | } else { |
2445 | | - this.displayOverlay( gM( 'mwe-could_not_find_linkback' ) ); |
| 2445 | + this.displayOverlay( gM( 'mwe-embedplayer-could_not_find_linkback' ) ); |
2446 | 2446 | } |
2447 | 2447 | } |
2448 | 2448 | }, |
— | — | @@ -2490,7 +2490,7 @@ |
2491 | 2491 | .click( function( ) { |
2492 | 2492 | _this.pause(); |
2493 | 2493 | } ) |
2494 | | - .attr( 'title', gM( 'mwe-pause_clip' ) ); |
| 2494 | + .attr( 'title', gM( 'mwe-embedplayer-pause_clip' ) ); |
2495 | 2495 | |
2496 | 2496 | // Do play tracking if enabled |
2497 | 2497 | if( mw.getConfig( 'playTracking' ) ) { |
— | — | @@ -2540,7 +2540,7 @@ |
2541 | 2541 | .click( function() { |
2542 | 2542 | _this.play(); |
2543 | 2543 | } ) |
2544 | | - .attr( 'title', gM( 'mwe-play_clip' ) ); |
| 2544 | + .attr( 'title', gM( 'mwe-embedplayer-play_clip' ) ); |
2545 | 2545 | }, |
2546 | 2546 | |
2547 | 2547 | /** |
— | — | @@ -2720,7 +2720,7 @@ |
2721 | 2721 | if ( this.isStoped() ) { |
2722 | 2722 | this.ctrlBuilder.setStatus( this.getTimeRange() ); |
2723 | 2723 | } else if ( this.isPaused() ) { |
2724 | | - this.ctrlBuilder.setStatus( gM( 'mwe-paused' ) ); |
| 2724 | + this.ctrlBuilder.setStatus( gM( 'mwe-embedplayer-paused' ) ); |
2725 | 2725 | } else if ( this.isPlaying() ) { |
2726 | 2726 | if ( this.currentTime && ! this.duration ) |
2727 | 2727 | this.ctrlBuilder.setStatus( mw.seconds2npt( this.currentTime ) + ' /' ); |
— | — | @@ -2841,7 +2841,7 @@ |
2842 | 2842 | this.jump_time = options['start']; |
2843 | 2843 | this.seek_time_sec = mw.npt2seconds( options['start'] ); |
2844 | 2844 | // trim output to |
2845 | | - this.ctrlBuilder.setStatus( gM( 'mwe-seek_to', mw.seconds2npt( this.seek_time_sec ) ) ); |
| 2845 | + this.ctrlBuilder.setStatus( gM( 'mwe-embedplayer-seek_to', mw.seconds2npt( this.seek_time_sec ) ) ); |
2846 | 2846 | mw.log( 'DO update: ' + this.jump_time ); |
2847 | 2847 | this.updateThumbTime( rel_start_sec ); |
2848 | 2848 | }, |
— | — | @@ -2937,7 +2937,7 @@ |
2938 | 2938 | * Get the "name" of the player from a predictable msg key |
2939 | 2939 | */ |
2940 | 2940 | getName: function() { |
2941 | | - return gM( 'mwe-ogg-player-' + this.id ); |
| 2941 | + return gM( 'mwe-embedplayer-ogg-player-' + this.id ); |
2942 | 2942 | }, |
2943 | 2943 | |
2944 | 2944 | /** |
Index: branches/MwEmbedStandAlone/modules/EmbedPlayer/skins/kskin/kskinConfig.js |
— | — | @@ -3,7 +3,7 @@ |
4 | 4 | */ |
5 | 5 | |
6 | 6 | mw.addMessages( { |
7 | | - "mwe-credit-title" : "Title: $1" |
| 7 | + "mwe-embedplayer-credit-title" : "Title: $1" |
8 | 8 | } ); |
9 | 9 | |
10 | 10 | var kskinConfig = { |
— | — | @@ -35,11 +35,11 @@ |
36 | 36 | 'w':50, |
37 | 37 | 'o':function() { |
38 | 38 | return $j( '<div />' ) |
39 | | - .attr( 'title', gM( 'mwe-player_options' ) ) |
| 39 | + .attr( 'title', gM( 'mwe-embedplayer-player_options' ) ) |
40 | 40 | .addClass( "ui-state-default ui-corner-bl rButton k-options" ) |
41 | 41 | .append( |
42 | 42 | $j( '<span />' ) |
43 | | - .text( gM( 'mwe-menu_btn' ) ) |
| 43 | + .text( gM( 'mwe-embedplayer-menu_btn' ) ) |
44 | 44 | ) |
45 | 45 | } |
46 | 46 | }, |
— | — | @@ -98,7 +98,7 @@ |
99 | 99 | .append( |
100 | 100 | $j( '<a />' ) |
101 | 101 | .attr( { |
102 | | - 'title' : gM( 'mwe-' + menuItem ), |
| 102 | + 'title' : gM( 'mwe-embedplayer-' + menuItem ), |
103 | 103 | 'href' : '#' |
104 | 104 | }) |
105 | 105 | ) |
— | — | @@ -199,7 +199,7 @@ |
200 | 200 | var $kmenu = this.$playerTarget.find( '.k-menu' ); |
201 | 201 | $kmenu.fadeOut( "fast", function() { |
202 | 202 | $optionsMenu.find( 'span' ) |
203 | | - .text ( gM( 'mwe-menu_btn' ) ); |
| 203 | + .text ( gM( 'mwe-embedplayer-menu_btn' ) ); |
204 | 204 | } ); |
205 | 205 | this.$playerTarget.find( '.play-btn-large' ).fadeIn( 'fast' ); |
206 | 206 | }, |
— | — | @@ -212,7 +212,7 @@ |
213 | 213 | var $kmenu = this.$playerTarget.find( '.k-menu' ); |
214 | 214 | $kmenu.fadeIn( "fast", function() { |
215 | 215 | $optionsMenu.find( 'span' ) |
216 | | - .text ( gM( 'mwe-close_btn' ) ); |
| 216 | + .text ( gM( 'mwe-embedplayer-close_btn' ) ); |
217 | 217 | } ); |
218 | 218 | this.$playerTarget.find( '.play-btn-large' ).fadeOut( 'fast' ); |
219 | 219 | }, |
— | — | @@ -299,7 +299,7 @@ |
300 | 300 | break; |
301 | 301 | case 'download' : |
302 | 302 | embedPlayer.$interface.find( '.menu-download').text( |
303 | | - gM('mwe-loading_txt' ) |
| 303 | + gM('mwe-embedplayer-loading_txt' ) |
304 | 304 | ); |
305 | 305 | // Call show download with the target to be populated |
306 | 306 | this.showDownload( |
— | — | @@ -325,7 +325,7 @@ |
326 | 326 | |
327 | 327 | $target.empty().append( |
328 | 328 | $j('<h2 />') |
329 | | - .text( gM( 'mwe-credits' ) ), |
| 329 | + .text( gM( 'mwe-embedplayer-credits' ) ), |
330 | 330 | $j('<div />') |
331 | 331 | .addClass( "credits_box ui-corner-all" ) |
332 | 332 | .loadingSpinner() |
— | — | @@ -336,7 +336,7 @@ |
337 | 337 | $j( '<div />' ) |
338 | 338 | .addClass( 'k-attribution' ) |
339 | 339 | .attr({ |
340 | | - 'title': gM('mwe-kaltura-platform-title') |
| 340 | + 'title': gM('mwe-embedplayer-kaltura-platform-title') |
341 | 341 | }) |
342 | 342 | .click( function( ) { |
343 | 343 | window.location = 'http://kaltura.com'; |
— | — | @@ -426,7 +426,7 @@ |
427 | 427 | ) |
428 | 428 | .append( |
429 | 429 | $j('<span>').html( |
430 | | - gM( 'mwe-credit-title' , |
| 430 | + gM( 'mwe-embedplayer-credit-title' , |
431 | 431 | // We use a div container to easialy get at the built out link |
432 | 432 | $j('<div>').html( |
433 | 433 | $j('<a/>').attr({ |
Index: branches/MwEmbedStandAlone/modules/EmbedPlayer/skins/ctrlBuilder.js |
— | — | @@ -696,7 +696,7 @@ |
697 | 697 | 'left' : '10px', |
698 | 698 | 'right' : '10px' |
699 | 699 | }) |
700 | | - .html( gM( 'mwe-for_best_experience' ) ) |
| 700 | + .html( gM( 'mwe-embedplayer-for_best_experience' ) ) |
701 | 701 | ) |
702 | 702 | |
703 | 703 | $target_warning = $j( '#gnp_' + embedPlayer.id ); |
— | — | @@ -728,7 +728,7 @@ |
729 | 729 | ); |
730 | 730 | $target_warning.append( |
731 | 731 | $j('<span />') |
732 | | - .text( gM( 'mwe-do_not_warn_again' ) ) |
| 732 | + .text( gM( 'mwe-embedplayer-do_not_warn_again' ) ) |
733 | 733 | ) |
734 | 734 | } |
735 | 735 | |
— | — | @@ -841,7 +841,7 @@ |
842 | 842 | */ |
843 | 843 | onSeek: function(){ |
844 | 844 | // Update the interface: |
845 | | - this.setStatus( gM( 'mwe-seeking' ) ); |
| 845 | + this.setStatus( gM( 'mwe-embedplayer-seeking' ) ); |
846 | 846 | // Run the seeking hook |
847 | 847 | $j( this.embedPlayer ).trigger( 'onSeek' ); |
848 | 848 | }, |
— | — | @@ -865,7 +865,7 @@ |
866 | 866 | // Player select menu item |
867 | 867 | 'playerSelect': function( ctrlObj ){ |
868 | 868 | return $j.getLineItem( |
869 | | - gM( 'mwe-chose_player' ), |
| 869 | + gM( 'mwe-embedplayer-choose_player' ), |
870 | 870 | 'gear', |
871 | 871 | function( ) { |
872 | 872 | ctrlObj.displayOverlay( |
— | — | @@ -878,10 +878,10 @@ |
879 | 879 | // Download the file menu |
880 | 880 | 'download': function( ctrlObj ) { |
881 | 881 | return $j.getLineItem( |
882 | | - gM( 'mwe-download' ), |
| 882 | + gM( 'mwe-embedplayer-download' ), |
883 | 883 | 'disk', |
884 | 884 | function( ) { |
885 | | - ctrlObj.displayOverlay( gM('mwe-loading_txt' ) ); |
| 885 | + ctrlObj.displayOverlay( gM('mwe-embedplayer-loading_txt' ) ); |
886 | 886 | // Call show download with the target to be populated |
887 | 887 | ctrlObj.showDownload( |
888 | 888 | ctrlObj.embedPlayer.$interface.find( '.overlay-content' ) |
— | — | @@ -893,7 +893,7 @@ |
894 | 894 | // Share the video menu |
895 | 895 | 'share': function( ctrlObj ) { |
896 | 896 | return $j.getLineItem( |
897 | | - gM( 'mwe-share' ), |
| 897 | + gM( 'mwe-embedplayer-share' ), |
898 | 898 | 'mail-closed', |
899 | 899 | function( ) { |
900 | 900 | ctrlObj.displayOverlay( |
— | — | @@ -1035,14 +1035,14 @@ |
1036 | 1036 | .attr('href', '#') |
1037 | 1037 | .addClass( 'active' ) |
1038 | 1038 | .text( |
1039 | | - gM( 'mwe-embed_site_or_blog' ) |
| 1039 | + gM( 'mwe-embedplayer-embed_site_or_blog' ) |
1040 | 1040 | ) |
1041 | 1041 | ) |
1042 | 1042 | ) |
1043 | 1043 | |
1044 | 1044 | $shareInterface.append( |
1045 | 1045 | $j( '<h2 />' ) |
1046 | | - .text( gM( 'mwe-share_this_video' ) ) |
| 1046 | + .text( gM( 'mwe-embedplayer-share_this_video' ) ) |
1047 | 1047 | .append( |
1048 | 1048 | $shareList |
1049 | 1049 | ) |
— | — | @@ -1065,7 +1065,7 @@ |
1066 | 1066 | |
1067 | 1067 | $j('<button />') |
1068 | 1068 | .addClass( 'ui-state-default ui-corner-all copycode' ) |
1069 | | - .text( gM( 'mwe-copy-code' ) ) |
| 1069 | + .text( gM( 'mwe-embedplayer-copy-code' ) ) |
1070 | 1070 | .click(function() { |
1071 | 1071 | $target.find( 'textarea' ).focus().select(); |
1072 | 1072 | // Copy the text if supported: |
— | — | @@ -1094,7 +1094,7 @@ |
1095 | 1095 | $playerSelect = $j('<div />') |
1096 | 1096 | .append( |
1097 | 1097 | $j( '<h2 />' ) |
1098 | | - .text( gM( 'mwe-chose_player' ) ) |
| 1098 | + .text( gM( 'mwe-embedplayer-chose_player' ) ) |
1099 | 1099 | ); |
1100 | 1100 | |
1101 | 1101 | $j.each( embedPlayer.mediaElement.getPlayableSources(), function( source_id, source ) { |
— | — | @@ -1181,7 +1181,7 @@ |
1182 | 1182 | |
1183 | 1183 | } else { |
1184 | 1184 | // No player available: |
1185 | | - $playerSelect.append( gM( 'mwe-no-player', source.getTitle() ) ) |
| 1185 | + $playerSelect.append( gM( 'mwe-embedplayer-no-player', source.getTitle() ) ) |
1186 | 1186 | } |
1187 | 1187 | } ); |
1188 | 1188 | |
— | — | @@ -1241,7 +1241,7 @@ |
1242 | 1242 | // Load the roe if available (to populate out download options: |
1243 | 1243 | // mw.log('f:showDownload '+ this.roe + ' ' + this.mediaElement.addedROEData); |
1244 | 1244 | if ( embedPlayer.roe && embedPlayer.mediaElement.addedROEData == false ) { |
1245 | | - $target.html( gM( 'mwe-loading_txt' ) ); |
| 1245 | + $target.html( gM( 'mwe-embedplayer-loading_txt' ) ); |
1246 | 1246 | embedPlayer.getMvJsonUrl( this.roe, function( data ) { |
1247 | 1247 | embedPlayer.mediaElement.addROE( data ); |
1248 | 1248 | _this.showDownloadWithSources( $target ); |
— | — | @@ -1290,7 +1290,7 @@ |
1291 | 1291 | if( $mediaList.find('li').length != 0 ) { |
1292 | 1292 | $target.append( |
1293 | 1293 | $j('<h2 />') |
1294 | | - .text( gM( 'mwe-download_full' ) ), |
| 1294 | + .text( gM( 'mwe-embedplayer-download_full' ) ), |
1295 | 1295 | $mediaList |
1296 | 1296 | ) |
1297 | 1297 | } |
— | — | @@ -1298,7 +1298,7 @@ |
1299 | 1299 | if( $textList.find('li').length != 0 ) { |
1300 | 1300 | $target.append( |
1301 | 1301 | $j('<h2 />') |
1302 | | - .text( gM( 'mwe-download_text' ) ), |
| 1302 | + .text( gM( 'mwe-embedplayer-download_text' ) ), |
1303 | 1303 | $textList |
1304 | 1304 | ) |
1305 | 1305 | } |
— | — | @@ -1369,7 +1369,7 @@ |
1370 | 1370 | |
1371 | 1371 | return $j( '<div/>' ) |
1372 | 1372 | .attr( { |
1373 | | - 'title' : gM( 'mwe-play_clip' ), |
| 1373 | + 'title' : gM( 'mwe-embedplayer-play_clip' ), |
1374 | 1374 | 'class' : "ui-state-default play-btn-large" |
1375 | 1375 | } ) |
1376 | 1376 | // Get dynamic position for big play button |
— | — | @@ -1393,7 +1393,7 @@ |
1394 | 1394 | return $j('<a />') |
1395 | 1395 | .attr({ |
1396 | 1396 | 'href': 'http://kaltura.com', |
1397 | | - 'title' : gM( 'mwe-kaltura-platform-title' ), |
| 1397 | + 'title' : gM( 'mwe-embedplayer-kaltura-platform-title' ), |
1398 | 1398 | 'target' : '_new' |
1399 | 1399 | }) |
1400 | 1400 | .append( |
— | — | @@ -1418,7 +1418,7 @@ |
1419 | 1419 | 'w': 28, |
1420 | 1420 | 'o': function( ctrlObj ) { |
1421 | 1421 | return $j( '<div />' ) |
1422 | | - .attr( 'title', gM( 'mwe-player_options' ) ) |
| 1422 | + .attr( 'title', gM( 'mwe-embedplayer-player_options' ) ) |
1423 | 1423 | .addClass( 'ui-state-default ui-corner-all ui-icon_link rButton options-btn' ) |
1424 | 1424 | .append( |
1425 | 1425 | $j('<span />') |
— | — | @@ -1452,7 +1452,7 @@ |
1453 | 1453 | }); |
1454 | 1454 | |
1455 | 1455 | return $j( '<div />' ) |
1456 | | - .attr( 'title', gM( 'mwe-player_fullscreen' ) ) |
| 1456 | + .attr( 'title', gM( 'mwe-embedplayer-player_fullscreen' ) ) |
1457 | 1457 | .addClass( "ui-state-default ui-corner-all ui-icon_link rButton fullscreen-btn" ) |
1458 | 1458 | .append( |
1459 | 1459 | $j( '<span />' ) |
— | — | @@ -1473,7 +1473,7 @@ |
1474 | 1474 | 'w': 28, |
1475 | 1475 | 'o': function( ctrlObj ) { |
1476 | 1476 | return $j( '<div />' ) |
1477 | | - .attr( 'title', gM( 'mwe-play_clip' ) ) |
| 1477 | + .attr( 'title', gM( 'mwe-embedplayer-play_clip' ) ) |
1478 | 1478 | .addClass ( "ui-state-default ui-corner-all ui-icon_link lButton play-btn" ) |
1479 | 1479 | .append( |
1480 | 1480 | $j( '<span />' ) |
— | — | @@ -1494,7 +1494,7 @@ |
1495 | 1495 | 'w': 28, |
1496 | 1496 | 'o': function( ctrlObj ) { |
1497 | 1497 | return $j( '<div />' ) |
1498 | | - .attr( 'title', gM( 'mwe-timed_text' ) ) |
| 1498 | + .attr( 'title', gM( 'mwe-embedplayer-timed_text' ) ) |
1499 | 1499 | .addClass( "ui-state-default ui-corner-all ui-icon_link rButton timed-text" ) |
1500 | 1500 | .append( |
1501 | 1501 | $j( '<span />' ) |
— | — | @@ -1526,7 +1526,7 @@ |
1527 | 1527 | // Add the volume control icon |
1528 | 1528 | $volumeOut.append( |
1529 | 1529 | $j('<div />') |
1530 | | - .attr( 'title', gM( 'mwe-volume_control' ) ) |
| 1530 | + .attr( 'title', gM( 'mwe-embedplayer-volume_control' ) ) |
1531 | 1531 | .addClass( "ui-state-default ui-corner-all ui-icon_link rButton volume_control" ) |
1532 | 1532 | .append( |
1533 | 1533 | $j( '<span />' ) |
— | — | @@ -1604,7 +1604,7 @@ |
1605 | 1605 | embedPlayer.jump_time = mw.seconds2npt( parseFloat( parseFloat( embedPlayer.getDuration() ) * perc ) + embedPlayer.start_time_sec ); |
1606 | 1606 | // mw.log('perc:' + perc + ' * ' + embedPlayer.getDuration() + ' jt:'+ this.jump_time); |
1607 | 1607 | if ( _this.longTimeDisp ) { |
1608 | | - ctrlObj.setStatus( gM( 'mwe-seek_to', embedPlayer.jump_time ) ); |
| 1608 | + ctrlObj.setStatus( gM( 'mwe-embedplayer-seek_to', embedPlayer.jump_time ) ); |
1609 | 1609 | } else { |
1610 | 1610 | ctrlObj.setStatus( embedPlayer.jump_time ); |
1611 | 1611 | } |
— | — | @@ -1624,7 +1624,7 @@ |
1625 | 1625 | // set seek time (in case we have to do a url seek) |
1626 | 1626 | embedPlayer.seek_time_sec = mw.npt2seconds( embedPlayer.jump_time, true ); |
1627 | 1627 | mw.log( 'do jump to: ' + embedPlayer.jump_time + ' perc:' + perc + ' sts:' + embedPlayer.seek_time_sec ); |
1628 | | - ctrlObj.setStatus( gM( 'mwe-seeking' ) ); |
| 1628 | + ctrlObj.setStatus( gM( 'mwe-embedplayer-seeking' ) ); |
1629 | 1629 | embedPlayer.doSeek( perc ); |
1630 | 1630 | } |
1631 | 1631 | } |
Index: branches/MwEmbedStandAlone/modules/ClipEdit/ClipEdit.i18n.php |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Internationalisation for ClipEdit |
5 | 5 | * |
6 | 6 | * @file |
— | — | @@ -7,846 +7,892 @@ |
8 | 8 | */ |
9 | 9 | |
10 | 10 | $messages = array(); |
| 11 | + |
11 | 12 | $messages['en'] = array( |
12 | | - 'mwe-crop' => 'Crop image', |
13 | | - 'mwe-apply_crop' => 'Apply crop to image', |
14 | | - 'mwe-reset_crop' => 'Reset crop', |
15 | | - 'mwe-insert_image_page' => 'Insert into page', |
16 | | - 'mwe-insert_into_sequence' => 'Insert into sequence', |
17 | | - 'mwe-preview_insert' => 'Preview insert', |
18 | | - 'mwe-cancel_image_insert' => 'Cancel insert', |
19 | | - 'mwe-sc_attributes' => 'Clip detail edit', |
20 | | - 'mwe-sc_inoutpoints' => 'Set in-out points', |
21 | | - 'mwe-sc_overlays' => 'Overlays', |
22 | | - 'mwe-sc_audio' => 'Audio control', |
23 | | - 'mwe-sc_duration' => 'Duration', |
24 | | - 'mwe-template_properties' => 'Template properties', |
25 | | - 'mwe-custom_title' => 'Custom title', |
26 | | - 'mwe-edit_properties' => 'Edit properties', |
27 | | - 'mwe-other_properties' => 'Other properties', |
28 | | - 'mwe-resource_page' => 'Resource page:', |
29 | | - 'mwe-set_in_out_points' => 'Set in-out points', |
30 | | - 'mwe-start_time' => 'Start time', |
31 | | - 'mwe-end_time' => 'End time', |
32 | | - 'mwe-preview_inout' => 'Preview in-out points', |
33 | | - 'mwe-edit-tools' => 'Edit tools', |
34 | | - 'mwe-inline-description' => 'Caption', |
35 | | - 'mwe-edit-video-tools' => 'Edit video tools:', |
36 | | - 'mwe-duration' => 'Duration:', |
37 | | - 'mwe-layout' => 'Layout', |
38 | | - 'mwe-layout_right' => 'Right side image layout', |
39 | | - 'mwe-layout_left' => 'Left side image layout', |
| 13 | + 'mwe-clipedit-crop' => 'Crop image', |
| 14 | + 'mwe-clipedit-apply_crop' => 'Apply crop to image', |
| 15 | + 'mwe-clipedit-reset_crop' => 'Reset crop', |
| 16 | + 'mwe-clipedit-insert_image_page' => 'Insert into page', |
| 17 | + 'mwe-clipedit-insert_into_sequence' => 'Insert into sequence', |
| 18 | + 'mwe-clipedit-preview_insert' => 'Preview insert', |
| 19 | + 'mwe-clipedit-cancel_image_insert' => 'Cancel insert', |
| 20 | + 'mwe-clipedit-sc_attributes' => 'Clip detail edit', |
| 21 | + 'mwe-clipedit-sc_inoutpoints' => 'Set in-out points', |
| 22 | + 'mwe-clipedit-sc_overlays' => 'Overlays', |
| 23 | + 'mwe-clipedit-sc_audio' => 'Audio control', |
| 24 | + 'mwe-clipedit-sc_duration' => 'Duration', |
| 25 | + 'mwe-clipedit-template_properties' => 'Template properties', |
| 26 | + 'mwe-clipedit-custom_title' => 'Custom title', |
| 27 | + 'mwe-clipedit-edit_properties' => 'Edit properties', |
| 28 | + 'mwe-clipedit-other_properties' => 'Other properties', |
| 29 | + 'mwe-clipedit-resource_page' => 'Resource page:', |
| 30 | + 'mwe-clipedit-set_in_out_points' => 'Set in-out points', |
| 31 | + 'mwe-clipedit-start_time' => 'Start time', |
| 32 | + 'mwe-clipedit-end_time' => 'End time', |
| 33 | + 'mwe-clipedit-preview_inout' => 'Preview in-out points', |
| 34 | + 'mwe-clipedit-edit-tools' => 'Edit tools', |
| 35 | + 'mwe-clipedit-inline-description' => 'Caption', |
| 36 | + 'mwe-clipedit-edit-video-tools' => 'Edit video tools:', |
| 37 | + 'mwe-clipedit-duration' => 'Duration:', |
| 38 | + 'mwe-clipedit-layout' => 'Layout', |
| 39 | + 'mwe-clipedit-layout_right' => 'Right side image layout', |
| 40 | + 'mwe-clipedit-layout_left' => 'Left side image layout', |
40 | 41 | ); |
| 42 | + |
41 | 43 | $messages['af'] = array( |
42 | | - 'mwe-preview_insert' => 'Voorskou', |
43 | | - 'mwe-cancel_image_insert' => 'Kanselleer byvoeging', |
44 | | - 'mwe-sc_duration' => 'Duur', |
45 | | - 'mwe-edit_properties' => 'Wysig eienskappe', |
46 | | - 'mwe-other_properties' => 'Ander eienskappe', |
47 | | - 'mwe-start_time' => 'Begintyd', |
48 | | - 'mwe-end_time' => 'Eindtyd', |
49 | | - 'mwe-duration' => 'Duur:', |
| 44 | + 'mwe-clipedit-preview_insert' => 'Voorskou', |
| 45 | + 'mwe-clipedit-cancel_image_insert' => 'Kanselleer byvoeging', |
| 46 | + 'mwe-clipedit-sc_duration' => 'Duur', |
| 47 | + 'mwe-clipedit-edit_properties' => 'Wysig eienskappe', |
| 48 | + 'mwe-clipedit-other_properties' => 'Ander eienskappe', |
| 49 | + 'mwe-clipedit-start_time' => 'Begintyd', |
| 50 | + 'mwe-clipedit-end_time' => 'Eindtyd', |
| 51 | + 'mwe-clipedit-duration' => 'Duur:', |
50 | 52 | ); |
| 53 | + |
51 | 54 | $messages['ar'] = array( |
52 | | - 'mwe-crop' => 'اقتص الصورة', |
53 | | - 'mwe-cancel_image_insert' => 'ألغِ الإدراج', |
54 | | - 'mwe-sc_audio' => 'تحكم الصوت', |
55 | | - 'mwe-sc_duration' => 'المدة', |
56 | | - 'mwe-template_properties' => 'خصائص القالب', |
57 | | - 'mwe-custom_title' => 'عنوان مُخصّص', |
58 | | - 'mwe-edit_properties' => 'عدل الخصائص', |
59 | | - 'mwe-other_properties' => 'خصائص أخرى', |
60 | | - 'mwe-start_time' => 'وقت البداية', |
61 | | - 'mwe-end_time' => 'وقت النهاية', |
| 55 | + 'mwe-clipedit-crop' => 'اقتص الصورة', |
| 56 | + 'mwe-clipedit-cancel_image_insert' => 'ألغِ الإدراج', |
| 57 | + 'mwe-clipedit-sc_audio' => 'تحكم الصوت', |
| 58 | + 'mwe-clipedit-sc_duration' => 'المدة', |
| 59 | + 'mwe-clipedit-template_properties' => 'خصائص القالب', |
| 60 | + 'mwe-clipedit-custom_title' => 'عنوان مُخصّص', |
| 61 | + 'mwe-clipedit-edit_properties' => 'عدل الخصائص', |
| 62 | + 'mwe-clipedit-other_properties' => 'خصائص أخرى', |
| 63 | + 'mwe-clipedit-start_time' => 'وقت البداية', |
| 64 | + 'mwe-clipedit-end_time' => 'وقت النهاية', |
62 | 65 | ); |
| 66 | + |
63 | 67 | $messages['be-tarask'] = array( |
64 | | - 'mwe-crop' => 'Выразаць частку выявы', |
65 | | - 'mwe-apply_crop' => 'Прыняць выразку часткі выявы', |
66 | | - 'mwe-reset_crop' => 'Адмяніць выразку часткі', |
67 | | - 'mwe-insert_image_page' => 'Уставіць на старонку', |
68 | | - 'mwe-insert_into_sequence' => 'Уставіць у пасьлядоўнасьць', |
69 | | - 'mwe-preview_insert' => 'Папярэдні прагляд устаўкі', |
70 | | - 'mwe-cancel_image_insert' => 'Адмяніць устаўку', |
71 | | - 'mwe-sc_inoutpoints' => 'Устаноўка пунктаў увода-вываду', |
72 | | - 'mwe-sc_overlays' => 'Накладаньні', |
73 | | - 'mwe-sc_audio' => 'Аўдыё-кантроль', |
74 | | - 'mwe-sc_duration' => 'Працягласьць', |
75 | | - 'mwe-template_properties' => 'Уласьцівасьці шаблёну', |
76 | | - 'mwe-custom_title' => 'Нестандартная назва', |
77 | | - 'mwe-edit_properties' => 'Рэдагаваць уласьцівасьці', |
78 | | - 'mwe-other_properties' => 'Іншыя ўласьцівасьці', |
79 | | - 'mwe-resource_page' => 'Старонка рэсурсу:', |
80 | | - 'mwe-set_in_out_points' => 'Устанавіць пункты ўвода-вываду', |
81 | | - 'mwe-start_time' => 'Час пачатку', |
82 | | - 'mwe-end_time' => 'Час сканчэньня', |
83 | | - 'mwe-preview_inout' => 'Праглядзець пункты ўводу-вываду', |
84 | | - 'mwe-edit-tools' => 'Інструмэнты рэдагаваньня', |
85 | | - 'mwe-inline-description' => 'Загаловак', |
86 | | - 'mwe-edit-video-tools' => 'Прылады рэдагаваньня відэа:', |
87 | | - 'mwe-duration' => 'Працягласьць:', |
| 68 | + 'mwe-clipedit-crop' => 'Выразаць частку выявы', |
| 69 | + 'mwe-clipedit-apply_crop' => 'Прыняць выразку часткі выявы', |
| 70 | + 'mwe-clipedit-reset_crop' => 'Адмяніць выразку часткі', |
| 71 | + 'mwe-clipedit-insert_image_page' => 'Уставіць на старонку', |
| 72 | + 'mwe-clipedit-insert_into_sequence' => 'Уставіць у пасьлядоўнасьць', |
| 73 | + 'mwe-clipedit-preview_insert' => 'Папярэдні прагляд устаўкі', |
| 74 | + 'mwe-clipedit-cancel_image_insert' => 'Адмяніць устаўку', |
| 75 | + 'mwe-clipedit-sc_inoutpoints' => 'Устаноўка пунктаў увода-вываду', |
| 76 | + 'mwe-clipedit-sc_overlays' => 'Накладаньні', |
| 77 | + 'mwe-clipedit-sc_audio' => 'Аўдыё-кантроль', |
| 78 | + 'mwe-clipedit-sc_duration' => 'Працягласьць', |
| 79 | + 'mwe-clipedit-template_properties' => 'Уласьцівасьці шаблёну', |
| 80 | + 'mwe-clipedit-custom_title' => 'Нестандартная назва', |
| 81 | + 'mwe-clipedit-edit_properties' => 'Рэдагаваць уласьцівасьці', |
| 82 | + 'mwe-clipedit-other_properties' => 'Іншыя ўласьцівасьці', |
| 83 | + 'mwe-clipedit-resource_page' => 'Старонка рэсурсу:', |
| 84 | + 'mwe-clipedit-set_in_out_points' => 'Устанавіць пункты ўвода-вываду', |
| 85 | + 'mwe-clipedit-start_time' => 'Час пачатку', |
| 86 | + 'mwe-clipedit-end_time' => 'Час сканчэньня', |
| 87 | + 'mwe-clipedit-preview_inout' => 'Праглядзець пункты ўводу-вываду', |
| 88 | + 'mwe-clipedit-edit-tools' => 'Інструмэнты рэдагаваньня', |
| 89 | + 'mwe-clipedit-inline-description' => 'Загаловак', |
| 90 | + 'mwe-clipedit-edit-video-tools' => 'Прылады рэдагаваньня відэа:', |
| 91 | + 'mwe-clipedit-duration' => 'Працягласьць:', |
88 | 92 | ); |
| 93 | + |
89 | 94 | $messages['bg'] = array( |
90 | | - 'mwe-sc_duration' => 'Продължителност', |
| 95 | + 'mwe-clipedit-sc_duration' => 'Продължителност', |
91 | 96 | ); |
| 97 | + |
92 | 98 | $messages['br'] = array( |
93 | | - 'mwe-cancel_image_insert' => 'Nullañ an ensoc\'hadenn', |
94 | | - 'mwe-sc_duration' => 'Pad', |
95 | | - 'mwe-custom_title' => 'Titl personelaet', |
96 | | - 'mwe-edit_properties' => 'Aozañ ar perzhioù', |
97 | | - 'mwe-edit-tools' => 'Binvioù aozañ', |
98 | | - 'mwe-inline-description' => 'Alc\'hwez', |
99 | | - 'mwe-duration' => 'Pad :', |
| 99 | + 'mwe-clipedit-cancel_image_insert' => 'Nullañ an ensoc\'hadenn', |
| 100 | + 'mwe-clipedit-sc_duration' => 'Pad', |
| 101 | + 'mwe-clipedit-custom_title' => 'Titl personelaet', |
| 102 | + 'mwe-clipedit-edit_properties' => 'Aozañ ar perzhioù', |
| 103 | + 'mwe-clipedit-edit-tools' => 'Binvioù aozañ', |
| 104 | + 'mwe-clipedit-inline-description' => 'Alc\'hwez', |
| 105 | + 'mwe-clipedit-duration' => 'Pad :', |
100 | 106 | ); |
| 107 | + |
101 | 108 | $messages['bs'] = array( |
102 | | - 'mwe-crop' => 'Isjecanje slike', |
103 | | - 'mwe-insert_image_page' => 'Ubaci u stranicu', |
104 | | - 'mwe-insert_into_sequence' => 'Ubaci u niz', |
105 | | - 'mwe-preview_insert' => 'Pregled ubacivanja', |
106 | | - 'mwe-cancel_image_insert' => 'Odustani od ubacivanja', |
107 | | - 'mwe-sc_audio' => 'Kontrola zvuka', |
108 | | - 'mwe-sc_duration' => 'Trajanje', |
109 | | - 'mwe-template_properties' => 'Svojstva šablona', |
110 | | - 'mwe-custom_title' => 'Prilagođeni naslov', |
111 | | - 'mwe-edit_properties' => 'Uredi svojstva', |
112 | | - 'mwe-other_properties' => 'Ostala svojstva', |
113 | | - 'mwe-resource_page' => 'Izvorna stranica:', |
114 | | - 'mwe-start_time' => 'Vrijeme početka', |
115 | | - 'mwe-end_time' => 'Vrijeme završetka', |
116 | | - 'mwe-edit-tools' => 'Uređivanje alata', |
117 | | - 'mwe-duration' => 'Trajanje:', |
| 109 | + 'mwe-clipedit-crop' => 'Isjecanje slike', |
| 110 | + 'mwe-clipedit-insert_image_page' => 'Ubaci u stranicu', |
| 111 | + 'mwe-clipedit-insert_into_sequence' => 'Ubaci u niz', |
| 112 | + 'mwe-clipedit-preview_insert' => 'Pregled ubacivanja', |
| 113 | + 'mwe-clipedit-cancel_image_insert' => 'Odustani od ubacivanja', |
| 114 | + 'mwe-clipedit-sc_audio' => 'Kontrola zvuka', |
| 115 | + 'mwe-clipedit-sc_duration' => 'Trajanje', |
| 116 | + 'mwe-clipedit-template_properties' => 'Svojstva šablona', |
| 117 | + 'mwe-clipedit-custom_title' => 'Prilagođeni naslov', |
| 118 | + 'mwe-clipedit-edit_properties' => 'Uredi svojstva', |
| 119 | + 'mwe-clipedit-other_properties' => 'Ostala svojstva', |
| 120 | + 'mwe-clipedit-resource_page' => 'Izvorna stranica:', |
| 121 | + 'mwe-clipedit-start_time' => 'Vrijeme početka', |
| 122 | + 'mwe-clipedit-end_time' => 'Vrijeme završetka', |
| 123 | + 'mwe-clipedit-edit-tools' => 'Uređivanje alata', |
| 124 | + 'mwe-clipedit-duration' => 'Trajanje:', |
118 | 125 | ); |
| 126 | + |
119 | 127 | $messages['cs'] = array( |
120 | | - 'mwe-crop' => 'Oříznout obrázek', |
121 | | - 'mwe-apply_crop' => 'Použít ořez', |
122 | | - 'mwe-reset_crop' => 'Zrušit ořez', |
123 | | - 'mwe-insert_image_page' => 'Vložit do stránky', |
124 | | - 'mwe-preview_insert' => 'Náhled vložení', |
125 | | - 'mwe-cancel_image_insert' => 'Zrušit vkládání', |
126 | | - 'mwe-edit-tools' => 'Nástroje pro editaci', |
127 | | - 'mwe-inline-description' => 'Titulek', |
| 128 | + 'mwe-clipedit-crop' => 'Oříznout obrázek', |
| 129 | + 'mwe-clipedit-apply_crop' => 'Použít ořez', |
| 130 | + 'mwe-clipedit-reset_crop' => 'Zrušit ořez', |
| 131 | + 'mwe-clipedit-insert_image_page' => 'Vložit do stránky', |
| 132 | + 'mwe-clipedit-preview_insert' => 'Náhled vložení', |
| 133 | + 'mwe-clipedit-cancel_image_insert' => 'Zrušit vkládání', |
| 134 | + 'mwe-clipedit-edit-tools' => 'Nástroje pro editaci', |
| 135 | + 'mwe-clipedit-inline-description' => 'Titulek', |
128 | 136 | ); |
| 137 | + |
129 | 138 | $messages['de'] = array( |
130 | | - 'mwe-crop' => 'Bild zuschneiden', |
131 | | - 'mwe-apply_crop' => 'Zuschnitt auf das Bild anwenden', |
132 | | - 'mwe-reset_crop' => 'Zuschnitt zurücksetzen', |
133 | | - 'mwe-insert_image_page' => 'In Seite einfügen', |
134 | | - 'mwe-insert_into_sequence' => 'In Sequenz einfügen', |
135 | | - 'mwe-cancel_image_insert' => 'Einfügen abbrechen', |
136 | | - 'mwe-sc_inoutpoints' => 'Ein-Aus-Punkte setzen', |
137 | | - 'mwe-sc_overlays' => 'Überlagerungen', |
138 | | - 'mwe-sc_audio' => 'Audiosteuerung', |
139 | | - 'mwe-sc_duration' => 'Dauer', |
140 | | - 'mwe-template_properties' => 'Vorlageneigenschaften', |
141 | | - 'mwe-custom_title' => 'Benutzerdefinierter Titel', |
142 | | - 'mwe-edit_properties' => 'Eigenschaften bearbeiten', |
143 | | - 'mwe-other_properties' => 'Andere Eigenschaften', |
144 | | - 'mwe-resource_page' => 'Quellseite:', |
145 | | - 'mwe-set_in_out_points' => 'Ein-Aus-Punkte setzen', |
146 | | - 'mwe-start_time' => 'Startzeit', |
147 | | - 'mwe-end_time' => 'Endzeit', |
148 | | - 'mwe-preview_inout' => 'Vorschau der Ein-Aus-Punkte', |
149 | | - 'mwe-duration' => 'Dauer:', |
| 139 | + 'mwe-clipedit-crop' => 'Bild zuschneiden', |
| 140 | + 'mwe-clipedit-apply_crop' => 'Zuschnitt auf das Bild anwenden', |
| 141 | + 'mwe-clipedit-reset_crop' => 'Zuschnitt zurücksetzen', |
| 142 | + 'mwe-clipedit-insert_image_page' => 'In Seite einfügen', |
| 143 | + 'mwe-clipedit-insert_into_sequence' => 'In Sequenz einfügen', |
| 144 | + 'mwe-clipedit-cancel_image_insert' => 'Einfügen abbrechen', |
| 145 | + 'mwe-clipedit-sc_inoutpoints' => 'Ein-Aus-Punkte setzen', |
| 146 | + 'mwe-clipedit-sc_overlays' => 'Überlagerungen', |
| 147 | + 'mwe-clipedit-sc_audio' => 'Audiosteuerung', |
| 148 | + 'mwe-clipedit-sc_duration' => 'Dauer', |
| 149 | + 'mwe-clipedit-template_properties' => 'Vorlageneigenschaften', |
| 150 | + 'mwe-clipedit-custom_title' => 'Benutzerdefinierter Titel', |
| 151 | + 'mwe-clipedit-edit_properties' => 'Eigenschaften bearbeiten', |
| 152 | + 'mwe-clipedit-other_properties' => 'Andere Eigenschaften', |
| 153 | + 'mwe-clipedit-resource_page' => 'Quellseite:', |
| 154 | + 'mwe-clipedit-set_in_out_points' => 'Ein-Aus-Punkte setzen', |
| 155 | + 'mwe-clipedit-start_time' => 'Startzeit', |
| 156 | + 'mwe-clipedit-end_time' => 'Endzeit', |
| 157 | + 'mwe-clipedit-preview_inout' => 'Vorschau der Ein-Aus-Punkte', |
| 158 | + 'mwe-clipedit-duration' => 'Dauer:', |
150 | 159 | ); |
| 160 | + |
151 | 161 | $messages['diq'] = array( |
152 | | - 'mwe-crop' => 'resım bıqesn', |
153 | | - 'mwe-apply_crop' => 'qesnayiş resım re tetbiq bıker', |
154 | | - 'mwe-reset_crop' => 'qesnayiş sıfır ker', |
155 | | - 'mwe-insert_image_page' => 'pela têarê ker', |
156 | | - 'mwe-insert_into_sequence' => 'bıerz rêz', |
157 | | - 'mwe-preview_insert' => 'têarêkerdeyan seyr bıker', |
158 | | - 'mwe-cancel_image_insert' => 'têare kerdış ibtal bıker', |
159 | | - 'mwe-sc_inoutpoints' => 'nuqtayê destpêkerdış u qediyayişi eyar ker', |
160 | | - 'mwe-sc_overlays' => 'tebeqeyi', |
161 | | - 'mwe-sc_audio' => 'kontrolê vengi', |
162 | | - 'mwe-sc_duration' => 'mudde/zeman', |
163 | | - 'mwe-template_properties' => 'xusûsê şabloni', |
164 | | - 'mwe-custom_title' => 'sernameyo xusûsi', |
165 | | - 'mwe-edit_properties' => 'xusûsê vurnayişi', |
166 | | - 'mwe-other_properties' => 'xusûsê bini', |
167 | | - 'mwe-resource_page' => 'pelê çımeyi:', |
168 | | - 'mwe-set_in_out_points' => 'noqtayê destpêkerdış u qediyayişi eyar bıker', |
169 | | - 'mwe-start_time' => 'demê destpêkerdışi', |
170 | | - 'mwe-end_time' => 'demê qediyayişi', |
171 | | - 'mwe-preview_inout' => 'noqtayê destpêkerdış u qediyayişi seyr bıker', |
172 | | - 'mwe-edit-tools' => 'Hacetanê vurnayisi', |
173 | | - 'mwe-inline-description' => 'Kapsiyon', |
174 | | - 'mwe-edit-video-tools' => 'Hacetanê videyo edit kerdisi', |
175 | | - 'mwe-duration' => 'Sure:', |
| 162 | + 'mwe-clipedit-crop' => 'resım bıqesn', |
| 163 | + 'mwe-clipedit-apply_crop' => 'qesnayiş resım re tetbiq bıker', |
| 164 | + 'mwe-clipedit-reset_crop' => 'qesnayiş sıfır ker', |
| 165 | + 'mwe-clipedit-insert_image_page' => 'pela têarê ker', |
| 166 | + 'mwe-clipedit-insert_into_sequence' => 'bıerz rêz', |
| 167 | + 'mwe-clipedit-preview_insert' => 'têarêkerdeyan seyr bıker', |
| 168 | + 'mwe-clipedit-cancel_image_insert' => 'têare kerdış ibtal bıker', |
| 169 | + 'mwe-clipedit-sc_inoutpoints' => 'nuqtayê destpêkerdış u qediyayişi eyar ker', |
| 170 | + 'mwe-clipedit-sc_overlays' => 'tebeqeyi', |
| 171 | + 'mwe-clipedit-sc_audio' => 'kontrolê vengi', |
| 172 | + 'mwe-clipedit-sc_duration' => 'mudde/zeman', |
| 173 | + 'mwe-clipedit-template_properties' => 'xusûsê şabloni', |
| 174 | + 'mwe-clipedit-custom_title' => 'sernameyo xusûsi', |
| 175 | + 'mwe-clipedit-edit_properties' => 'xusûsê vurnayişi', |
| 176 | + 'mwe-clipedit-other_properties' => 'xusûsê bini', |
| 177 | + 'mwe-clipedit-resource_page' => 'pelê çımeyi:', |
| 178 | + 'mwe-clipedit-set_in_out_points' => 'noqtayê destpêkerdış u qediyayişi eyar bıker', |
| 179 | + 'mwe-clipedit-start_time' => 'demê destpêkerdışi', |
| 180 | + 'mwe-clipedit-end_time' => 'demê qediyayişi', |
| 181 | + 'mwe-clipedit-preview_inout' => 'noqtayê destpêkerdış u qediyayişi seyr bıker', |
| 182 | + 'mwe-clipedit-edit-tools' => 'Hacetanê vurnayisi', |
| 183 | + 'mwe-clipedit-inline-description' => 'Kapsiyon', |
| 184 | + 'mwe-clipedit-edit-video-tools' => 'Hacetanê videyo edit kerdisi', |
| 185 | + 'mwe-clipedit-duration' => 'Sure:', |
176 | 186 | ); |
| 187 | + |
177 | 188 | $messages['dsb'] = array( |
178 | | - 'mwe-crop' => 'Wobraz wobrězaś', |
179 | | - 'mwe-apply_crop' => 'Wobrězanje na wobraz nałožyś', |
180 | | - 'mwe-reset_crop' => 'Wobrězanje anulěrowaś', |
181 | | - 'mwe-insert_image_page' => 'Do boka zasajźiś', |
182 | | - 'mwe-insert_into_sequence' => 'Do sekwence zasajźiś', |
183 | | - 'mwe-preview_insert' => 'Pséglěd zasajźenja', |
184 | | - 'mwe-cancel_image_insert' => 'Zasajźenje pśetergnuś', |
185 | | - 'mwe-sc_inoutpoints' => 'Zachopne-kóńcne dypki stajiś', |
186 | | - 'mwe-sc_overlays' => 'Pśewarstowanja', |
187 | | - 'mwe-sc_audio' => 'Awdioregulěrowanje', |
188 | | - 'mwe-sc_duration' => 'Cas', |
189 | | - 'mwe-template_properties' => 'Kakosći pśedłogi', |
190 | | - 'mwe-custom_title' => 'Swójski titel', |
191 | | - 'mwe-edit_properties' => 'Kakosći wobźěłaś', |
192 | | - 'mwe-other_properties' => 'Druge kakosći', |
193 | | - 'mwe-resource_page' => 'Resursowy bok:', |
194 | | - 'mwe-set_in_out_points' => 'Zachopne-kóńcne dypki stajiś', |
195 | | - 'mwe-start_time' => 'Zachopny cas', |
196 | | - 'mwe-end_time' => 'Kóńcny cas', |
197 | | - 'mwe-preview_inout' => 'Zachopne-kóńcne dypki ako pśeglěd pokazaś', |
198 | | - 'mwe-edit-tools' => 'Wobźěłowańske rědy', |
199 | | - 'mwe-inline-description' => 'Nadpismo', |
200 | | - 'mwe-edit-video-tools' => 'Rědy za wobźěłowanje wideo:', |
201 | | - 'mwe-duration' => 'Cas:', |
| 189 | + 'mwe-clipedit-crop' => 'Wobraz wobrězaś', |
| 190 | + 'mwe-clipedit-apply_crop' => 'Wobrězanje na wobraz nałožyś', |
| 191 | + 'mwe-clipedit-reset_crop' => 'Wobrězanje anulěrowaś', |
| 192 | + 'mwe-clipedit-insert_image_page' => 'Do boka zasajźiś', |
| 193 | + 'mwe-clipedit-insert_into_sequence' => 'Do sekwence zasajźiś', |
| 194 | + 'mwe-clipedit-preview_insert' => 'Pséglěd zasajźenja', |
| 195 | + 'mwe-clipedit-cancel_image_insert' => 'Zasajźenje pśetergnuś', |
| 196 | + 'mwe-clipedit-sc_inoutpoints' => 'Zachopne-kóńcne dypki stajiś', |
| 197 | + 'mwe-clipedit-sc_overlays' => 'Pśewarstowanja', |
| 198 | + 'mwe-clipedit-sc_audio' => 'Awdioregulěrowanje', |
| 199 | + 'mwe-clipedit-sc_duration' => 'Cas', |
| 200 | + 'mwe-clipedit-template_properties' => 'Kakosći pśedłogi', |
| 201 | + 'mwe-clipedit-custom_title' => 'Swójski titel', |
| 202 | + 'mwe-clipedit-edit_properties' => 'Kakosći wobźěłaś', |
| 203 | + 'mwe-clipedit-other_properties' => 'Druge kakosći', |
| 204 | + 'mwe-clipedit-resource_page' => 'Resursowy bok:', |
| 205 | + 'mwe-clipedit-set_in_out_points' => 'Zachopne-kóńcne dypki stajiś', |
| 206 | + 'mwe-clipedit-start_time' => 'Zachopny cas', |
| 207 | + 'mwe-clipedit-end_time' => 'Kóńcny cas', |
| 208 | + 'mwe-clipedit-preview_inout' => 'Zachopne-kóńcne dypki ako pśeglěd pokazaś', |
| 209 | + 'mwe-clipedit-edit-tools' => 'Wobźěłowańske rědy', |
| 210 | + 'mwe-clipedit-inline-description' => 'Nadpismo', |
| 211 | + 'mwe-clipedit-edit-video-tools' => 'Rědy za wobźěłowanje wideo:', |
| 212 | + 'mwe-clipedit-duration' => 'Cas:', |
202 | 213 | ); |
| 214 | + |
203 | 215 | $messages['el'] = array( |
204 | | - 'mwe-crop' => 'Διαχωρισμός εικόνας', |
205 | | - 'mwe-apply_crop' => 'Εφαρμογή διαχωρισμού στην εικόνα', |
206 | | - 'mwe-reset_crop' => 'Επαναφορά διαχωρισμού', |
207 | | - 'mwe-insert_image_page' => 'Εισαγωγή στη σελίδα', |
208 | | - 'mwe-insert_into_sequence' => 'Εισαγωγή στην ακολουθία', |
209 | | - 'mwe-preview_insert' => 'Προεπισκόπηση εισαγωγής', |
210 | | - 'mwe-cancel_image_insert' => 'Ακύρωση εισαγωγής', |
211 | | - 'mwe-sc_inoutpoints' => 'Ρύθμιση μέσα-έξω πόντων', |
212 | | - 'mwe-sc_overlays' => 'Επικαλύψεις', |
213 | | - 'mwe-sc_audio' => 'Διαχείριση ήχου', |
214 | | - 'mwe-sc_duration' => 'Διάρκεια', |
215 | | - 'mwe-template_properties' => 'Ιδιότητες προτύπου', |
216 | | - 'mwe-custom_title' => 'Συνήθης τίτλος', |
217 | | - 'mwe-edit_properties' => 'Επεξεργασία ιδιοτήτων', |
218 | | - 'mwe-other_properties' => 'Άλλες ιδιότητες', |
219 | | - 'mwe-resource_page' => 'Σελίδα πηγής:', |
220 | | - 'mwe-set_in_out_points' => 'Ρύθμιση μέσα-έξω πόντων', |
221 | | - 'mwe-start_time' => 'Χρόνος εκκίνησης', |
222 | | - 'mwe-end_time' => 'Χρόνος λήξης', |
223 | | - 'mwe-preview_inout' => 'Προεπισκόπηση των σημείων εισόδου-εξόδου', |
| 216 | + 'mwe-clipedit-crop' => 'Διαχωρισμός εικόνας', |
| 217 | + 'mwe-clipedit-apply_crop' => 'Εφαρμογή διαχωρισμού στην εικόνα', |
| 218 | + 'mwe-clipedit-reset_crop' => 'Επαναφορά διαχωρισμού', |
| 219 | + 'mwe-clipedit-insert_image_page' => 'Εισαγωγή στη σελίδα', |
| 220 | + 'mwe-clipedit-insert_into_sequence' => 'Εισαγωγή στην ακολουθία', |
| 221 | + 'mwe-clipedit-preview_insert' => 'Προεπισκόπηση εισαγωγής', |
| 222 | + 'mwe-clipedit-cancel_image_insert' => 'Ακύρωση εισαγωγής', |
| 223 | + 'mwe-clipedit-sc_inoutpoints' => 'Ρύθμιση μέσα-έξω πόντων', |
| 224 | + 'mwe-clipedit-sc_overlays' => 'Επικαλύψεις', |
| 225 | + 'mwe-clipedit-sc_audio' => 'Διαχείριση ήχου', |
| 226 | + 'mwe-clipedit-sc_duration' => 'Διάρκεια', |
| 227 | + 'mwe-clipedit-template_properties' => 'Ιδιότητες προτύπου', |
| 228 | + 'mwe-clipedit-custom_title' => 'Συνήθης τίτλος', |
| 229 | + 'mwe-clipedit-edit_properties' => 'Επεξεργασία ιδιοτήτων', |
| 230 | + 'mwe-clipedit-other_properties' => 'Άλλες ιδιότητες', |
| 231 | + 'mwe-clipedit-resource_page' => 'Σελίδα πηγής:', |
| 232 | + 'mwe-clipedit-set_in_out_points' => 'Ρύθμιση μέσα-έξω πόντων', |
| 233 | + 'mwe-clipedit-start_time' => 'Χρόνος εκκίνησης', |
| 234 | + 'mwe-clipedit-end_time' => 'Χρόνος λήξης', |
| 235 | + 'mwe-clipedit-preview_inout' => 'Προεπισκόπηση των σημείων εισόδου-εξόδου', |
224 | 236 | ); |
| 237 | + |
225 | 238 | $messages['eo'] = array( |
226 | | - 'mwe-crop' => 'Stuci bildon', |
227 | | - 'mwe-apply_crop' => 'Apliki stucon al bildo', |
228 | | - 'mwe-cancel_image_insert' => 'Nuligi enmeton', |
229 | | - 'mwe-sc_duration' => 'Daŭro', |
230 | | - 'mwe-custom_title' => 'Memkreita titolo', |
| 239 | + 'mwe-clipedit-crop' => 'Stuci bildon', |
| 240 | + 'mwe-clipedit-apply_crop' => 'Apliki stucon al bildo', |
| 241 | + 'mwe-clipedit-cancel_image_insert' => 'Nuligi enmeton', |
| 242 | + 'mwe-clipedit-sc_duration' => 'Daŭro', |
| 243 | + 'mwe-clipedit-custom_title' => 'Memkreita titolo', |
231 | 244 | ); |
| 245 | + |
232 | 246 | $messages['es'] = array( |
233 | | - 'mwe-crop' => 'Recortar imagen', |
234 | | - 'mwe-apply_crop' => 'Aplicar el recorte a la imagen', |
235 | | - 'mwe-reset_crop' => 'Reiniciar el recorte', |
236 | | - 'mwe-insert_image_page' => 'Insertar en la página', |
237 | | - 'mwe-insert_into_sequence' => 'Insertar en secuencia', |
238 | | - 'mwe-preview_insert' => 'Previsualisar inserción', |
239 | | - 'mwe-cancel_image_insert' => 'Cancelar inserción', |
240 | | - 'mwe-sc_inoutpoints' => 'Establecer puntos de entrada y salida', |
241 | | - 'mwe-sc_overlays' => 'Superposiciones', |
242 | | - 'mwe-sc_audio' => 'Control de sonido', |
243 | | - 'mwe-sc_duration' => 'Duración', |
244 | | - 'mwe-template_properties' => 'Propiedades de plantilla', |
245 | | - 'mwe-custom_title' => 'Personalizar título', |
246 | | - 'mwe-edit_properties' => 'Editar propiedades', |
247 | | - 'mwe-other_properties' => 'Otras propiedades', |
248 | | - 'mwe-resource_page' => 'Página de recurso:', |
249 | | - 'mwe-set_in_out_points' => 'Establecer puntos de entrada y salida', |
250 | | - 'mwe-start_time' => 'Tiempo de inicio', |
251 | | - 'mwe-end_time' => 'Tiempo de fin', |
252 | | - 'mwe-preview_inout' => 'Previsualizar puntos de entrada y salida', |
253 | | - 'mwe-edit-video-tools' => 'Herramientas de edición de video:', |
254 | | - 'mwe-duration' => 'Duración:', |
| 247 | + 'mwe-clipedit-crop' => 'Recortar imagen', |
| 248 | + 'mwe-clipedit-apply_crop' => 'Aplicar el recorte a la imagen', |
| 249 | + 'mwe-clipedit-reset_crop' => 'Reiniciar el recorte', |
| 250 | + 'mwe-clipedit-insert_image_page' => 'Insertar en la página', |
| 251 | + 'mwe-clipedit-insert_into_sequence' => 'Insertar en secuencia', |
| 252 | + 'mwe-clipedit-preview_insert' => 'Previsualisar inserción', |
| 253 | + 'mwe-clipedit-cancel_image_insert' => 'Cancelar inserción', |
| 254 | + 'mwe-clipedit-sc_inoutpoints' => 'Establecer puntos de entrada y salida', |
| 255 | + 'mwe-clipedit-sc_overlays' => 'Superposiciones', |
| 256 | + 'mwe-clipedit-sc_audio' => 'Control de sonido', |
| 257 | + 'mwe-clipedit-sc_duration' => 'Duración', |
| 258 | + 'mwe-clipedit-template_properties' => 'Propiedades de plantilla', |
| 259 | + 'mwe-clipedit-custom_title' => 'Personalizar título', |
| 260 | + 'mwe-clipedit-edit_properties' => 'Editar propiedades', |
| 261 | + 'mwe-clipedit-other_properties' => 'Otras propiedades', |
| 262 | + 'mwe-clipedit-resource_page' => 'Página de recurso:', |
| 263 | + 'mwe-clipedit-set_in_out_points' => 'Establecer puntos de entrada y salida', |
| 264 | + 'mwe-clipedit-start_time' => 'Tiempo de inicio', |
| 265 | + 'mwe-clipedit-end_time' => 'Tiempo de fin', |
| 266 | + 'mwe-clipedit-preview_inout' => 'Previsualizar puntos de entrada y salida', |
| 267 | + 'mwe-clipedit-edit-video-tools' => 'Herramientas de edición de video:', |
| 268 | + 'mwe-clipedit-duration' => 'Duración:', |
255 | 269 | ); |
| 270 | + |
256 | 271 | $messages['eu'] = array( |
257 | | - 'mwe-crop' => 'Irudia moztu', |
258 | | - 'mwe-sc_duration' => 'Iraupena', |
259 | | - 'mwe-start_time' => 'Hasiera ordua', |
260 | | - 'mwe-end_time' => 'Amaiera ordua', |
261 | | - 'mwe-edit-tools' => 'Tresnak editatu', |
262 | | - 'mwe-duration' => 'Iraupena:', |
| 272 | + 'mwe-clipedit-crop' => 'Irudia moztu', |
| 273 | + 'mwe-clipedit-sc_duration' => 'Iraupena', |
| 274 | + 'mwe-clipedit-start_time' => 'Hasiera ordua', |
| 275 | + 'mwe-clipedit-end_time' => 'Amaiera ordua', |
| 276 | + 'mwe-clipedit-edit-tools' => 'Tresnak editatu', |
| 277 | + 'mwe-clipedit-duration' => 'Iraupena:', |
263 | 278 | ); |
| 279 | + |
264 | 280 | $messages['fi'] = array( |
265 | | - 'mwe-crop' => 'Rajaa kuva', |
266 | | - 'mwe-apply_crop' => 'Käytä rajausta kuvaan', |
267 | | - 'mwe-reset_crop' => 'Poista rajaus', |
268 | | - 'mwe-insert_image_page' => 'Lisää sivulle', |
269 | | - 'mwe-insert_into_sequence' => 'Lisää kappaleeseen', |
270 | | - 'mwe-preview_insert' => 'Esikatsele lisäystä', |
271 | | - 'mwe-cancel_image_insert' => 'Peruuta lisäys', |
272 | | - 'mwe-sc_audio' => 'Äänenhallinta', |
273 | | - 'mwe-sc_duration' => 'Kesto', |
274 | | - 'mwe-edit_properties' => 'Muokkaa ominaisuuksia', |
275 | | - 'mwe-start_time' => 'Aloitusaika', |
276 | | - 'mwe-end_time' => 'Lopetusaika', |
| 281 | + 'mwe-clipedit-crop' => 'Rajaa kuva', |
| 282 | + 'mwe-clipedit-apply_crop' => 'Käytä rajausta kuvaan', |
| 283 | + 'mwe-clipedit-reset_crop' => 'Poista rajaus', |
| 284 | + 'mwe-clipedit-insert_image_page' => 'Lisää sivulle', |
| 285 | + 'mwe-clipedit-insert_into_sequence' => 'Lisää kappaleeseen', |
| 286 | + 'mwe-clipedit-preview_insert' => 'Esikatsele lisäystä', |
| 287 | + 'mwe-clipedit-cancel_image_insert' => 'Peruuta lisäys', |
| 288 | + 'mwe-clipedit-sc_audio' => 'Äänenhallinta', |
| 289 | + 'mwe-clipedit-sc_duration' => 'Kesto', |
| 290 | + 'mwe-clipedit-edit_properties' => 'Muokkaa ominaisuuksia', |
| 291 | + 'mwe-clipedit-start_time' => 'Aloitusaika', |
| 292 | + 'mwe-clipedit-end_time' => 'Lopetusaika', |
277 | 293 | ); |
| 294 | + |
278 | 295 | $messages['fr'] = array( |
279 | | - 'mwe-crop' => 'Rogner l\'image', |
280 | | - 'mwe-apply_crop' => 'Appliquer la rognure à l\'image', |
281 | | - 'mwe-reset_crop' => 'Réinitialiser la rognure', |
282 | | - 'mwe-insert_image_page' => 'Insérer dans la page', |
283 | | - 'mwe-insert_into_sequence' => 'Insérer dans la séquence', |
284 | | - 'mwe-preview_insert' => 'Prévisualiser l\'insertion', |
285 | | - 'mwe-cancel_image_insert' => 'Annuler l\'insertion', |
286 | | - 'mwe-sc_inoutpoints' => 'Définir des points d\'entrée-sortie', |
287 | | - 'mwe-sc_overlays' => 'Revêtements', |
288 | | - 'mwe-sc_audio' => 'Contrôle audio', |
289 | | - 'mwe-sc_duration' => 'Durée', |
290 | | - 'mwe-template_properties' => 'Propriétés du modèle', |
291 | | - 'mwe-custom_title' => 'Titre personnalisé', |
292 | | - 'mwe-edit_properties' => 'Modifier les propriétés', |
293 | | - 'mwe-other_properties' => 'Autres propriétés', |
294 | | - 'mwe-resource_page' => 'Page de la ressource :', |
295 | | - 'mwe-set_in_out_points' => 'Définir des points d\'entrée-sortie', |
296 | | - 'mwe-start_time' => 'Heure de début', |
297 | | - 'mwe-end_time' => 'Heure de fin', |
298 | | - 'mwe-preview_inout' => 'Prévisualiser les points d\'entrée-sortie', |
299 | | - 'mwe-edit-tools' => 'Outils de modification', |
300 | | - 'mwe-inline-description' => 'Légende', |
301 | | - 'mwe-edit-video-tools' => 'Outils de modification des vidéos :', |
302 | | - 'mwe-duration' => 'Durée :', |
| 296 | + 'mwe-clipedit-crop' => 'Rogner l\'image', |
| 297 | + 'mwe-clipedit-apply_crop' => 'Appliquer la rognure à l\'image', |
| 298 | + 'mwe-clipedit-reset_crop' => 'Réinitialiser la rognure', |
| 299 | + 'mwe-clipedit-insert_image_page' => 'Insérer dans la page', |
| 300 | + 'mwe-clipedit-insert_into_sequence' => 'Insérer dans la séquence', |
| 301 | + 'mwe-clipedit-preview_insert' => 'Prévisualiser l\'insertion', |
| 302 | + 'mwe-clipedit-cancel_image_insert' => 'Annuler l\'insertion', |
| 303 | + 'mwe-clipedit-sc_inoutpoints' => 'Définir des points d\'entrée-sortie', |
| 304 | + 'mwe-clipedit-sc_overlays' => 'Revêtements', |
| 305 | + 'mwe-clipedit-sc_audio' => 'Contrôle audio', |
| 306 | + 'mwe-clipedit-sc_duration' => 'Durée', |
| 307 | + 'mwe-clipedit-template_properties' => 'Propriétés du modèle', |
| 308 | + 'mwe-clipedit-custom_title' => 'Titre personnalisé', |
| 309 | + 'mwe-clipedit-edit_properties' => 'Modifier les propriétés', |
| 310 | + 'mwe-clipedit-other_properties' => 'Autres propriétés', |
| 311 | + 'mwe-clipedit-resource_page' => 'Page de la ressource :', |
| 312 | + 'mwe-clipedit-set_in_out_points' => 'Définir des points d\'entrée-sortie', |
| 313 | + 'mwe-clipedit-start_time' => 'Heure de début', |
| 314 | + 'mwe-clipedit-end_time' => 'Heure de fin', |
| 315 | + 'mwe-clipedit-preview_inout' => 'Prévisualiser les points d\'entrée-sortie', |
| 316 | + 'mwe-clipedit-edit-tools' => 'Outils de modification', |
| 317 | + 'mwe-clipedit-inline-description' => 'Légende', |
| 318 | + 'mwe-clipedit-edit-video-tools' => 'Outils de modification des vidéos :', |
| 319 | + 'mwe-clipedit-duration' => 'Durée :', |
303 | 320 | ); |
| 321 | + |
304 | 322 | $messages['gl'] = array( |
305 | | - 'mwe-crop' => 'Cortar a imaxe', |
306 | | - 'mwe-apply_crop' => 'Aplicar o corte á imaxe', |
307 | | - 'mwe-reset_crop' => 'Restablecer o corte', |
308 | | - 'mwe-insert_image_page' => 'Inserir na páxina', |
309 | | - 'mwe-insert_into_sequence' => 'Inserir na secuencia', |
310 | | - 'mwe-preview_insert' => 'Vista previa da inserción', |
311 | | - 'mwe-cancel_image_insert' => 'Cancelar a inserción', |
312 | | - 'mwe-sc_inoutpoints' => 'Establecer os puntos de entrada-saída', |
313 | | - 'mwe-sc_overlays' => 'Sobreposicións', |
314 | | - 'mwe-sc_audio' => 'Control de audio', |
315 | | - 'mwe-sc_duration' => 'Duración', |
316 | | - 'mwe-template_properties' => 'Propiedades do modelo', |
317 | | - 'mwe-custom_title' => 'Título personalizado', |
318 | | - 'mwe-edit_properties' => 'Editar as propiedades', |
319 | | - 'mwe-other_properties' => 'Outras propiedades', |
320 | | - 'mwe-resource_page' => 'Páxina de recursos:', |
321 | | - 'mwe-set_in_out_points' => 'Establecer os puntos de entrada-saída', |
322 | | - 'mwe-start_time' => 'Hora de inicio', |
323 | | - 'mwe-end_time' => 'Hora de fin', |
324 | | - 'mwe-preview_inout' => 'Vista previa dos puntos de entrada-saída', |
325 | | - 'mwe-edit-tools' => 'Ferramentas de edición', |
326 | | - 'mwe-inline-description' => 'Lenda', |
327 | | - 'mwe-edit-video-tools' => 'Ferramentas de edición de vídeo:', |
328 | | - 'mwe-duration' => 'Duración:', |
| 323 | + 'mwe-clipedit-crop' => 'Cortar a imaxe', |
| 324 | + 'mwe-clipedit-apply_crop' => 'Aplicar o corte á imaxe', |
| 325 | + 'mwe-clipedit-reset_crop' => 'Restablecer o corte', |
| 326 | + 'mwe-clipedit-insert_image_page' => 'Inserir na páxina', |
| 327 | + 'mwe-clipedit-insert_into_sequence' => 'Inserir na secuencia', |
| 328 | + 'mwe-clipedit-preview_insert' => 'Vista previa da inserción', |
| 329 | + 'mwe-clipedit-cancel_image_insert' => 'Cancelar a inserción', |
| 330 | + 'mwe-clipedit-sc_inoutpoints' => 'Establecer os puntos de entrada-saída', |
| 331 | + 'mwe-clipedit-sc_overlays' => 'Sobreposicións', |
| 332 | + 'mwe-clipedit-sc_audio' => 'Control de audio', |
| 333 | + 'mwe-clipedit-sc_duration' => 'Duración', |
| 334 | + 'mwe-clipedit-template_properties' => 'Propiedades do modelo', |
| 335 | + 'mwe-clipedit-custom_title' => 'Título personalizado', |
| 336 | + 'mwe-clipedit-edit_properties' => 'Editar as propiedades', |
| 337 | + 'mwe-clipedit-other_properties' => 'Outras propiedades', |
| 338 | + 'mwe-clipedit-resource_page' => 'Páxina de recursos:', |
| 339 | + 'mwe-clipedit-set_in_out_points' => 'Establecer os puntos de entrada-saída', |
| 340 | + 'mwe-clipedit-start_time' => 'Hora de inicio', |
| 341 | + 'mwe-clipedit-end_time' => 'Hora de fin', |
| 342 | + 'mwe-clipedit-preview_inout' => 'Vista previa dos puntos de entrada-saída', |
| 343 | + 'mwe-clipedit-edit-tools' => 'Ferramentas de edición', |
| 344 | + 'mwe-clipedit-inline-description' => 'Lenda', |
| 345 | + 'mwe-clipedit-edit-video-tools' => 'Ferramentas de edición de vídeo:', |
| 346 | + 'mwe-clipedit-duration' => 'Duración:', |
329 | 347 | ); |
| 348 | + |
330 | 349 | $messages['gsw'] = array( |
331 | | - 'mwe-crop' => 'Bild zueschnyde', |
332 | | - 'mwe-apply_crop' => 'Bild zueschnyde', |
333 | | - 'mwe-reset_crop' => 'Zueschnitt zrucksetze', |
334 | | - 'mwe-insert_image_page' => 'In Syte yyfiege', |
335 | | - 'mwe-insert_into_sequence' => 'In dr Abschnitt yyfiege', |
336 | | - 'mwe-preview_insert' => 'Vorschau vu dr Yyfiegig', |
337 | | - 'mwe-cancel_image_insert' => 'S Yyfiege ruckgängig mache', |
338 | | - 'mwe-sc_inoutpoints' => 'Aa-Uus-Pinkt setze', |
339 | | - 'mwe-sc_overlays' => 'Overlays', |
340 | | - 'mwe-sc_audio' => 'Audioyystellige', |
341 | | - 'mwe-sc_duration' => 'Duur', |
342 | | - 'mwe-template_properties' => 'Vorlageeigeschafte', |
343 | | - 'mwe-custom_title' => 'Aapasste Titel', |
344 | | - 'mwe-edit_properties' => 'Eigeschafte bearbeite', |
345 | | - 'mwe-other_properties' => 'Andri Eigeschafte', |
346 | | - 'mwe-resource_page' => 'Quällsyte:', |
347 | | - 'mwe-set_in_out_points' => 'Aa-Uus-Pinkt setze', |
348 | | - 'mwe-start_time' => 'Aafangszyt', |
349 | | - 'mwe-end_time' => 'Ändzyt', |
350 | | - 'mwe-preview_inout' => 'Vorschau vu dr Aa-Uus-Pinkt', |
351 | | - 'mwe-edit-tools' => 'Bearbeitigs-Wärchzyyg', |
352 | | - 'mwe-inline-description' => 'Bschryybig', |
353 | | - 'mwe-edit-video-tools' => 'Video-Bearbeitigswärchzyyg:', |
354 | | - 'mwe-duration' => 'Duur:', |
| 350 | + 'mwe-clipedit-crop' => 'Bild zueschnyde', |
| 351 | + 'mwe-clipedit-apply_crop' => 'Bild zueschnyde', |
| 352 | + 'mwe-clipedit-reset_crop' => 'Zueschnitt zrucksetze', |
| 353 | + 'mwe-clipedit-insert_image_page' => 'In Syte yyfiege', |
| 354 | + 'mwe-clipedit-insert_into_sequence' => 'In dr Abschnitt yyfiege', |
| 355 | + 'mwe-clipedit-preview_insert' => 'Vorschau vu dr Yyfiegig', |
| 356 | + 'mwe-clipedit-cancel_image_insert' => 'S Yyfiege ruckgängig mache', |
| 357 | + 'mwe-clipedit-sc_inoutpoints' => 'Aa-Uus-Pinkt setze', |
| 358 | + 'mwe-clipedit-sc_overlays' => 'Overlays', |
| 359 | + 'mwe-clipedit-sc_audio' => 'Audioyystellige', |
| 360 | + 'mwe-clipedit-sc_duration' => 'Duur', |
| 361 | + 'mwe-clipedit-template_properties' => 'Vorlageeigeschafte', |
| 362 | + 'mwe-clipedit-custom_title' => 'Aapasste Titel', |
| 363 | + 'mwe-clipedit-edit_properties' => 'Eigeschafte bearbeite', |
| 364 | + 'mwe-clipedit-other_properties' => 'Andri Eigeschafte', |
| 365 | + 'mwe-clipedit-resource_page' => 'Quällsyte:', |
| 366 | + 'mwe-clipedit-set_in_out_points' => 'Aa-Uus-Pinkt setze', |
| 367 | + 'mwe-clipedit-start_time' => 'Aafangszyt', |
| 368 | + 'mwe-clipedit-end_time' => 'Ändzyt', |
| 369 | + 'mwe-clipedit-preview_inout' => 'Vorschau vu dr Aa-Uus-Pinkt', |
| 370 | + 'mwe-clipedit-edit-tools' => 'Bearbeitigs-Wärchzyyg', |
| 371 | + 'mwe-clipedit-inline-description' => 'Bschryybig', |
| 372 | + 'mwe-clipedit-edit-video-tools' => 'Video-Bearbeitigswärchzyyg:', |
| 373 | + 'mwe-clipedit-duration' => 'Duur:', |
355 | 374 | ); |
| 375 | + |
356 | 376 | $messages['he'] = array( |
357 | | - 'mwe-crop' => 'חיתוך תמונה', |
358 | | - 'mwe-apply_crop' => 'החלת החיתוך על התמונה', |
359 | | - 'mwe-reset_crop' => 'איפוס החיתוך', |
360 | | - 'mwe-insert_image_page' => 'הוספה לדף', |
361 | | - 'mwe-insert_into_sequence' => 'הוספה לתוך הרצף', |
362 | | - 'mwe-preview_insert' => 'תצוגה מקדימה של התוספת', |
363 | | - 'mwe-cancel_image_insert' => 'ביטול ההוספה', |
364 | | - 'mwe-sc_inoutpoints' => 'הגדרת נקודות כניסה ויציאה', |
365 | | - 'mwe-sc_overlays' => 'שכבות', |
366 | | - 'mwe-sc_audio' => 'בקרת שמע', |
367 | | - 'mwe-sc_duration' => 'משך', |
368 | | - 'mwe-template_properties' => 'מאפייני התבנית', |
369 | | - 'mwe-custom_title' => 'כותרת מותאמת אישית', |
370 | | - 'mwe-edit_properties' => 'עריכת המאפיינים', |
371 | | - 'mwe-other_properties' => 'מאפיינים אחרים', |
372 | | - 'mwe-resource_page' => 'דף המשאב:', |
373 | | - 'mwe-set_in_out_points' => 'הגדרת נקודות כניסה-יציאה', |
374 | | - 'mwe-start_time' => 'זמן ההתחלה', |
375 | | - 'mwe-end_time' => 'זמן הסיום', |
376 | | - 'mwe-preview_inout' => 'תצוגה מקדימה של נקודות הכניסה-יציאה', |
| 377 | + 'mwe-clipedit-crop' => 'חיתוך תמונה', |
| 378 | + 'mwe-clipedit-apply_crop' => 'החלת החיתוך על התמונה', |
| 379 | + 'mwe-clipedit-reset_crop' => 'איפוס החיתוך', |
| 380 | + 'mwe-clipedit-insert_image_page' => 'הוספה לדף', |
| 381 | + 'mwe-clipedit-insert_into_sequence' => 'הוספה לתוך הרצף', |
| 382 | + 'mwe-clipedit-preview_insert' => 'תצוגה מקדימה של התוספת', |
| 383 | + 'mwe-clipedit-cancel_image_insert' => 'ביטול ההוספה', |
| 384 | + 'mwe-clipedit-sc_inoutpoints' => 'הגדרת נקודות כניסה ויציאה', |
| 385 | + 'mwe-clipedit-sc_overlays' => 'שכבות', |
| 386 | + 'mwe-clipedit-sc_audio' => 'בקרת שמע', |
| 387 | + 'mwe-clipedit-sc_duration' => 'משך', |
| 388 | + 'mwe-clipedit-template_properties' => 'מאפייני התבנית', |
| 389 | + 'mwe-clipedit-custom_title' => 'כותרת מותאמת אישית', |
| 390 | + 'mwe-clipedit-edit_properties' => 'עריכת המאפיינים', |
| 391 | + 'mwe-clipedit-other_properties' => 'מאפיינים אחרים', |
| 392 | + 'mwe-clipedit-resource_page' => 'דף המשאב:', |
| 393 | + 'mwe-clipedit-set_in_out_points' => 'הגדרת נקודות כניסה-יציאה', |
| 394 | + 'mwe-clipedit-start_time' => 'זמן ההתחלה', |
| 395 | + 'mwe-clipedit-end_time' => 'זמן הסיום', |
| 396 | + 'mwe-clipedit-preview_inout' => 'תצוגה מקדימה של נקודות הכניסה-יציאה', |
377 | 397 | ); |
| 398 | + |
378 | 399 | $messages['hsb'] = array( |
379 | | - 'mwe-crop' => 'Wobraz přitřihać', |
380 | | - 'mwe-apply_crop' => 'Přitřihanje na wobraz nałožić', |
381 | | - 'mwe-reset_crop' => 'Přitřihanje cofnyć', |
382 | | - 'mwe-insert_image_page' => 'Do strony zasunyć', |
383 | | - 'mwe-insert_into_sequence' => 'Do sekwency zasunyć', |
384 | | - 'mwe-preview_insert' => 'Přehlad zasunjenja', |
385 | | - 'mwe-cancel_image_insert' => 'Zasunjenje přetorhnyć', |
386 | | - 'mwe-sc_inoutpoints' => 'Spočatne a kónčne dypki stajić', |
387 | | - 'mwe-sc_overlays' => 'Zablendowanja', |
388 | | - 'mwe-sc_audio' => 'Awdiowodźenje', |
389 | | - 'mwe-sc_duration' => 'Traće', |
390 | | - 'mwe-template_properties' => 'Kajkosće předłohi', |
391 | | - 'mwe-custom_title' => 'Swójski titul', |
392 | | - 'mwe-edit_properties' => 'Kajkosće wobdźěłać', |
393 | | - 'mwe-other_properties' => 'Druhe kajkosće', |
394 | | - 'mwe-resource_page' => 'Resursowa strona:', |
395 | | - 'mwe-set_in_out_points' => 'Spočatne a kónčne dypki stajić', |
396 | | - 'mwe-start_time' => 'Startowy čas', |
397 | | - 'mwe-end_time' => 'Kónčny čas', |
398 | | - 'mwe-preview_inout' => 'Spočatne a kónčne dypki jako přehlad pokazać', |
399 | | - 'mwe-edit-tools' => 'Wobdźěłowanske nastroje', |
400 | | - 'mwe-inline-description' => 'Nadpismo', |
401 | | - 'mwe-edit-video-tools' => 'Nastroje za wobdźěłowanje widejow:', |
402 | | - 'mwe-duration' => 'Traće:', |
| 400 | + 'mwe-clipedit-crop' => 'Wobraz přitřihać', |
| 401 | + 'mwe-clipedit-apply_crop' => 'Přitřihanje na wobraz nałožić', |
| 402 | + 'mwe-clipedit-reset_crop' => 'Přitřihanje cofnyć', |
| 403 | + 'mwe-clipedit-insert_image_page' => 'Do strony zasunyć', |
| 404 | + 'mwe-clipedit-insert_into_sequence' => 'Do sekwency zasunyć', |
| 405 | + 'mwe-clipedit-preview_insert' => 'Přehlad zasunjenja', |
| 406 | + 'mwe-clipedit-cancel_image_insert' => 'Zasunjenje přetorhnyć', |
| 407 | + 'mwe-clipedit-sc_inoutpoints' => 'Spočatne a kónčne dypki stajić', |
| 408 | + 'mwe-clipedit-sc_overlays' => 'Zablendowanja', |
| 409 | + 'mwe-clipedit-sc_audio' => 'Awdiowodźenje', |
| 410 | + 'mwe-clipedit-sc_duration' => 'Traće', |
| 411 | + 'mwe-clipedit-template_properties' => 'Kajkosće předłohi', |
| 412 | + 'mwe-clipedit-custom_title' => 'Swójski titul', |
| 413 | + 'mwe-clipedit-edit_properties' => 'Kajkosće wobdźěłać', |
| 414 | + 'mwe-clipedit-other_properties' => 'Druhe kajkosće', |
| 415 | + 'mwe-clipedit-resource_page' => 'Resursowa strona:', |
| 416 | + 'mwe-clipedit-set_in_out_points' => 'Spočatne a kónčne dypki stajić', |
| 417 | + 'mwe-clipedit-start_time' => 'Startowy čas', |
| 418 | + 'mwe-clipedit-end_time' => 'Kónčny čas', |
| 419 | + 'mwe-clipedit-preview_inout' => 'Spočatne a kónčne dypki jako přehlad pokazać', |
| 420 | + 'mwe-clipedit-edit-tools' => 'Wobdźěłowanske nastroje', |
| 421 | + 'mwe-clipedit-inline-description' => 'Nadpismo', |
| 422 | + 'mwe-clipedit-edit-video-tools' => 'Nastroje za wobdźěłowanje widejow:', |
| 423 | + 'mwe-clipedit-duration' => 'Traće:', |
403 | 424 | ); |
| 425 | + |
404 | 426 | $messages['hu'] = array( |
405 | | - 'mwe-crop' => 'Kép vágása', |
406 | | - 'mwe-apply_crop' => 'Vágás alkalmazása a képre', |
407 | | - 'mwe-reset_crop' => 'Vágás alaphelyzetbe állítása', |
408 | | - 'mwe-insert_image_page' => 'Beillesztés a lapra', |
409 | | - 'mwe-insert_into_sequence' => 'Beillesztés a jelenetbe', |
410 | | - 'mwe-preview_insert' => 'Beillesztés előnézete', |
411 | | - 'mwe-cancel_image_insert' => 'Beillesztés elvetése', |
412 | | - 'mwe-sc_inoutpoints' => 'Kezdő- és végpontok beállítása', |
413 | | - 'mwe-sc_overlays' => 'Rétegek', |
414 | | - 'mwe-sc_audio' => 'Hangvezérlés', |
415 | | - 'mwe-sc_duration' => 'Hossz', |
416 | | - 'mwe-template_properties' => 'Sablon tulajdonságai', |
417 | | - 'mwe-custom_title' => 'Egyéni cím', |
418 | | - 'mwe-edit_properties' => 'Tulajdonságok szerkesztése', |
419 | | - 'mwe-other_properties' => 'Egyéb tulajdonságok', |
420 | | - 'mwe-resource_page' => 'Erőforrás lap:', |
421 | | - 'mwe-set_in_out_points' => 'Kezdő- és végpontok beállítása', |
422 | | - 'mwe-start_time' => 'Kezdés ideje', |
423 | | - 'mwe-end_time' => 'Befejezés ideje', |
424 | | - 'mwe-preview_inout' => 'Kezdő- és végpontok megtekintése', |
425 | | - 'mwe-edit-tools' => 'Szerkesztőeszközök', |
426 | | - 'mwe-inline-description' => 'Cím', |
427 | | - 'mwe-edit-video-tools' => 'Videóeszközök szerkesztése:', |
428 | | - 'mwe-duration' => 'Hossz:', |
| 427 | + 'mwe-clipedit-crop' => 'Kép vágása', |
| 428 | + 'mwe-clipedit-apply_crop' => 'Vágás alkalmazása a képre', |
| 429 | + 'mwe-clipedit-reset_crop' => 'Vágás alaphelyzetbe állítása', |
| 430 | + 'mwe-clipedit-insert_image_page' => 'Beillesztés a lapra', |
| 431 | + 'mwe-clipedit-insert_into_sequence' => 'Beillesztés a jelenetbe', |
| 432 | + 'mwe-clipedit-preview_insert' => 'Beillesztés előnézete', |
| 433 | + 'mwe-clipedit-cancel_image_insert' => 'Beillesztés elvetése', |
| 434 | + 'mwe-clipedit-sc_inoutpoints' => 'Kezdő- és végpontok beállítása', |
| 435 | + 'mwe-clipedit-sc_overlays' => 'Rétegek', |
| 436 | + 'mwe-clipedit-sc_audio' => 'Hangvezérlés', |
| 437 | + 'mwe-clipedit-sc_duration' => 'Hossz', |
| 438 | + 'mwe-clipedit-template_properties' => 'Sablon tulajdonságai', |
| 439 | + 'mwe-clipedit-custom_title' => 'Egyéni cím', |
| 440 | + 'mwe-clipedit-edit_properties' => 'Tulajdonságok szerkesztése', |
| 441 | + 'mwe-clipedit-other_properties' => 'Egyéb tulajdonságok', |
| 442 | + 'mwe-clipedit-resource_page' => 'Erőforrás lap:', |
| 443 | + 'mwe-clipedit-set_in_out_points' => 'Kezdő- és végpontok beállítása', |
| 444 | + 'mwe-clipedit-start_time' => 'Kezdés ideje', |
| 445 | + 'mwe-clipedit-end_time' => 'Befejezés ideje', |
| 446 | + 'mwe-clipedit-preview_inout' => 'Kezdő- és végpontok megtekintése', |
| 447 | + 'mwe-clipedit-edit-tools' => 'Szerkesztőeszközök', |
| 448 | + 'mwe-clipedit-inline-description' => 'Cím', |
| 449 | + 'mwe-clipedit-edit-video-tools' => 'Videóeszközök szerkesztése:', |
| 450 | + 'mwe-clipedit-duration' => 'Hossz:', |
429 | 451 | ); |
| 452 | + |
430 | 453 | $messages['ia'] = array( |
431 | | - 'mwe-crop' => 'Taliar imagine', |
432 | | - 'mwe-apply_crop' => 'Facer un retalio del imagine', |
433 | | - 'mwe-reset_crop' => 'Reinitialisar retalio', |
434 | | - 'mwe-insert_image_page' => 'Inserer in pagina', |
435 | | - 'mwe-insert_into_sequence' => 'Inserer in sequentia', |
436 | | - 'mwe-preview_insert' => 'Previsualisar insertion', |
437 | | - 'mwe-cancel_image_insert' => 'Cancellar insertion', |
438 | | - 'mwe-sc_inoutpoints' => 'Definir punctos entrata-sortita', |
439 | | - 'mwe-sc_overlays' => 'Superpositiones', |
440 | | - 'mwe-sc_audio' => 'Controlo audio', |
441 | | - 'mwe-sc_duration' => 'Duration', |
442 | | - 'mwe-template_properties' => 'Proprietates de patrono', |
443 | | - 'mwe-custom_title' => 'Titulo personalisate', |
444 | | - 'mwe-edit_properties' => 'Modificar proprietates', |
445 | | - 'mwe-other_properties' => 'Altere proprietates', |
446 | | - 'mwe-resource_page' => 'Pagina del ressource:', |
447 | | - 'mwe-set_in_out_points' => 'Definir punctos entrata-sortita', |
448 | | - 'mwe-start_time' => 'Hora de initio', |
449 | | - 'mwe-end_time' => 'Hora de fin', |
450 | | - 'mwe-preview_inout' => 'Previsualisar punctos entrata-sortita', |
451 | | - 'mwe-edit-tools' => 'Instrumentos de modification', |
452 | | - 'mwe-inline-description' => 'Legenda', |
453 | | - 'mwe-edit-video-tools' => 'Instrumentos de modification de video:', |
454 | | - 'mwe-duration' => 'Durata:', |
| 454 | + 'mwe-clipedit-crop' => 'Taliar imagine', |
| 455 | + 'mwe-clipedit-apply_crop' => 'Facer un retalio del imagine', |
| 456 | + 'mwe-clipedit-reset_crop' => 'Reinitialisar retalio', |
| 457 | + 'mwe-clipedit-insert_image_page' => 'Inserer in pagina', |
| 458 | + 'mwe-clipedit-insert_into_sequence' => 'Inserer in sequentia', |
| 459 | + 'mwe-clipedit-preview_insert' => 'Previsualisar insertion', |
| 460 | + 'mwe-clipedit-cancel_image_insert' => 'Cancellar insertion', |
| 461 | + 'mwe-clipedit-sc_inoutpoints' => 'Definir punctos entrata-sortita', |
| 462 | + 'mwe-clipedit-sc_overlays' => 'Superpositiones', |
| 463 | + 'mwe-clipedit-sc_audio' => 'Controlo audio', |
| 464 | + 'mwe-clipedit-sc_duration' => 'Duration', |
| 465 | + 'mwe-clipedit-template_properties' => 'Proprietates de patrono', |
| 466 | + 'mwe-clipedit-custom_title' => 'Titulo personalisate', |
| 467 | + 'mwe-clipedit-edit_properties' => 'Modificar proprietates', |
| 468 | + 'mwe-clipedit-other_properties' => 'Altere proprietates', |
| 469 | + 'mwe-clipedit-resource_page' => 'Pagina del ressource:', |
| 470 | + 'mwe-clipedit-set_in_out_points' => 'Definir punctos entrata-sortita', |
| 471 | + 'mwe-clipedit-start_time' => 'Hora de initio', |
| 472 | + 'mwe-clipedit-end_time' => 'Hora de fin', |
| 473 | + 'mwe-clipedit-preview_inout' => 'Previsualisar punctos entrata-sortita', |
| 474 | + 'mwe-clipedit-edit-tools' => 'Instrumentos de modification', |
| 475 | + 'mwe-clipedit-inline-description' => 'Legenda', |
| 476 | + 'mwe-clipedit-edit-video-tools' => 'Instrumentos de modification de video:', |
| 477 | + 'mwe-clipedit-duration' => 'Durata:', |
455 | 478 | ); |
| 479 | + |
456 | 480 | $messages['id'] = array( |
457 | | - 'mwe-crop' => 'Potong gambar', |
458 | | - 'mwe-apply_crop' => 'Terapkan pemotongan gambar', |
459 | | - 'mwe-reset_crop' => 'Kembalikan pemotongan', |
460 | | - 'mwe-insert_image_page' => 'Sisipkan pada halaman', |
461 | | - 'mwe-insert_into_sequence' => 'Sisipkan pada urutan', |
462 | | - 'mwe-preview_insert' => 'Sisipkan pratayang', |
463 | | - 'mwe-cancel_image_insert' => 'Batalkan penyisipan', |
464 | | - 'mwe-sc_inoutpoints' => 'Atur titik masuk-keluar', |
465 | | - 'mwe-sc_overlays' => 'Hamparan', |
466 | | - 'mwe-sc_audio' => 'Kontrol audio', |
467 | | - 'mwe-sc_duration' => 'Durasi', |
468 | | - 'mwe-template_properties' => 'Properti Templat', |
469 | | - 'mwe-custom_title' => 'Judul buatan', |
470 | | - 'mwe-edit_properties' => 'Sunting properti', |
471 | | - 'mwe-other_properties' => 'Properti lain', |
472 | | - 'mwe-resource_page' => 'Sumber halaman:', |
473 | | - 'mwe-set_in_out_points' => 'Atur titik masuk-keluar', |
474 | | - 'mwe-start_time' => 'Waktu mulai', |
475 | | - 'mwe-end_time' => 'Waktu selesai', |
476 | | - 'mwe-preview_inout' => 'Pratayang titik masuk-keluar', |
477 | | - 'mwe-edit-tools' => 'Alat penyuntingan', |
478 | | - 'mwe-inline-description' => 'Judul', |
479 | | - 'mwe-edit-video-tools' => 'Alat Penyuntingan Video:', |
480 | | - 'mwe-duration' => 'Durasi:', |
| 481 | + 'mwe-clipedit-crop' => 'Potong gambar', |
| 482 | + 'mwe-clipedit-apply_crop' => 'Terapkan pemotongan gambar', |
| 483 | + 'mwe-clipedit-reset_crop' => 'Kembalikan pemotongan', |
| 484 | + 'mwe-clipedit-insert_image_page' => 'Sisipkan pada halaman', |
| 485 | + 'mwe-clipedit-insert_into_sequence' => 'Sisipkan pada urutan', |
| 486 | + 'mwe-clipedit-preview_insert' => 'Sisipkan pratayang', |
| 487 | + 'mwe-clipedit-cancel_image_insert' => 'Batalkan penyisipan', |
| 488 | + 'mwe-clipedit-sc_inoutpoints' => 'Atur titik masuk-keluar', |
| 489 | + 'mwe-clipedit-sc_overlays' => 'Hamparan', |
| 490 | + 'mwe-clipedit-sc_audio' => 'Kontrol audio', |
| 491 | + 'mwe-clipedit-sc_duration' => 'Durasi', |
| 492 | + 'mwe-clipedit-template_properties' => 'Properti Templat', |
| 493 | + 'mwe-clipedit-custom_title' => 'Judul buatan', |
| 494 | + 'mwe-clipedit-edit_properties' => 'Sunting properti', |
| 495 | + 'mwe-clipedit-other_properties' => 'Properti lain', |
| 496 | + 'mwe-clipedit-resource_page' => 'Sumber halaman:', |
| 497 | + 'mwe-clipedit-set_in_out_points' => 'Atur titik masuk-keluar', |
| 498 | + 'mwe-clipedit-start_time' => 'Waktu mulai', |
| 499 | + 'mwe-clipedit-end_time' => 'Waktu selesai', |
| 500 | + 'mwe-clipedit-preview_inout' => 'Pratayang titik masuk-keluar', |
| 501 | + 'mwe-clipedit-edit-tools' => 'Alat penyuntingan', |
| 502 | + 'mwe-clipedit-inline-description' => 'Judul', |
| 503 | + 'mwe-clipedit-edit-video-tools' => 'Alat Penyuntingan Video:', |
| 504 | + 'mwe-clipedit-duration' => 'Durasi:', |
481 | 505 | ); |
| 506 | + |
482 | 507 | $messages['ja'] = array( |
483 | | - 'mwe-crop' => '画像をトリミング', |
484 | | - 'mwe-apply_crop' => '画像にトリミングを適用', |
485 | | - 'mwe-reset_crop' => 'トリミングを取り消す', |
486 | | - 'mwe-insert_image_page' => 'ページ中に挿入', |
487 | | - 'mwe-insert_into_sequence' => 'シーケンス中に挿入', |
488 | | - 'mwe-preview_insert' => '挿入をプレビュー', |
489 | | - 'mwe-cancel_image_insert' => '挿入を中止', |
490 | | - 'mwe-sc_inoutpoints' => 'イン・アウトポイントを設定', |
491 | | - 'mwe-sc_overlays' => 'オーバーレイ', |
492 | | - 'mwe-sc_audio' => 'オーディオ・コントロール', |
493 | | - 'mwe-sc_duration' => '時間', |
494 | | - 'mwe-template_properties' => 'テンプレートの属性', |
495 | | - 'mwe-custom_title' => '独自のタイトル', |
496 | | - 'mwe-edit_properties' => 'プロパティを編集', |
497 | | - 'mwe-other_properties' => 'その他のプロパティ', |
498 | | - 'mwe-resource_page' => 'リソースページ:', |
499 | | - 'mwe-set_in_out_points' => 'イン・アウトポイントを設定', |
500 | | - 'mwe-start_time' => '開始時間', |
501 | | - 'mwe-end_time' => '終了時間', |
502 | | - 'mwe-preview_inout' => 'イン・アウトポイントをプレビュー', |
503 | | - 'mwe-edit-tools' => '編集ツール', |
504 | | - 'mwe-inline-description' => 'キャプション', |
505 | | - 'mwe-edit-video-tools' => '動画編集ツール:', |
506 | | - 'mwe-duration' => '時間:', |
| 508 | + 'mwe-clipedit-crop' => '画像をトリミング', |
| 509 | + 'mwe-clipedit-apply_crop' => '画像にトリミングを適用', |
| 510 | + 'mwe-clipedit-reset_crop' => 'トリミングを取り消す', |
| 511 | + 'mwe-clipedit-insert_image_page' => 'ページ中に挿入', |
| 512 | + 'mwe-clipedit-insert_into_sequence' => 'シーケンス中に挿入', |
| 513 | + 'mwe-clipedit-preview_insert' => '挿入をプレビュー', |
| 514 | + 'mwe-clipedit-cancel_image_insert' => '挿入を中止', |
| 515 | + 'mwe-clipedit-sc_inoutpoints' => 'イン・アウトポイントを設定', |
| 516 | + 'mwe-clipedit-sc_overlays' => 'オーバーレイ', |
| 517 | + 'mwe-clipedit-sc_audio' => 'オーディオ・コントロール', |
| 518 | + 'mwe-clipedit-sc_duration' => '時間', |
| 519 | + 'mwe-clipedit-template_properties' => 'テンプレートの属性', |
| 520 | + 'mwe-clipedit-custom_title' => '独自のタイトル', |
| 521 | + 'mwe-clipedit-edit_properties' => 'プロパティを編集', |
| 522 | + 'mwe-clipedit-other_properties' => 'その他のプロパティ', |
| 523 | + 'mwe-clipedit-resource_page' => 'リソースページ:', |
| 524 | + 'mwe-clipedit-set_in_out_points' => 'イン・アウトポイントを設定', |
| 525 | + 'mwe-clipedit-start_time' => '開始時間', |
| 526 | + 'mwe-clipedit-end_time' => '終了時間', |
| 527 | + 'mwe-clipedit-preview_inout' => 'イン・アウトポイントをプレビュー', |
| 528 | + 'mwe-clipedit-edit-tools' => '編集ツール', |
| 529 | + 'mwe-clipedit-inline-description' => 'キャプション', |
| 530 | + 'mwe-clipedit-edit-video-tools' => '動画編集ツール:', |
| 531 | + 'mwe-clipedit-duration' => '時間:', |
507 | 532 | ); |
| 533 | + |
508 | 534 | $messages['ka'] = array( |
509 | | - 'mwe-sc_audio' => 'აუდიო კონტროლი', |
510 | | - 'mwe-sc_duration' => 'ხანგძლივობა', |
| 535 | + 'mwe-clipedit-sc_audio' => 'აუდიო კონტროლი', |
| 536 | + 'mwe-clipedit-sc_duration' => 'ხანგძლივობა', |
511 | 537 | ); |
| 538 | + |
512 | 539 | $messages['ko'] = array( |
513 | | - 'mwe-crop' => '그림을 잘라내기', |
514 | | - 'mwe-start_time' => '시작 시간', |
515 | | - 'mwe-end_time' => '종료 시간', |
516 | | - 'mwe-duration' => '시간:', |
| 540 | + 'mwe-clipedit-crop' => '그림을 잘라내기', |
| 541 | + 'mwe-clipedit-start_time' => '시작 시간', |
| 542 | + 'mwe-clipedit-end_time' => '종료 시간', |
| 543 | + 'mwe-clipedit-duration' => '시간:', |
517 | 544 | ); |
| 545 | + |
518 | 546 | $messages['ksh'] = array( |
519 | | - 'mwe-crop' => 'Beld beschnigge', |
520 | | - 'mwe-apply_crop' => 'Lohß Jonn!', |
521 | | - 'mwe-reset_crop' => 'Et Zerääschnigge ophävve', |
522 | | - 'mwe-insert_image_page' => 'En en Sigg ennfööje', |
523 | | - 'mwe-insert_into_sequence' => 'En de Afshpellleß ennfööje', |
524 | | - 'mwe-preview_insert' => 'Vör_Aansich för et Ennfööje', |
525 | | - 'mwe-cancel_image_insert' => 'Et Enfööje avbreche!', |
526 | | - 'mwe-sc_inoutpoints' => 'Der En- un Ußschteeschßpunk för et Afschpelle faßlääje', |
527 | | - 'mwe-sc_overlays' => 'Övverbländunge', |
528 | | - 'mwe-sc_audio' => 'Enshtällunge för der Tohn', |
529 | | - 'mwe-sc_duration' => 'Duuer', |
530 | | - 'mwe-template_properties' => 'Eijeschaffte vun en Schabloon', |
531 | | - 'mwe-custom_title' => 'Ene aanjepaßte Tittel', |
532 | | - 'mwe-edit_properties' => 'Eijeschaffte ändere', |
533 | | - 'mwe-other_properties' => 'Ander Eijeschaffte', |
534 | | - 'mwe-resource_page' => 'De Sigg dovun:', |
535 | | - 'mwe-set_in_out_points' => 'En- un Ußschteeschßpunk faßlääje', |
536 | | - 'mwe-start_time' => 'Aanfangszick', |
537 | | - 'mwe-end_time' => 'Schloßzick', |
538 | | - 'mwe-preview_inout' => 'Vör-Aanseesch vum En- un Ußschteeschßpunk', |
539 | | - 'mwe-edit-tools' => 'Wärkzüsch för Belder de ändere', |
540 | | - 'mwe-inline-description' => 'Legände', |
541 | | - 'mwe-edit-video-tools' => 'Wärkzüsch för Viddejos ze beärbeide:', |
542 | | - 'mwe-duration' => 'Duur:', |
| 547 | + 'mwe-clipedit-crop' => 'Beld beschnigge', |
| 548 | + 'mwe-clipedit-apply_crop' => 'Lohß Jonn!', |
| 549 | + 'mwe-clipedit-reset_crop' => 'Et Zerääschnigge ophävve', |
| 550 | + 'mwe-clipedit-insert_image_page' => 'En en Sigg ennfööje', |
| 551 | + 'mwe-clipedit-insert_into_sequence' => 'En de Afshpellleß ennfööje', |
| 552 | + 'mwe-clipedit-preview_insert' => 'Vör_Aansich för et Ennfööje', |
| 553 | + 'mwe-clipedit-cancel_image_insert' => 'Et Enfööje avbreche!', |
| 554 | + 'mwe-clipedit-sc_inoutpoints' => 'Der En- un Ußschteeschßpunk för et Afschpelle faßlääje', |
| 555 | + 'mwe-clipedit-sc_overlays' => 'Övverbländunge', |
| 556 | + 'mwe-clipedit-sc_audio' => 'Enshtällunge för der Tohn', |
| 557 | + 'mwe-clipedit-sc_duration' => 'Duuer', |
| 558 | + 'mwe-clipedit-template_properties' => 'Eijeschaffte vun en Schabloon', |
| 559 | + 'mwe-clipedit-custom_title' => 'Ene aanjepaßte Tittel', |
| 560 | + 'mwe-clipedit-edit_properties' => 'Eijeschaffte ändere', |
| 561 | + 'mwe-clipedit-other_properties' => 'Ander Eijeschaffte', |
| 562 | + 'mwe-clipedit-resource_page' => 'De Sigg dovun:', |
| 563 | + 'mwe-clipedit-set_in_out_points' => 'En- un Ußschteeschßpunk faßlääje', |
| 564 | + 'mwe-clipedit-start_time' => 'Aanfangszick', |
| 565 | + 'mwe-clipedit-end_time' => 'Schloßzick', |
| 566 | + 'mwe-clipedit-preview_inout' => 'Vör-Aanseesch vum En- un Ußschteeschßpunk', |
| 567 | + 'mwe-clipedit-edit-tools' => 'Wärkzüsch för Belder de ändere', |
| 568 | + 'mwe-clipedit-inline-description' => 'Legände', |
| 569 | + 'mwe-clipedit-edit-video-tools' => 'Wärkzüsch för Viddejos ze beärbeide:', |
| 570 | + 'mwe-clipedit-duration' => 'Duur:', |
543 | 571 | ); |
| 572 | + |
544 | 573 | $messages['lb'] = array( |
545 | | - 'mwe-crop' => 'Bild ofschneiden', |
546 | | - 'mwe-apply_crop' => 'Ofschneiden op d\'Bild uwenden', |
547 | | - 'mwe-reset_crop' => 'Ofschneiden zrécksetzen', |
548 | | - 'mwe-insert_image_page' => 'An d\'Säit drasetzen', |
549 | | - 'mwe-insert_into_sequence' => 'An d\'Sequenz drasetzen', |
550 | | - 'mwe-preview_insert' => 'Drasetze kucken ouni ze späicheren', |
551 | | - 'mwe-cancel_image_insert' => 'Drasetzen ofbriechen', |
552 | | - 'mwe-sc_audio' => 'Audiosteierung', |
553 | | - 'mwe-sc_duration' => 'Dauer', |
554 | | - 'mwe-template_properties' => 'Eegeschafte vun der Schabloun', |
555 | | - 'mwe-custom_title' => 'Personaliséierten Titel', |
556 | | - 'mwe-edit_properties' => 'Eegeschaften änneren', |
557 | | - 'mwe-other_properties' => 'Aner Eegeschaften', |
558 | | - 'mwe-start_time' => 'Ufankszäit', |
559 | | - 'mwe-end_time' => 'Schlusszäit', |
560 | | - 'mwe-edit-tools' => 'Handwierksgeschir fir z\'änneren', |
561 | | - 'mwe-inline-description' => 'Beschreiwung', |
562 | | - 'mwe-duration' => 'Dauer:', |
| 574 | + 'mwe-clipedit-crop' => 'Bild ofschneiden', |
| 575 | + 'mwe-clipedit-apply_crop' => 'Ofschneiden op d\'Bild uwenden', |
| 576 | + 'mwe-clipedit-reset_crop' => 'Ofschneiden zrécksetzen', |
| 577 | + 'mwe-clipedit-insert_image_page' => 'An d\'Säit drasetzen', |
| 578 | + 'mwe-clipedit-insert_into_sequence' => 'An d\'Sequenz drasetzen', |
| 579 | + 'mwe-clipedit-preview_insert' => 'Drasetze kucken ouni ze späicheren', |
| 580 | + 'mwe-clipedit-cancel_image_insert' => 'Drasetzen ofbriechen', |
| 581 | + 'mwe-clipedit-sc_audio' => 'Audiosteierung', |
| 582 | + 'mwe-clipedit-sc_duration' => 'Dauer', |
| 583 | + 'mwe-clipedit-template_properties' => 'Eegeschafte vun der Schabloun', |
| 584 | + 'mwe-clipedit-custom_title' => 'Personaliséierten Titel', |
| 585 | + 'mwe-clipedit-edit_properties' => 'Eegeschaften änneren', |
| 586 | + 'mwe-clipedit-other_properties' => 'Aner Eegeschaften', |
| 587 | + 'mwe-clipedit-start_time' => 'Ufankszäit', |
| 588 | + 'mwe-clipedit-end_time' => 'Schlusszäit', |
| 589 | + 'mwe-clipedit-edit-tools' => 'Handwierksgeschir fir z\'änneren', |
| 590 | + 'mwe-clipedit-inline-description' => 'Beschreiwung', |
| 591 | + 'mwe-clipedit-duration' => 'Dauer:', |
563 | 592 | ); |
| 593 | + |
564 | 594 | $messages['ml'] = array( |
565 | | - 'mwe-crop' => 'ചിത്രം മുറിയ്ക്കുക', |
566 | | - 'mwe-apply_crop' => 'മുറിയ്ക്കൽ ചിത്രത്തിൽ പ്രാവർത്തികമാക്കുക', |
567 | | - 'mwe-reset_crop' => 'മുറിയ്ക്കൽ പുനഃക്രമീകരിക്കുക', |
568 | | - 'mwe-insert_image_page' => 'താളിൽ ഉൾപ്പെടുത്തുക', |
569 | | - 'mwe-insert_into_sequence' => 'അനുവർത്തനത്തിലേയ്ക്ക് ഉൾപ്പെടുത്തുക', |
570 | | - 'mwe-preview_insert' => 'ഉൾപ്പെടുത്തലിന്റെ പ്രിവ്യൂ', |
571 | | - 'mwe-cancel_image_insert' => 'ഉൾപ്പെടുത്തൽ റദ്ദാക്കുക', |
572 | | - 'mwe-sc_audio' => 'ശബ്ദ നിയന്ത്രണം', |
573 | | - 'mwe-sc_duration' => 'കാലയളവ്', |
574 | | - 'mwe-template_properties' => 'ഫലക വിശേഷതകൾ', |
575 | | - 'mwe-custom_title' => 'മാറ്റിയെഴുതാവുന്ന തലക്കെട്ട്', |
576 | | - 'mwe-edit_properties' => 'വിശേഷതകൾ തിരുത്തുക', |
577 | | - 'mwe-other_properties' => 'മറ്റ് വിശേഷതകൾ', |
578 | | - 'mwe-resource_page' => 'സ്രോതസ്സ് താൾ:', |
579 | | - 'mwe-start_time' => 'തുടങ്ങുന്ന സമയം', |
580 | | - 'mwe-end_time' => 'അവസാനിക്കുന്ന സമയം', |
581 | | - 'mwe-edit-tools' => 'തിരുത്തൽ ഉപകരണങ്ങൾ', |
582 | | - 'mwe-inline-description' => 'അടിക്കുറിപ്പ്', |
583 | | - 'mwe-edit-video-tools' => 'ചലച്ചിത്രത്തിൽ മാറ്റം വരുത്താനുള്ള ഉപകരണങ്ങൾ:', |
584 | | - 'mwe-duration' => 'ദൈർഘ്യം:', |
| 595 | + 'mwe-clipedit-crop' => 'ചിത്രം മുറിയ്ക്കുക', |
| 596 | + 'mwe-clipedit-apply_crop' => 'മുറിയ്ക്കൽ ചിത്രത്തിൽ പ്രാവർത്തികമാക്കുക', |
| 597 | + 'mwe-clipedit-reset_crop' => 'മുറിയ്ക്കൽ പുനഃക്രമീകരിക്കുക', |
| 598 | + 'mwe-clipedit-insert_image_page' => 'താളിൽ ഉൾപ്പെടുത്തുക', |
| 599 | + 'mwe-clipedit-insert_into_sequence' => 'അനുവർത്തനത്തിലേയ്ക്ക് ഉൾപ്പെടുത്തുക', |
| 600 | + 'mwe-clipedit-preview_insert' => 'ഉൾപ്പെടുത്തലിന്റെ പ്രിവ്യൂ', |
| 601 | + 'mwe-clipedit-cancel_image_insert' => 'ഉൾപ്പെടുത്തൽ റദ്ദാക്കുക', |
| 602 | + 'mwe-clipedit-sc_audio' => 'ശബ്ദ നിയന്ത്രണം', |
| 603 | + 'mwe-clipedit-sc_duration' => 'കാലയളവ്', |
| 604 | + 'mwe-clipedit-template_properties' => 'ഫലക വിശേഷതകൾ', |
| 605 | + 'mwe-clipedit-custom_title' => 'മാറ്റിയെഴുതാവുന്ന തലക്കെട്ട്', |
| 606 | + 'mwe-clipedit-edit_properties' => 'വിശേഷതകൾ തിരുത്തുക', |
| 607 | + 'mwe-clipedit-other_properties' => 'മറ്റ് വിശേഷതകൾ', |
| 608 | + 'mwe-clipedit-resource_page' => 'സ്രോതസ്സ് താൾ:', |
| 609 | + 'mwe-clipedit-start_time' => 'തുടങ്ങുന്ന സമയം', |
| 610 | + 'mwe-clipedit-end_time' => 'അവസാനിക്കുന്ന സമയം', |
| 611 | + 'mwe-clipedit-edit-tools' => 'തിരുത്തൽ ഉപകരണങ്ങൾ', |
| 612 | + 'mwe-clipedit-inline-description' => 'അടിക്കുറിപ്പ്', |
| 613 | + 'mwe-clipedit-edit-video-tools' => 'ചലച്ചിത്രത്തിൽ മാറ്റം വരുത്താനുള്ള ഉപകരണങ്ങൾ:', |
| 614 | + 'mwe-clipedit-duration' => 'ദൈർഘ്യം:', |
585 | 615 | ); |
| 616 | + |
586 | 617 | $messages['nl'] = array( |
587 | | - 'mwe-crop' => 'Afbeelding uitsnijden', |
588 | | - 'mwe-apply_crop' => 'Uitsnede op afbeelding toepassen', |
589 | | - 'mwe-reset_crop' => 'Uitsnede verwijderen', |
590 | | - 'mwe-insert_image_page' => 'Aan pagina toevoegen', |
591 | | - 'mwe-insert_into_sequence' => 'Aan reeks toevoegen', |
592 | | - 'mwe-preview_insert' => 'Voorvertoning', |
593 | | - 'mwe-cancel_image_insert' => 'Toevoegen annuleren', |
594 | | - 'mwe-sc_inoutpoints' => 'In-uit-punten instellen', |
595 | | - 'mwe-sc_overlays' => 'Overlays', |
596 | | - 'mwe-sc_audio' => 'Audioinstellingen', |
597 | | - 'mwe-sc_duration' => 'Duur', |
598 | | - 'mwe-template_properties' => 'Eigenschappen van sjabloon', |
599 | | - 'mwe-custom_title' => 'Aangepaste beschijving', |
600 | | - 'mwe-edit_properties' => 'Eigenschappen bewerken', |
601 | | - 'mwe-other_properties' => 'Overige eigenschappen', |
602 | | - 'mwe-resource_page' => 'Bronpagina:', |
603 | | - 'mwe-set_in_out_points' => 'In- en uitpunten instellen', |
604 | | - 'mwe-start_time' => 'Starttijd', |
605 | | - 'mwe-end_time' => 'Eindtijd', |
606 | | - 'mwe-preview_inout' => 'In- en uitpunten weergeven', |
607 | | - 'mwe-edit-tools' => 'Bewerkingshulpmiddelen', |
608 | | - 'mwe-inline-description' => 'Beschrijving', |
609 | | - 'mwe-edit-video-tools' => 'Videobewerkingshulpmiddelen:', |
610 | | - 'mwe-duration' => 'Duur:', |
| 618 | + 'mwe-clipedit-crop' => 'Afbeelding uitsnijden', |
| 619 | + 'mwe-clipedit-apply_crop' => 'Uitsnede op afbeelding toepassen', |
| 620 | + 'mwe-clipedit-reset_crop' => 'Uitsnede verwijderen', |
| 621 | + 'mwe-clipedit-insert_image_page' => 'Aan pagina toevoegen', |
| 622 | + 'mwe-clipedit-insert_into_sequence' => 'Aan reeks toevoegen', |
| 623 | + 'mwe-clipedit-preview_insert' => 'Voorvertoning', |
| 624 | + 'mwe-clipedit-cancel_image_insert' => 'Toevoegen annuleren', |
| 625 | + 'mwe-clipedit-sc_inoutpoints' => 'In-uit-punten instellen', |
| 626 | + 'mwe-clipedit-sc_overlays' => 'Overlays', |
| 627 | + 'mwe-clipedit-sc_audio' => 'Audioinstellingen', |
| 628 | + 'mwe-clipedit-sc_duration' => 'Duur', |
| 629 | + 'mwe-clipedit-template_properties' => 'Eigenschappen van sjabloon', |
| 630 | + 'mwe-clipedit-custom_title' => 'Aangepaste beschijving', |
| 631 | + 'mwe-clipedit-edit_properties' => 'Eigenschappen bewerken', |
| 632 | + 'mwe-clipedit-other_properties' => 'Overige eigenschappen', |
| 633 | + 'mwe-clipedit-resource_page' => 'Bronpagina:', |
| 634 | + 'mwe-clipedit-set_in_out_points' => 'In- en uitpunten instellen', |
| 635 | + 'mwe-clipedit-start_time' => 'Starttijd', |
| 636 | + 'mwe-clipedit-end_time' => 'Eindtijd', |
| 637 | + 'mwe-clipedit-preview_inout' => 'In- en uitpunten weergeven', |
| 638 | + 'mwe-clipedit-edit-tools' => 'Bewerkingshulpmiddelen', |
| 639 | + 'mwe-clipedit-inline-description' => 'Beschrijving', |
| 640 | + 'mwe-clipedit-edit-video-tools' => 'Videobewerkingshulpmiddelen:', |
| 641 | + 'mwe-clipedit-duration' => 'Duur:', |
611 | 642 | ); |
| 643 | + |
612 | 644 | $messages['oc'] = array( |
613 | | - 'mwe-crop' => 'Retalhar l\'imatge', |
614 | | - 'mwe-apply_crop' => 'Aplicar lo retalh a l\'imatge', |
615 | | - 'mwe-reset_crop' => 'Reïnicializar lo retalh', |
616 | | - 'mwe-insert_image_page' => 'Inserir dins la pagina', |
617 | | - 'mwe-insert_into_sequence' => 'Inserir dins la sequéncia', |
618 | | - 'mwe-preview_insert' => 'Previsualizar l\'insercion', |
619 | | - 'mwe-cancel_image_insert' => 'Anullar l\'insercion', |
620 | | - 'mwe-sc_inoutpoints' => 'Definir de punts d\'entrada-sortida', |
621 | | - 'mwe-sc_overlays' => 'Revestiments', |
622 | | - 'mwe-sc_audio' => 'Contraròtle àudio', |
623 | | - 'mwe-sc_duration' => 'Durada', |
624 | | - 'mwe-template_properties' => 'Proprietats del modèl', |
625 | | - 'mwe-custom_title' => 'Títol personalizat', |
626 | | - 'mwe-edit_properties' => 'Modificar las proprietats', |
627 | | - 'mwe-other_properties' => 'Autras proprietats', |
628 | | - 'mwe-resource_page' => 'Pagina de la ressorsa :', |
629 | | - 'mwe-set_in_out_points' => 'Definir de punts d\'entrada-sortida', |
630 | | - 'mwe-start_time' => 'Ora de començament', |
631 | | - 'mwe-end_time' => 'Ora de fin', |
632 | | - 'mwe-preview_inout' => 'Previsualizar los punts d\'entrada-sortida', |
633 | | - 'mwe-edit-tools' => 'Espleches de modificacion', |
634 | | - 'mwe-inline-description' => 'Descripcion \'\'inline\'\'', |
635 | | - 'mwe-edit-video-tools' => 'Espleches de modificacion de las vidèos :', |
636 | | - 'mwe-duration' => 'Durada :', |
| 645 | + 'mwe-clipedit-crop' => 'Retalhar l\'imatge', |
| 646 | + 'mwe-clipedit-apply_crop' => 'Aplicar lo retalh a l\'imatge', |
| 647 | + 'mwe-clipedit-reset_crop' => 'Reïnicializar lo retalh', |
| 648 | + 'mwe-clipedit-insert_image_page' => 'Inserir dins la pagina', |
| 649 | + 'mwe-clipedit-insert_into_sequence' => 'Inserir dins la sequéncia', |
| 650 | + 'mwe-clipedit-preview_insert' => 'Previsualizar l\'insercion', |
| 651 | + 'mwe-clipedit-cancel_image_insert' => 'Anullar l\'insercion', |
| 652 | + 'mwe-clipedit-sc_inoutpoints' => 'Definir de punts d\'entrada-sortida', |
| 653 | + 'mwe-clipedit-sc_overlays' => 'Revestiments', |
| 654 | + 'mwe-clipedit-sc_audio' => 'Contraròtle àudio', |
| 655 | + 'mwe-clipedit-sc_duration' => 'Durada', |
| 656 | + 'mwe-clipedit-template_properties' => 'Proprietats del modèl', |
| 657 | + 'mwe-clipedit-custom_title' => 'Títol personalizat', |
| 658 | + 'mwe-clipedit-edit_properties' => 'Modificar las proprietats', |
| 659 | + 'mwe-clipedit-other_properties' => 'Autras proprietats', |
| 660 | + 'mwe-clipedit-resource_page' => 'Pagina de la ressorsa :', |
| 661 | + 'mwe-clipedit-set_in_out_points' => 'Definir de punts d\'entrada-sortida', |
| 662 | + 'mwe-clipedit-start_time' => 'Ora de començament', |
| 663 | + 'mwe-clipedit-end_time' => 'Ora de fin', |
| 664 | + 'mwe-clipedit-preview_inout' => 'Previsualizar los punts d\'entrada-sortida', |
| 665 | + 'mwe-clipedit-edit-tools' => 'Espleches de modificacion', |
| 666 | + 'mwe-clipedit-inline-description' => 'Descripcion \'\'inline\'\'', |
| 667 | + 'mwe-clipedit-edit-video-tools' => 'Espleches de modificacion de las vidèos :', |
| 668 | + 'mwe-clipedit-duration' => 'Durada :', |
637 | 669 | ); |
| 670 | + |
638 | 671 | $messages['pl'] = array( |
639 | | - 'mwe-crop' => 'Kadruj', |
640 | | - 'mwe-apply_crop' => 'Skadruj obrazek', |
641 | | - 'mwe-reset_crop' => 'Ponów kadrowanie', |
642 | | - 'mwe-insert_image_page' => 'Wstaw na stronę', |
643 | | - 'mwe-insert_into_sequence' => 'Wstaw do sekwencji', |
644 | | - 'mwe-preview_insert' => 'Podgląd wstawienia', |
645 | | - 'mwe-cancel_image_insert' => 'Anuluj wstawienie', |
646 | | - 'mwe-sc_inoutpoints' => 'Ustaw czasy początku i końca', |
647 | | - 'mwe-sc_overlays' => 'Nakładki', |
648 | | - 'mwe-sc_audio' => 'Kontrola dźwięku', |
649 | | - 'mwe-sc_duration' => 'Czas trwania', |
650 | | - 'mwe-template_properties' => 'Właściwości szablonu', |
651 | | - 'mwe-custom_title' => 'Niestandardowy tytuł', |
652 | | - 'mwe-edit_properties' => 'Edycja właściwości', |
653 | | - 'mwe-other_properties' => 'Inne właściwości', |
654 | | - 'mwe-resource_page' => 'Strona zasobów', |
655 | | - 'mwe-set_in_out_points' => 'Ustaw czasy rozpoczęcia i zakończenia', |
656 | | - 'mwe-start_time' => 'Czas rozpoczęcia', |
657 | | - 'mwe-end_time' => 'Czas zakończenia', |
658 | | - 'mwe-preview_inout' => 'Podgląd dla obecnie ustawionych czasów', |
659 | | - 'mwe-edit-tools' => 'Narzędzia edycyjne', |
660 | | - 'mwe-inline-description' => 'Nagłówek', |
661 | | - 'mwe-edit-video-tools' => 'Narzędzia edycji wideo:', |
662 | | - 'mwe-duration' => 'Czas trwania', |
| 672 | + 'mwe-clipedit-crop' => 'Kadruj', |
| 673 | + 'mwe-clipedit-apply_crop' => 'Skadruj obrazek', |
| 674 | + 'mwe-clipedit-reset_crop' => 'Ponów kadrowanie', |
| 675 | + 'mwe-clipedit-insert_image_page' => 'Wstaw na stronę', |
| 676 | + 'mwe-clipedit-insert_into_sequence' => 'Wstaw do sekwencji', |
| 677 | + 'mwe-clipedit-preview_insert' => 'Podgląd wstawienia', |
| 678 | + 'mwe-clipedit-cancel_image_insert' => 'Anuluj wstawienie', |
| 679 | + 'mwe-clipedit-sc_inoutpoints' => 'Ustaw czasy początku i końca', |
| 680 | + 'mwe-clipedit-sc_overlays' => 'Nakładki', |
| 681 | + 'mwe-clipedit-sc_audio' => 'Kontrola dźwięku', |
| 682 | + 'mwe-clipedit-sc_duration' => 'Czas trwania', |
| 683 | + 'mwe-clipedit-template_properties' => 'Właściwości szablonu', |
| 684 | + 'mwe-clipedit-custom_title' => 'Niestandardowy tytuł', |
| 685 | + 'mwe-clipedit-edit_properties' => 'Edycja właściwości', |
| 686 | + 'mwe-clipedit-other_properties' => 'Inne właściwości', |
| 687 | + 'mwe-clipedit-resource_page' => 'Strona zasobów', |
| 688 | + 'mwe-clipedit-set_in_out_points' => 'Ustaw czasy rozpoczęcia i zakończenia', |
| 689 | + 'mwe-clipedit-start_time' => 'Czas rozpoczęcia', |
| 690 | + 'mwe-clipedit-end_time' => 'Czas zakończenia', |
| 691 | + 'mwe-clipedit-preview_inout' => 'Podgląd dla obecnie ustawionych czasów', |
| 692 | + 'mwe-clipedit-edit-tools' => 'Narzędzia edycyjne', |
| 693 | + 'mwe-clipedit-inline-description' => 'Nagłówek', |
| 694 | + 'mwe-clipedit-edit-video-tools' => 'Narzędzia edycji wideo:', |
| 695 | + 'mwe-clipedit-duration' => 'Czas trwania', |
663 | 696 | ); |
| 697 | + |
664 | 698 | $messages['pt'] = array( |
665 | | - 'mwe-crop' => 'Cortar imagem', |
666 | | - 'mwe-apply_crop' => 'Aplicar corte à imagem', |
667 | | - 'mwe-reset_crop' => 'Reiniciar corte', |
668 | | - 'mwe-insert_image_page' => 'Inserir na página', |
669 | | - 'mwe-insert_into_sequence' => 'Inserir na sequência', |
670 | | - 'mwe-preview_insert' => 'Antever inserção', |
671 | | - 'mwe-cancel_image_insert' => 'Cancelar a inserção', |
672 | | - 'mwe-sc_inoutpoints' => 'Estabelecer pontos de entrada e saída', |
673 | | - 'mwe-sc_overlays' => 'Sobreposições', |
674 | | - 'mwe-sc_audio' => 'Controlo de áudio', |
675 | | - 'mwe-sc_duration' => 'Duração', |
676 | | - 'mwe-template_properties' => 'Propriedades do modelo', |
677 | | - 'mwe-custom_title' => 'Título personalizado', |
678 | | - 'mwe-edit_properties' => 'Editar propriedades', |
679 | | - 'mwe-other_properties' => 'Outras propriedades', |
680 | | - 'mwe-resource_page' => 'Página de recursos:', |
681 | | - 'mwe-set_in_out_points' => 'Estabelecer pontos de entrada e saída', |
682 | | - 'mwe-start_time' => 'Tempo de início', |
683 | | - 'mwe-end_time' => 'Tempo de fim', |
684 | | - 'mwe-preview_inout' => 'Antever pontos de entrada e saída', |
685 | | - 'mwe-edit-tools' => 'Instrumentos de edição', |
686 | | - 'mwe-inline-description' => 'Descrição', |
687 | | - 'mwe-edit-video-tools' => 'Ferramentas de edição de vídeo:', |
688 | | - 'mwe-duration' => 'Duração:', |
| 699 | + 'mwe-clipedit-crop' => 'Cortar imagem', |
| 700 | + 'mwe-clipedit-apply_crop' => 'Aplicar corte à imagem', |
| 701 | + 'mwe-clipedit-reset_crop' => 'Reiniciar corte', |
| 702 | + 'mwe-clipedit-insert_image_page' => 'Inserir na página', |
| 703 | + 'mwe-clipedit-insert_into_sequence' => 'Inserir na sequência', |
| 704 | + 'mwe-clipedit-preview_insert' => 'Antever inserção', |
| 705 | + 'mwe-clipedit-cancel_image_insert' => 'Cancelar a inserção', |
| 706 | + 'mwe-clipedit-sc_inoutpoints' => 'Estabelecer pontos de entrada e saída', |
| 707 | + 'mwe-clipedit-sc_overlays' => 'Sobreposições', |
| 708 | + 'mwe-clipedit-sc_audio' => 'Controlo de áudio', |
| 709 | + 'mwe-clipedit-sc_duration' => 'Duração', |
| 710 | + 'mwe-clipedit-template_properties' => 'Propriedades do modelo', |
| 711 | + 'mwe-clipedit-custom_title' => 'Título personalizado', |
| 712 | + 'mwe-clipedit-edit_properties' => 'Editar propriedades', |
| 713 | + 'mwe-clipedit-other_properties' => 'Outras propriedades', |
| 714 | + 'mwe-clipedit-resource_page' => 'Página de recursos:', |
| 715 | + 'mwe-clipedit-set_in_out_points' => 'Estabelecer pontos de entrada e saída', |
| 716 | + 'mwe-clipedit-start_time' => 'Tempo de início', |
| 717 | + 'mwe-clipedit-end_time' => 'Tempo de fim', |
| 718 | + 'mwe-clipedit-preview_inout' => 'Antever pontos de entrada e saída', |
| 719 | + 'mwe-clipedit-edit-tools' => 'Instrumentos de edição', |
| 720 | + 'mwe-clipedit-inline-description' => 'Descrição', |
| 721 | + 'mwe-clipedit-edit-video-tools' => 'Ferramentas de edição de vídeo:', |
| 722 | + 'mwe-clipedit-duration' => 'Duração:', |
689 | 723 | ); |
| 724 | + |
690 | 725 | $messages['pt-br'] = array( |
691 | | - 'mwe-preview_insert' => 'Prever inserção', |
692 | | - 'mwe-sc_duration' => 'Duração', |
693 | | - 'mwe-other_properties' => 'Outras propriedades', |
| 726 | + 'mwe-clipedit-preview_insert' => 'Prever inserção', |
| 727 | + 'mwe-clipedit-sc_duration' => 'Duração', |
| 728 | + 'mwe-clipedit-other_properties' => 'Outras propriedades', |
694 | 729 | ); |
| 730 | + |
695 | 731 | $messages['ru'] = array( |
696 | | - 'mwe-crop' => 'Кадрировать изображение', |
697 | | - 'mwe-apply_crop' => 'Применить кадрирование к изображению', |
698 | | - 'mwe-reset_crop' => 'Сбросить кадрирование', |
699 | | - 'mwe-insert_image_page' => 'Вставить на страницу', |
700 | | - 'mwe-insert_into_sequence' => 'Вставить в последовательность', |
701 | | - 'mwe-preview_insert' => 'Предпросмотр вставки', |
702 | | - 'mwe-cancel_image_insert' => 'Отменить вставку', |
703 | | - 'mwe-sc_inoutpoints' => 'Установить очки ввода-вывода', |
704 | | - 'mwe-sc_overlays' => 'Перекрытия', |
705 | | - 'mwe-sc_audio' => 'Аудиоконтроль', |
706 | | - 'mwe-sc_duration' => 'Длительность', |
707 | | - 'mwe-template_properties' => 'Настройки шаблона', |
708 | | - 'mwe-custom_title' => 'Свой заголовок', |
709 | | - 'mwe-edit_properties' => 'Править настройки', |
710 | | - 'mwe-other_properties' => 'Другие настройки', |
711 | | - 'mwe-resource_page' => 'Страница ресурса:', |
712 | | - 'mwe-set_in_out_points' => 'Установить очки ввода-вывода', |
713 | | - 'mwe-start_time' => 'Время начала', |
714 | | - 'mwe-end_time' => 'Время окончания', |
715 | | - 'mwe-preview_inout' => 'Просмотр точек ввода-вывода', |
716 | | - 'mwe-edit-tools' => 'Инструменты редактирования', |
717 | | - 'mwe-inline-description' => 'Заголовок', |
718 | | - 'mwe-edit-video-tools' => 'Инструменты редактирования видео:', |
719 | | - 'mwe-duration' => 'Длительность:', |
| 732 | + 'mwe-clipedit-crop' => 'Кадрировать изображение', |
| 733 | + 'mwe-clipedit-apply_crop' => 'Применить кадрирование к изображению', |
| 734 | + 'mwe-clipedit-reset_crop' => 'Сбросить кадрирование', |
| 735 | + 'mwe-clipedit-insert_image_page' => 'Вставить на страницу', |
| 736 | + 'mwe-clipedit-insert_into_sequence' => 'Вставить в последовательность', |
| 737 | + 'mwe-clipedit-preview_insert' => 'Предпросмотр вставки', |
| 738 | + 'mwe-clipedit-cancel_image_insert' => 'Отменить вставку', |
| 739 | + 'mwe-clipedit-sc_inoutpoints' => 'Установить очки ввода-вывода', |
| 740 | + 'mwe-clipedit-sc_overlays' => 'Перекрытия', |
| 741 | + 'mwe-clipedit-sc_audio' => 'Аудиоконтроль', |
| 742 | + 'mwe-clipedit-sc_duration' => 'Длительность', |
| 743 | + 'mwe-clipedit-template_properties' => 'Настройки шаблона', |
| 744 | + 'mwe-clipedit-custom_title' => 'Свой заголовок', |
| 745 | + 'mwe-clipedit-edit_properties' => 'Править настройки', |
| 746 | + 'mwe-clipedit-other_properties' => 'Другие настройки', |
| 747 | + 'mwe-clipedit-resource_page' => 'Страница ресурса:', |
| 748 | + 'mwe-clipedit-set_in_out_points' => 'Установить очки ввода-вывода', |
| 749 | + 'mwe-clipedit-start_time' => 'Время начала', |
| 750 | + 'mwe-clipedit-end_time' => 'Время окончания', |
| 751 | + 'mwe-clipedit-preview_inout' => 'Просмотр точек ввода-вывода', |
| 752 | + 'mwe-clipedit-edit-tools' => 'Инструменты редактирования', |
| 753 | + 'mwe-clipedit-inline-description' => 'Заголовок', |
| 754 | + 'mwe-clipedit-edit-video-tools' => 'Инструменты редактирования видео:', |
| 755 | + 'mwe-clipedit-duration' => 'Длительность:', |
720 | 756 | ); |
| 757 | + |
721 | 758 | $messages['sah'] = array( |
722 | | - 'mwe-crop' => 'Ойууну быс', |
723 | | - 'mwe-apply_crop' => 'Ойууга төгүрүччу быһыыны тутун', |
724 | | - 'mwe-reset_crop' => 'Быспыты төннөр', |
725 | | - 'mwe-insert_image_page' => 'Сирэйгэ киллэрэн биэр', |
726 | | - 'mwe-preview_insert' => 'Киллэриини угуох иннинэ көрүү', |
727 | | - 'mwe-cancel_image_insert' => 'Киллэриини төннөр', |
728 | | - 'mwe-sc_duration' => 'Уһуна', |
729 | | - 'mwe-custom_title' => 'Атын аат', |
730 | | - 'mwe-edit_properties' => 'Туруоруулары көннөрүү', |
731 | | - 'mwe-other_properties' => 'Атын туруоруулар', |
732 | | - 'mwe-resource_page' => 'Ресурс сирэйэ:', |
733 | | - 'mwe-start_time' => 'Саҕаланар кэмэ', |
734 | | - 'mwe-end_time' => 'Түмүктэнэр кэмэ', |
| 759 | + 'mwe-clipedit-crop' => 'Ойууну быс', |
| 760 | + 'mwe-clipedit-apply_crop' => 'Ойууга төгүрүччу быһыыны тутун', |
| 761 | + 'mwe-clipedit-reset_crop' => 'Быспыты төннөр', |
| 762 | + 'mwe-clipedit-insert_image_page' => 'Сирэйгэ киллэрэн биэр', |
| 763 | + 'mwe-clipedit-preview_insert' => 'Киллэриини угуох иннинэ көрүү', |
| 764 | + 'mwe-clipedit-cancel_image_insert' => 'Киллэриини төннөр', |
| 765 | + 'mwe-clipedit-sc_duration' => 'Уһуна', |
| 766 | + 'mwe-clipedit-custom_title' => 'Атын аат', |
| 767 | + 'mwe-clipedit-edit_properties' => 'Туруоруулары көннөрүү', |
| 768 | + 'mwe-clipedit-other_properties' => 'Атын туруоруулар', |
| 769 | + 'mwe-clipedit-resource_page' => 'Ресурс сирэйэ:', |
| 770 | + 'mwe-clipedit-start_time' => 'Саҕаланар кэмэ', |
| 771 | + 'mwe-clipedit-end_time' => 'Түмүктэнэр кэмэ', |
735 | 772 | ); |
| 773 | + |
736 | 774 | $messages['sk'] = array( |
737 | | - 'mwe-crop' => 'Orezať obrázok', |
738 | | - 'mwe-apply_crop' => 'Použiť orezanie na obrázok', |
739 | | - 'mwe-reset_crop' => 'Vrátiť orezanie', |
740 | | - 'mwe-insert_image_page' => 'Vložiť na stránku', |
741 | | - 'mwe-insert_into_sequence' => 'Vložiť do sekvencie', |
742 | | - 'mwe-preview_insert' => 'Náhľad vloženia', |
743 | | - 'mwe-cancel_image_insert' => 'Zrušiť vloženie', |
744 | | - 'mwe-sc_inoutpoints' => 'Nastaviť body priblíženia/vzdialenia', |
745 | | - 'mwe-sc_overlays' => 'Vrstvy', |
746 | | - 'mwe-sc_audio' => 'Ovládanie zvuku', |
747 | | - 'mwe-sc_duration' => 'Trvanie', |
748 | | - 'mwe-template_properties' => 'Vlastnosti šablóny', |
749 | | - 'mwe-custom_title' => 'Vlastný názov', |
750 | | - 'mwe-edit_properties' => 'Upraviť vlastnosti', |
751 | | - 'mwe-other_properties' => 'Iné vlastnosti', |
752 | | - 'mwe-resource_page' => 'Stránka so zdrojmi:', |
753 | | - 'mwe-set_in_out_points' => 'Nastaviť body priblíženia/vzdialenia', |
754 | | - 'mwe-start_time' => 'Čas začiatku', |
755 | | - 'mwe-end_time' => 'Čas konca', |
756 | | - 'mwe-preview_inout' => 'Náhľad/prehranie bodov priblíženia/vzdialenia', |
| 775 | + 'mwe-clipedit-crop' => 'Orezať obrázok', |
| 776 | + 'mwe-clipedit-apply_crop' => 'Použiť orezanie na obrázok', |
| 777 | + 'mwe-clipedit-reset_crop' => 'Vrátiť orezanie', |
| 778 | + 'mwe-clipedit-insert_image_page' => 'Vložiť na stránku', |
| 779 | + 'mwe-clipedit-insert_into_sequence' => 'Vložiť do sekvencie', |
| 780 | + 'mwe-clipedit-preview_insert' => 'Náhľad vloženia', |
| 781 | + 'mwe-clipedit-cancel_image_insert' => 'Zrušiť vloženie', |
| 782 | + 'mwe-clipedit-sc_inoutpoints' => 'Nastaviť body priblíženia/vzdialenia', |
| 783 | + 'mwe-clipedit-sc_overlays' => 'Vrstvy', |
| 784 | + 'mwe-clipedit-sc_audio' => 'Ovládanie zvuku', |
| 785 | + 'mwe-clipedit-sc_duration' => 'Trvanie', |
| 786 | + 'mwe-clipedit-template_properties' => 'Vlastnosti šablóny', |
| 787 | + 'mwe-clipedit-custom_title' => 'Vlastný názov', |
| 788 | + 'mwe-clipedit-edit_properties' => 'Upraviť vlastnosti', |
| 789 | + 'mwe-clipedit-other_properties' => 'Iné vlastnosti', |
| 790 | + 'mwe-clipedit-resource_page' => 'Stránka so zdrojmi:', |
| 791 | + 'mwe-clipedit-set_in_out_points' => 'Nastaviť body priblíženia/vzdialenia', |
| 792 | + 'mwe-clipedit-start_time' => 'Čas začiatku', |
| 793 | + 'mwe-clipedit-end_time' => 'Čas konca', |
| 794 | + 'mwe-clipedit-preview_inout' => 'Náhľad/prehranie bodov priblíženia/vzdialenia', |
757 | 795 | ); |
| 796 | + |
758 | 797 | $messages['sv'] = array( |
759 | | - 'mwe-crop' => 'Beskär bild', |
760 | | - 'mwe-apply_crop' => 'Verkställ beskärning', |
761 | | - 'mwe-reset_crop' => 'Återställ beskärning', |
762 | | - 'mwe-edit_properties' => 'Redigera egenskaper', |
763 | | - 'mwe-other_properties' => 'Andra egenskaper', |
764 | | - 'mwe-start_time' => 'Starttid', |
765 | | - 'mwe-end_time' => 'Sluttid', |
| 798 | + 'mwe-clipedit-crop' => 'Beskär bild', |
| 799 | + 'mwe-clipedit-apply_crop' => 'Verkställ beskärning', |
| 800 | + 'mwe-clipedit-reset_crop' => 'Återställ beskärning', |
| 801 | + 'mwe-clipedit-edit_properties' => 'Redigera egenskaper', |
| 802 | + 'mwe-clipedit-other_properties' => 'Andra egenskaper', |
| 803 | + 'mwe-clipedit-start_time' => 'Starttid', |
| 804 | + 'mwe-clipedit-end_time' => 'Sluttid', |
766 | 805 | ); |
| 806 | + |
767 | 807 | $messages['te'] = array( |
768 | | - 'mwe-sc_duration' => 'నిడివి', |
769 | | - 'mwe-template_properties' => 'మూస లక్షణాలు', |
770 | | - 'mwe-edit_properties' => 'లక్షణాలని మార్చు', |
771 | | - 'mwe-other_properties' => 'ఇతర లక్షణాలు', |
772 | | - 'mwe-start_time' => 'ప్రారంభ సమయం', |
773 | | - 'mwe-end_time' => 'ముగింపు సమయం', |
774 | | - 'mwe-duration' => 'నిడివి:', |
| 808 | + 'mwe-clipedit-sc_duration' => 'నిడివి', |
| 809 | + 'mwe-clipedit-template_properties' => 'మూస లక్షణాలు', |
| 810 | + 'mwe-clipedit-edit_properties' => 'లక్షణాలని మార్చు', |
| 811 | + 'mwe-clipedit-other_properties' => 'ఇతర లక్షణాలు', |
| 812 | + 'mwe-clipedit-start_time' => 'ప్రారంభ సమయం', |
| 813 | + 'mwe-clipedit-end_time' => 'ముగింపు సమయం', |
| 814 | + 'mwe-clipedit-duration' => 'నిడివి:', |
775 | 815 | ); |
| 816 | + |
776 | 817 | $messages['tr'] = array( |
777 | | - 'mwe-crop' => 'Resmi kırp', |
778 | | - 'mwe-apply_crop' => 'Kırpmayı resme uygula', |
779 | | - 'mwe-reset_crop' => 'Kırpmayı sıfırla', |
780 | | - 'mwe-insert_image_page' => 'Sayfaya ekle', |
781 | | - 'mwe-insert_into_sequence' => 'Sıraya ekle', |
782 | | - 'mwe-preview_insert' => 'Eklemeyi önizle', |
783 | | - 'mwe-cancel_image_insert' => 'Eklemeyi iptal et', |
784 | | - 'mwe-sc_inoutpoints' => 'Başlangıç-bitiş noktalarını ayarla', |
785 | | - 'mwe-sc_overlays' => 'Katmanlar', |
786 | | - 'mwe-sc_audio' => 'Ses denetimi', |
787 | | - 'mwe-sc_duration' => 'Süre', |
788 | | - 'mwe-template_properties' => 'Şablon özellikleri', |
789 | | - 'mwe-custom_title' => 'Özel başlık', |
790 | | - 'mwe-edit_properties' => 'Değişiklik özellikleri', |
791 | | - 'mwe-other_properties' => 'Diğer özellikler', |
792 | | - 'mwe-resource_page' => 'Kaynak sayfası:', |
793 | | - 'mwe-set_in_out_points' => 'Başlangıç-bitiş noktalarını ayarla', |
794 | | - 'mwe-start_time' => 'Başlangıç zamanı', |
795 | | - 'mwe-end_time' => 'Bitiş zamanı', |
796 | | - 'mwe-preview_inout' => 'Başlangıç-bitiş noktalarını önizle', |
797 | | - 'mwe-edit-tools' => 'Değişiklik araçları', |
798 | | - 'mwe-inline-description' => 'Resim yazısı', |
799 | | - 'mwe-edit-video-tools' => 'Video Düzenleme Araçları:', |
800 | | - 'mwe-duration' => 'Süre:', |
| 818 | + 'mwe-clipedit-crop' => 'Resmi kırp', |
| 819 | + 'mwe-clipedit-apply_crop' => 'Kırpmayı resme uygula', |
| 820 | + 'mwe-clipedit-reset_crop' => 'Kırpmayı sıfırla', |
| 821 | + 'mwe-clipedit-insert_image_page' => 'Sayfaya ekle', |
| 822 | + 'mwe-clipedit-insert_into_sequence' => 'Sıraya ekle', |
| 823 | + 'mwe-clipedit-preview_insert' => 'Eklemeyi önizle', |
| 824 | + 'mwe-clipedit-cancel_image_insert' => 'Eklemeyi iptal et', |
| 825 | + 'mwe-clipedit-sc_inoutpoints' => 'Başlangıç-bitiş noktalarını ayarla', |
| 826 | + 'mwe-clipedit-sc_overlays' => 'Katmanlar', |
| 827 | + 'mwe-clipedit-sc_audio' => 'Ses denetimi', |
| 828 | + 'mwe-clipedit-sc_duration' => 'Süre', |
| 829 | + 'mwe-clipedit-template_properties' => 'Şablon özellikleri', |
| 830 | + 'mwe-clipedit-custom_title' => 'Özel başlık', |
| 831 | + 'mwe-clipedit-edit_properties' => 'Değişiklik özellikleri', |
| 832 | + 'mwe-clipedit-other_properties' => 'Diğer özellikler', |
| 833 | + 'mwe-clipedit-resource_page' => 'Kaynak sayfası:', |
| 834 | + 'mwe-clipedit-set_in_out_points' => 'Başlangıç-bitiş noktalarını ayarla', |
| 835 | + 'mwe-clipedit-start_time' => 'Başlangıç zamanı', |
| 836 | + 'mwe-clipedit-end_time' => 'Bitiş zamanı', |
| 837 | + 'mwe-clipedit-preview_inout' => 'Başlangıç-bitiş noktalarını önizle', |
| 838 | + 'mwe-clipedit-edit-tools' => 'Değişiklik araçları', |
| 839 | + 'mwe-clipedit-inline-description' => 'Resim yazısı', |
| 840 | + 'mwe-clipedit-edit-video-tools' => 'Video Düzenleme Araçları:', |
| 841 | + 'mwe-clipedit-duration' => 'Süre:', |
801 | 842 | ); |
| 843 | + |
802 | 844 | $messages['uk'] = array( |
803 | | - 'mwe-template_properties' => 'Властивості шаблону', |
804 | | - 'mwe-start_time' => 'Час початку', |
| 845 | + 'mwe-clipedit-template_properties' => 'Властивості шаблону', |
| 846 | + 'mwe-clipedit-start_time' => 'Час початку', |
805 | 847 | ); |
| 848 | + |
806 | 849 | $messages['vec'] = array( |
807 | | - 'mwe-crop' => 'Taja l\'imagine', |
808 | | - 'mwe-insert_image_page' => 'Inserissi drento la pagina', |
809 | | - 'mwe-insert_into_sequence' => 'Inserissi drento la sequensa', |
810 | | - 'mwe-preview_insert' => 'Anteprima de l\'inserimento', |
811 | | - 'mwe-sc_audio' => 'Controlo de l\'audio', |
812 | | - 'mwe-sc_duration' => 'Durata', |
813 | | - 'mwe-template_properties' => 'Proprietà del modèl', |
814 | | - 'mwe-custom_title' => 'Titolo personalizà', |
815 | | - 'mwe-edit_properties' => 'Canbia proprietà', |
816 | | - 'mwe-other_properties' => 'Altre proprietà', |
817 | | - 'mwe-start_time' => 'Tenpo de inissio', |
818 | | - 'mwe-end_time' => 'Tenpo de fine', |
819 | | - 'mwe-inline-description' => 'Legenda', |
820 | | - 'mwe-duration' => 'Durata:', |
| 850 | + 'mwe-clipedit-crop' => 'Taja l\'imagine', |
| 851 | + 'mwe-clipedit-insert_image_page' => 'Inserissi drento la pagina', |
| 852 | + 'mwe-clipedit-insert_into_sequence' => 'Inserissi drento la sequensa', |
| 853 | + 'mwe-clipedit-preview_insert' => 'Anteprima de l\'inserimento', |
| 854 | + 'mwe-clipedit-sc_audio' => 'Controlo de l\'audio', |
| 855 | + 'mwe-clipedit-sc_duration' => 'Durata', |
| 856 | + 'mwe-clipedit-template_properties' => 'Proprietà del modèl', |
| 857 | + 'mwe-clipedit-custom_title' => 'Titolo personalizà', |
| 858 | + 'mwe-clipedit-edit_properties' => 'Canbia proprietà', |
| 859 | + 'mwe-clipedit-other_properties' => 'Altre proprietà', |
| 860 | + 'mwe-clipedit-start_time' => 'Tenpo de inissio', |
| 861 | + 'mwe-clipedit-end_time' => 'Tenpo de fine', |
| 862 | + 'mwe-clipedit-inline-description' => 'Legenda', |
| 863 | + 'mwe-clipedit-duration' => 'Durata:', |
821 | 864 | ); |
| 865 | + |
822 | 866 | $messages['vep'] = array( |
823 | | - 'mwe-sc_audio' => 'Audiokontrol\'', |
824 | | - 'mwe-template_properties' => 'Šablonan ičendad', |
825 | | - 'mwe-edit_properties' => 'Redaktiruida ičendad', |
826 | | - 'mwe-other_properties' => 'Toižed ičendad', |
827 | | - 'mwe-resource_page' => 'Purtken lehtpol\':', |
828 | | - 'mwe-start_time' => 'Augotišen aig', |
829 | | - 'mwe-end_time' => 'Lopun aig', |
| 867 | + 'mwe-clipedit-sc_audio' => 'Audiokontrol\'', |
| 868 | + 'mwe-clipedit-template_properties' => 'Šablonan ičendad', |
| 869 | + 'mwe-clipedit-edit_properties' => 'Redaktiruida ičendad', |
| 870 | + 'mwe-clipedit-other_properties' => 'Toižed ičendad', |
| 871 | + 'mwe-clipedit-resource_page' => 'Purtken lehtpol\':', |
| 872 | + 'mwe-clipedit-start_time' => 'Augotišen aig', |
| 873 | + 'mwe-clipedit-end_time' => 'Lopun aig', |
830 | 874 | ); |
| 875 | + |
831 | 876 | $messages['vi'] = array( |
832 | | - 'mwe-crop' => 'Cắt ảnh', |
833 | | - 'mwe-apply_crop' => 'Cắt ảnh', |
834 | | - 'mwe-reset_crop' => 'Tái tạo cắt ảnh', |
835 | | - 'mwe-insert_image_page' => 'Chèn vào trang', |
836 | | - 'mwe-insert_into_sequence' => 'Chèn vào dãy', |
837 | | - 'mwe-preview_insert' => 'Chèn thử', |
838 | | - 'mwe-cancel_image_insert' => 'Hủy chèn', |
839 | | - 'mwe-sc_inoutpoints' => 'Thiết lập điểm vào-ra', |
840 | | - 'mwe-sc_overlays' => 'Chèn lắp', |
841 | | - 'mwe-sc_audio' => 'Quản lý âm thanh', |
842 | | - 'mwe-sc_duration' => 'Thời lượng', |
843 | | - 'mwe-template_properties' => 'Thuộc tính mẫu', |
844 | | - 'mwe-custom_title' => 'Tựa đề tùy chỉnh', |
845 | | - 'mwe-edit_properties' => 'Sửa thuộc tính', |
846 | | - 'mwe-other_properties' => 'Thuộc tính khác', |
847 | | - 'mwe-resource_page' => 'Trang tài nguyên:', |
848 | | - 'mwe-set_in_out_points' => 'Thiết lập điểm vào-ra', |
849 | | - 'mwe-start_time' => 'Thời điểm bắt đầu', |
850 | | - 'mwe-end_time' => 'Thời điểm kết thúc', |
851 | | - 'mwe-preview_inout' => 'Nghe thử điểm vào-ra', |
852 | | - 'mwe-edit-tools' => 'Công cụ sửa đổi', |
| 877 | + 'mwe-clipedit-crop' => 'Cắt ảnh', |
| 878 | + 'mwe-clipedit-apply_crop' => 'Cắt ảnh', |
| 879 | + 'mwe-clipedit-reset_crop' => 'Tái tạo cắt ảnh', |
| 880 | + 'mwe-clipedit-insert_image_page' => 'Chèn vào trang', |
| 881 | + 'mwe-clipedit-insert_into_sequence' => 'Chèn vào dãy', |
| 882 | + 'mwe-clipedit-preview_insert' => 'Chèn thử', |
| 883 | + 'mwe-clipedit-cancel_image_insert' => 'Hủy chèn', |
| 884 | + 'mwe-clipedit-sc_inoutpoints' => 'Thiết lập điểm vào-ra', |
| 885 | + 'mwe-clipedit-sc_overlays' => 'Chèn lắp', |
| 886 | + 'mwe-clipedit-sc_audio' => 'Quản lý âm thanh', |
| 887 | + 'mwe-clipedit-sc_duration' => 'Thời lượng', |
| 888 | + 'mwe-clipedit-template_properties' => 'Thuộc tính mẫu', |
| 889 | + 'mwe-clipedit-custom_title' => 'Tựa đề tùy chỉnh', |
| 890 | + 'mwe-clipedit-edit_properties' => 'Sửa thuộc tính', |
| 891 | + 'mwe-clipedit-other_properties' => 'Thuộc tính khác', |
| 892 | + 'mwe-clipedit-resource_page' => 'Trang tài nguyên:', |
| 893 | + 'mwe-clipedit-set_in_out_points' => 'Thiết lập điểm vào-ra', |
| 894 | + 'mwe-clipedit-start_time' => 'Thời điểm bắt đầu', |
| 895 | + 'mwe-clipedit-end_time' => 'Thời điểm kết thúc', |
| 896 | + 'mwe-clipedit-preview_inout' => 'Nghe thử điểm vào-ra', |
| 897 | + 'mwe-clipedit-edit-tools' => 'Công cụ sửa đổi', |
853 | 898 | ); |
| 899 | + |
Index: branches/MwEmbedStandAlone/modules/ClipEdit/mw.ClipEdit.js |
— | — | @@ -4,34 +4,34 @@ |
5 | 5 | |
6 | 6 | // set gMsg object: |
7 | 7 | mw.addMessages( { |
8 | | - "mwe-crop" : "Crop image", |
9 | | - "mwe-apply_crop" : "Apply crop to image", |
10 | | - "mwe-reset_crop" : "Reset crop", |
11 | | - "mwe-insert_image_page" : "Insert into page", |
12 | | - "mwe-insert_into_sequence" : "Insert into sequence", |
13 | | - "mwe-preview_insert" : "Preview insert", |
14 | | - "mwe-cancel_image_insert" : "Cancel insert", |
15 | | - "mwe-sc_attributes" : "Clip detail edit", |
16 | | - "mwe-sc_inoutpoints" : "Set in-out points", |
17 | | - "mwe-sc_overlays" : "Overlays", |
18 | | - "mwe-sc_audio" : "Audio control", |
19 | | - "mwe-sc_duration" : "Duration", |
20 | | - "mwe-template_properties" : "Template properties", |
21 | | - "mwe-custom_title" : "Custom title", |
22 | | - "mwe-edit_properties" : "Edit properties", |
23 | | - "mwe-other_properties" : "Other properties", |
24 | | - "mwe-resource_page" : "Resource page:", |
25 | | - "mwe-set_in_out_points" : "Set in-out points", |
26 | | - "mwe-start_time" : "Start time", |
27 | | - "mwe-end_time" : "End time", |
28 | | - "mwe-preview_inout" : "Preview in-out points", |
29 | | - "mwe-edit-tools" : "Edit tools", |
30 | | - "mwe-inline-description" : "Caption", |
31 | | - "mwe-edit-video-tools" : "Edit video tools:", |
32 | | - "mwe-duration" : "Duration:", |
33 | | - "mwe-layout" : "Layout", |
34 | | - "mwe-layout_right" : "Right side image layout", |
35 | | - "mwe-layout_left" : "Left side image layout" |
| 8 | + "mwe-clipedit-crop" : "Crop image", |
| 9 | + "mwe-clipedit-apply_crop" : "Apply crop to image", |
| 10 | + "mwe-clipedit-reset_crop" : "Reset crop", |
| 11 | + "mwe-clipedit-insert_image_page" : "Insert into page", |
| 12 | + "mwe-clipedit-insert_into_sequence" : "Insert into sequence", |
| 13 | + "mwe-clipedit-preview_insert" : "Preview insert", |
| 14 | + "mwe-clipedit-cancel_image_insert" : "Cancel insert", |
| 15 | + "mwe-clipedit-sc_attributes" : "Clip detail edit", |
| 16 | + "mwe-clipedit-sc_inoutpoints" : "Set in-out points", |
| 17 | + "mwe-clipedit-sc_overlays" : "Overlays", |
| 18 | + "mwe-clipedit-sc_audio" : "Audio control", |
| 19 | + "mwe-clipedit-sc_duration" : "Duration", |
| 20 | + "mwe-clipedit-template_properties" : "Template properties", |
| 21 | + "mwe-clipedit-custom_title" : "Custom title", |
| 22 | + "mwe-clipedit-edit_properties" : "Edit properties", |
| 23 | + "mwe-clipedit-other_properties" : "Other properties", |
| 24 | + "mwe-clipedit-resource_page" : "Resource page:", |
| 25 | + "mwe-clipedit-set_in_out_points" : "Set in-out points", |
| 26 | + "mwe-clipedit-start_time" : "Start time", |
| 27 | + "mwe-clipedit-end_time" : "End time", |
| 28 | + "mwe-clipedit-preview_inout" : "Preview in-out points", |
| 29 | + "mwe-clipedit-edit-tools" : "Edit tools", |
| 30 | + "mwe-clipedit-inline-description" : "Caption", |
| 31 | + "mwe-clipedit-edit-video-tools" : "Edit video tools:", |
| 32 | + "mwe-clipedit-duration" : "Duration:", |
| 33 | + "mwe-clipedit-layout" : "Layout", |
| 34 | + "mwe-clipedit-layout_right" : "Right side image layout", |
| 35 | + "mwe-clipedit-layout_left" : "Left side image layout" |
36 | 36 | } ); |
37 | 37 | |
38 | 38 | /** |
— | — | @@ -188,7 +188,7 @@ |
189 | 189 | |
190 | 190 | $j('<label />') |
191 | 191 | .attr('for','ce_dur') |
192 | | - .text( gM( 'mwe-duration' ) ), |
| 192 | + .text( gM( 'mwe-clipedit-duration' ) ), |
193 | 193 | |
194 | 194 | $j('<input />') |
195 | 195 | .attr({ |
— | — | @@ -320,11 +320,11 @@ |
321 | 321 | // Add html for resource resource: |
322 | 322 | var o = '<table>' + |
323 | 323 | '<tr>' + |
324 | | - '<td colspan="2"><b>' + gM( 'mwe-edit_properties' ) + '</b></td>' + |
| 324 | + '<td colspan="2"><b>' + gM( 'mwe-clipedit-edit_properties' ) + '</b></td>' + |
325 | 325 | '</tr>' + |
326 | 326 | '<tr>' + |
327 | 327 | '<td>' + |
328 | | - gM( 'mwe-custom_title' ) + |
| 328 | + gM( 'mwe-clipedit-custom_title' ) + |
329 | 329 | '</td>' + |
330 | 330 | '<td><input type="text" size="15" maxwidth="255" value="'; |
331 | 331 | |
— | — | @@ -342,7 +342,7 @@ |
343 | 343 | var testing_a = _this.resource.tVars; |
344 | 344 | // debugger; |
345 | 345 | o += '<tr>' + |
346 | | - '<td colspan="2"><b>' + gM( 'mwe-template_properties' ) + '</b></td>' + |
| 346 | + '<td colspan="2"><b>' + gM( 'mwe-clipedit-template_properties' ) + '</b></td>' + |
347 | 347 | '</tr>'; |
348 | 348 | for ( var i = 0; i < _this.resource.tVars.length ; i++ ) { |
349 | 349 | o += '<tr>' + |
— | — | @@ -367,11 +367,11 @@ |
368 | 368 | var res_title = mw.parseUri( _this.resource.src ).file; |
369 | 369 | } |
370 | 370 | o +='<tr>' + |
371 | | - '<td colspan="2"><b>' + gM( 'mwe-other_properties' ) + '</b></td>' + |
| 371 | + '<td colspan="2"><b>' + gM( 'mwe-clipedit-other_properties' ) + '</b></td>' + |
372 | 372 | '</tr>' + |
373 | 373 | '<tr>' + |
374 | 374 | '<td>' + |
375 | | - gM( 'mwe-resource_page' ) + |
| 375 | + gM( 'mwe-clipedit-resource_page' ) + |
376 | 376 | '</td>' + |
377 | 377 | '<td>' + |
378 | 378 | '<a href="' + res_src + '" ' + |
— | — | @@ -441,7 +441,7 @@ |
442 | 442 | } |
443 | 443 | if ( include ) { |
444 | 444 | o +='<li>' + |
445 | | - '<a id="mv_smi_' + sInx + '" href="#sc_' + sInx + '">' + gM( 'mwe-sc_' + sInx ) + '</a>' + |
| 445 | + '<a id="mv_smi_' + sInx + '" href="#sc_' + sInx + '">' + gM( 'mwe-clipedit-sc_' + sInx ) + '</a>' + |
446 | 446 | '</li>'; |
447 | 447 | tabc += '<div id="sc_' + sInx + '" style="overflow:auto;" ></div>'; |
448 | 448 | } |
— | — | @@ -488,7 +488,7 @@ |
489 | 489 | var eb = $j( '#embed_vid' ).get( 0 ); |
490 | 490 | // turn on preview to avoid onDone actions |
491 | 491 | eb.preview_mode = true; |
492 | | - $j( '#' + this.target_control_display ).html( '<h3>' + gM( 'mwe-edit-video-tools' ) + '</h3>' ); |
| 492 | + $j( '#' + this.target_control_display ).html( '<h3>' + gM( 'mwe-clipedit-edit-video-tools' ) + '</h3>' ); |
493 | 493 | if ( eb.supportsURLTimeEncoding() ) { |
494 | 494 | if ( eb.end_ntp ) { |
495 | 495 | $j( '#' + this.target_control_display ).append( |
— | — | @@ -602,30 +602,30 @@ |
603 | 603 | * @param {Object} defaultTime Provides start and end time default values |
604 | 604 | */ |
605 | 605 | getStartEndHtml: function( defaultTime ) { |
606 | | - return '<strong>' + gM( 'mwe-set_in_out_points' ) + '</strong>' + |
| 606 | + return '<strong>' + gM( 'mwe-clipedit-set_in_out_points' ) + '</strong>' + |
607 | 607 | '<table border="0" style="background: transparent; width:94%;height:50px;">' + |
608 | 608 | '<tr>' + |
609 | 609 | '<td style="width:90px">' + |
610 | | - gM( 'mwe-start_time' ) + |
| 610 | + gM( 'mwe-clipedit-start_time' ) + |
611 | 611 | '<input class="ui-widget-content ui-corner-all startInOut" size="9" value="' + defaultTime.start_ntp + '">' + |
612 | 612 | '</td>' + |
613 | 613 | '<td>' + |
614 | 614 | '<div class="inOutSlider"></div>' + |
615 | 615 | '</td>' + |
616 | 616 | '<td style="width:90px;text-align:right;">' + |
617 | | - gM( 'mwe-end_time' ) + |
| 617 | + gM( 'mwe-clipedit-end_time' ) + |
618 | 618 | '<input class="ui-widget-content ui-corner-all endInOut" size="9" value="' + defaultTime.end_ntp + '">' + |
619 | 619 | '</td>' + |
620 | 620 | '</tr>' + |
621 | 621 | '</table>' + |
622 | | - $j.btnHtml( gM( 'mwe-preview_inout' ), 'inOutPreviewClip', 'video' ); |
| 622 | + $j.btnHtml( gM( 'mwe-clipedit-preview_inout' ), 'inOutPreviewClip', 'video' ); |
623 | 623 | }, |
624 | 624 | |
625 | 625 | /** |
626 | 626 | * Get the Insert Html form text area |
627 | 627 | */ |
628 | 628 | getInsertHtml: function() { |
629 | | - var o = '<h3>' + gM( 'mwe-inline-description' ) + '</h3>' + |
| 629 | + var o = '<h3>' + gM( 'mwe-clipedit-inline-description' ) + '</h3>' + |
630 | 630 | '<textarea style="width:95%" id="mv_inline_img_desc" rows="5" cols="30">'; |
631 | 631 | if ( this.parentRemoteSearchDriver ) { |
632 | 632 | // If we have a parent remote search driver let it parse the inline description |
— | — | @@ -649,7 +649,7 @@ |
650 | 650 | for ( var callbackType in _this.controlActionsCallback ) { |
651 | 651 | switch( callbackType ) { |
652 | 652 | case 'insert_seq': |
653 | | - $j( b_target ).append( $j.btnHtml( gM( 'mwe-insert_into_sequence' ), 'mv_insert_sequence', 'check' ) + ' ' ) |
| 653 | + $j( b_target ).append( $j.btnHtml( gM( 'mwe-clipedit-insert_into_sequence' ), 'mv_insert_sequence', 'check' ) + ' ' ) |
654 | 654 | .children( '.mv_insert_sequence' ) |
655 | 655 | .buttonHover() |
656 | 656 | .click( function() { |
— | — | @@ -658,7 +658,7 @@ |
659 | 659 | } ); |
660 | 660 | break; |
661 | 661 | case 'insert': |
662 | | - $j( b_target ).append( $j.btnHtml( gM( 'mwe-insert_image_page' ), 'mv_insert_image_page', 'check' ) + ' ' ) |
| 662 | + $j( b_target ).append( $j.btnHtml( gM( 'mwe-clipedit-insert_image_page' ), 'mv_insert_image_page', 'check' ) + ' ' ) |
663 | 663 | .children( '.mv_insert_image_page' ) |
664 | 664 | .buttonHover() |
665 | 665 | .click( function() { |
— | — | @@ -667,7 +667,7 @@ |
668 | 668 | } ).show( 'slow' ); |
669 | 669 | break; |
670 | 670 | case 'preview': |
671 | | - $j( b_target ).append( $j.btnHtml( gM( 'mwe-preview_insert' ), 'mv_preview_insert', 'refresh' ) + ' ' ) |
| 671 | + $j( b_target ).append( $j.btnHtml( gM( 'mwe-clipedit-preview_insert' ), 'mv_preview_insert', 'refresh' ) + ' ' ) |
672 | 672 | .children( '.mv_preview_insert' ) |
673 | 673 | .buttonHover() |
674 | 674 | .click( function() { |
— | — | @@ -676,7 +676,7 @@ |
677 | 677 | } ).show( 'slow' ); |
678 | 678 | break; |
679 | 679 | case 'cancel': |
680 | | - $j( b_target ).append( $j.btnHtml( gM( 'mwe-cancel_image_insert' ), 'mv_cancel_img_edit', 'close' ) + ' ' ) |
| 680 | + $j( b_target ).append( $j.btnHtml( gM( 'mwe-clipedit-cancel_image_insert' ), 'mv_cancel_img_edit', 'close' ) + ' ' ) |
681 | 681 | .children( '.mv_cancel_img_edit' ) |
682 | 682 | .buttonHover() |
683 | 683 | .click( function() { |
— | — | @@ -720,7 +720,7 @@ |
721 | 721 | .css({ |
722 | 722 | "float" : "left" |
723 | 723 | }) |
724 | | - .text( gM( 'mwe-layout' ) ), |
| 724 | + .text( gM( 'mwe-clipedit-layout' ) ), |
725 | 725 | |
726 | 726 | // Left layout |
727 | 727 | $j('<input />') |
— | — | @@ -735,7 +735,7 @@ |
736 | 736 | $j( '<div /> ') |
737 | 737 | .attr({ |
738 | 738 | 'id' : 'mw_layout_left_img', |
739 | | - 'title': gM( 'mwe-layout_left' ) |
| 739 | + 'title': gM( 'mwe-clipedit-layout_left' ) |
740 | 740 | }), |
741 | 741 | |
742 | 742 | // Right Layout |
— | — | @@ -751,7 +751,7 @@ |
752 | 752 | $j( '<div /> ') |
753 | 753 | .attr({ |
754 | 754 | 'id' : 'mw_layout_right_img', |
755 | | - 'title': gM( 'mwe-layout_right' ) |
| 755 | + 'title': gM( 'mwe-clipedit-layout_right' ) |
756 | 756 | }), |
757 | 757 | |
758 | 758 | $j('<hr />') |
— | — | @@ -790,7 +790,7 @@ |
791 | 791 | .attr({ |
792 | 792 | 'id' : 'mw_crop_button', |
793 | 793 | 'alt' : 'crop', |
794 | | - 'title' : gM( 'mwe-crop' ) |
| 794 | + 'title' : gM( 'mwe-clipedit-crop' ) |
795 | 795 | }), |
796 | 796 | |
797 | 797 | $j( '<a />') |
— | — | @@ -798,11 +798,11 @@ |
799 | 799 | 'href': '#' |
800 | 800 | }) |
801 | 801 | .addClass( 'mw_crop_msg' ) |
802 | | - .text( gM( 'mwe-crop' ) ), |
| 802 | + .text( gM( 'mwe-clipedit-crop' ) ), |
803 | 803 | |
804 | 804 | $j( '<span />' ) |
805 | 805 | .addClass( 'mw_crop_msg_load') |
806 | | - .text( gM( 'mwe-loading_txt' ) ) |
| 806 | + .text( gM( 'mwe-clipedit-loading_txt' ) ) |
807 | 807 | .hide(), |
808 | 808 | |
809 | 809 | $j( '<a />' ) |
— | — | @@ -813,7 +813,7 @@ |
814 | 814 | 'display': 'inline' |
815 | 815 | }) |
816 | 816 | .addClass( 'mw_apply_crop' ) |
817 | | - .text( gM( 'mwe-apply_crop' ) ) |
| 817 | + .text( gM( 'mwe-clipedit-apply_crop' ) ) |
818 | 818 | .hide(), |
819 | 819 | |
820 | 820 | // some space between apply and rest |
— | — | @@ -827,7 +827,7 @@ |
828 | 828 | 'display': 'inline' |
829 | 829 | }) |
830 | 830 | .addClass( 'mw_reset_crop' ) |
831 | | - .text( gM( 'mwe-reset_crop' ) ) |
| 831 | + .text( gM( 'mwe-clipedit-reset_crop' ) ) |
832 | 832 | .hide(), |
833 | 833 | |
834 | 834 | $j( '<hr />' ) |
— | — | @@ -849,7 +849,7 @@ |
850 | 850 | $j( '.mw_reset_crop' ).click( function() { |
851 | 851 | $j( '.mw_apply_crop,.mw_reset_crop' ).hide(); |
852 | 852 | $j( '.mw_crop_msg' ).show(); |
853 | | - $j( '#mw_crop_button' ).removeClass( 'mw_crop_button_selected' ).addClass( 'mw_crop_button_base' ).attr( 'title', gM( 'mwe-crop' ) ); |
| 853 | + $j( '#mw_crop_button' ).removeClass( 'mw_crop_button_selected' ).addClass( 'mw_crop_button_base' ).attr( 'title', gM( 'mwe-clipedit-crop' ) ); |
854 | 854 | _this.resource.crop = null; |
855 | 855 | $j( '#' + _this.target_clip_display ).empty().html( |
856 | 856 | $j('<img />') |
— | — | @@ -879,7 +879,7 @@ |
880 | 880 | if ( _this.enabled_tools == 'all' || _this.enabled_tools.length > 0 ) { |
881 | 881 | $tool_target.html( |
882 | 882 | $j( '<h3 />' ) |
883 | | - .text( gM( 'mwe-edit-tools' ) ) |
| 883 | + .text( gM( 'mwe-clipedit-edit-tools' ) ) |
884 | 884 | ); |
885 | 885 | for ( var i in _this.toolset ) { |
886 | 886 | var toolid = _this.toolset[i]; |
— | — | @@ -907,7 +907,7 @@ |
908 | 908 | $j( '#mw_crop_button' ) |
909 | 909 | .removeClass( 'mw_crop_button_selected' ) |
910 | 910 | .addClass( 'mw_crop_button_base' ) |
911 | | - .attr( 'title', gM( 'mwe-crop' ) ); |
| 911 | + .attr( 'title', gM( 'mwe-clipedit-crop' ) ); |
912 | 912 | |
913 | 913 | if ( _this.resource.crop ) { |
914 | 914 | // Empty out and display cropped: |
— | — | @@ -981,7 +981,7 @@ |
982 | 982 | var _this = this; |
983 | 983 | $j( '.mw_crop_msg_load' ).hide(); |
984 | 984 | $j( '.mw_reset_crop,.mw_apply_crop' ).show(); |
985 | | - $j( '#mw_crop_button' ).removeClass( 'mw_crop_button_base' ).addClass( 'mw_crop_button_selected' ).attr( 'title', gM( 'mwe-crop_done' ) ); |
| 985 | + $j( '#mw_crop_button' ).removeClass( 'mw_crop_button_base' ).addClass( 'mw_crop_button_selected' ).attr( 'title', gM( 'mwe-clipedit-crop_done' ) ); |
986 | 986 | $j( '#' + _this.target_clip_display + ' img' ).Jcrop( { |
987 | 987 | onSelect: function( c ) { |
988 | 988 | mw.log( 'on select:' + c.x + ',' + c.y + ',' + c.x2 + ',' + c.y2 + ',' + c.w + ',' + c.h ); |