mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-02-17 11:30:02 +00:00
add localisable strings for Import/Imported
This commit is contained in:
parent
2fee131aa4
commit
4347d91c57
@ -1,5 +1,6 @@
|
|||||||
title: $:/language/Import/
|
title: $:/language/Import/
|
||||||
|
|
||||||
|
Imported: The following tiddlers were imported:
|
||||||
Listing/Cancel/Caption: Cancel
|
Listing/Cancel/Caption: Cancel
|
||||||
Listing/Hint: These tiddlers are ready to import:
|
Listing/Hint: These tiddlers are ready to import:
|
||||||
Listing/Import/Caption: Import
|
Listing/Import/Caption: Import
|
||||||
|
@ -556,7 +556,7 @@ NavigatorWidget.prototype.handlePerformImportEvent = function(event) {
|
|||||||
importData = this.wiki.getTiddlerDataCached(event.param,{tiddlers: {}}),
|
importData = this.wiki.getTiddlerDataCached(event.param,{tiddlers: {}}),
|
||||||
importReport = [];
|
importReport = [];
|
||||||
// Add the tiddlers to the store
|
// Add the tiddlers to the store
|
||||||
importReport.push("The following tiddlers were imported:\n");
|
importReport.push($tw.language.getString("Import/Imported") + "\n");
|
||||||
$tw.utils.each(importData.tiddlers,function(tiddlerFields) {
|
$tw.utils.each(importData.tiddlers,function(tiddlerFields) {
|
||||||
var title = tiddlerFields.title;
|
var title = tiddlerFields.title;
|
||||||
if(title && importTiddler && importTiddler.fields["selection-" + title] !== "unchecked") {
|
if(title && importTiddler && importTiddler.fields["selection-" + title] !== "unchecked") {
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
title: $:/language/Import/
|
title: $:/language/Import/
|
||||||
|
|
||||||
|
Imported: 다음 티들러를 가져왔습니다:
|
||||||
Listing/Cancel/Caption: 취소
|
Listing/Cancel/Caption: 취소
|
||||||
Listing/Hint: 이 티들러는 가져올 준비가 되었습니다:
|
Listing/Hint: 이 티들러는 가져올 준비가 되었습니다:
|
||||||
Listing/Import/Caption: 가져오기
|
Listing/Import/Caption: 가져오기
|
||||||
|
Loading…
x
Reference in New Issue
Block a user