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