mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-05 19:41:43 +08:00
2020/08/20: Inchar - 完成初步漢化
This commit is contained in:
parent
1d25c5f0a9
commit
24b848c8f2
@ -261,7 +261,7 @@ static void action_install_url_install_update(ui_view* view, void* data, float*
|
||||
info_destroy(view);
|
||||
|
||||
if(R_SUCCEEDED(installData->installInfo.result)) {
|
||||
prompt_display_notify("Success", "Install finished.", COLOR_TEXT, NULL, NULL, NULL);
|
||||
prompt_display_notify("成功", "已成功安裝", COLOR_TEXT, NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
action_install_url_free_data(installData);
|
||||
@ -274,7 +274,7 @@ static void action_install_url_install_update(ui_view* view, void* data, float*
|
||||
}
|
||||
|
||||
*progress = installData->installInfo.currTotal != 0 ? (float) ((double) installData->installInfo.currProcessed / (double) installData->installInfo.currTotal) : 0;
|
||||
snprintf(text, PROGRESS_TEXT_MAX, "%lu / %lu\n%.2f %s / %.2f %s\n%.2f %s/s, ETA %s", installData->installInfo.processed, installData->installInfo.total,
|
||||
snprintf(text, PROGRESS_TEXT_MAX, "%lu / %lu\n%.2f %s / %.2f %s\n%.2f %s/s, 剩餘 %s", installData->installInfo.processed, installData->installInfo.total,
|
||||
ui_get_display_size(installData->installInfo.currProcessed),
|
||||
ui_get_display_size_units(installData->installInfo.currProcessed),
|
||||
ui_get_display_size(installData->installInfo.currTotal),
|
||||
@ -290,9 +290,9 @@ static void action_install_url_confirm_onresponse(ui_view* view, void* data, u32
|
||||
if(response == PROMPT_YES) {
|
||||
Result res = task_data_op(&installData->installInfo);
|
||||
if(R_SUCCEEDED(res)) {
|
||||
info_display("Installing From URL(s)", "Press B to cancel.", true, data, action_install_url_install_update, action_install_url_draw_top);
|
||||
info_display("正在從 URL(s) 安裝", "按B鍵取消", true, data, action_install_url_install_update, action_install_url_draw_top);
|
||||
} else {
|
||||
error_display_res(NULL, NULL, res, "Failed to initiate installation.");
|
||||
error_display_res(NULL, NULL, res, "無法初始化安裝程式");
|
||||
|
||||
action_install_url_free_data(installData);
|
||||
}
|
||||
@ -307,7 +307,7 @@ void action_install_url(const char* confirmMessage, const char* urls, const char
|
||||
void (*drawTop)(ui_view* view, void* data, float x1, float y1, float x2, float y2, u32 index)) {
|
||||
install_url_data* data = (install_url_data*) calloc(1, sizeof(install_url_data));
|
||||
if(data == NULL) {
|
||||
error_display(NULL, NULL, "Failed to allocate URL install data.");
|
||||
error_display(NULL, NULL, "無法分配 URL 安裝數據");
|
||||
|
||||
return;
|
||||
}
|
||||
@ -399,5 +399,5 @@ void action_install_url(const char* confirmMessage, const char* urls, const char
|
||||
|
||||
data->installInfo.finished = true;
|
||||
|
||||
prompt_display_yes_no("Confirmation", confirmMessage, COLOR_TEXT, data, action_install_url_draw_top, action_install_url_confirm_onresponse);
|
||||
prompt_display_yes_no("確認", confirmMessage, COLOR_TEXT, data, action_install_url_draw_top, action_install_url_confirm_onresponse);
|
||||
}
|
@ -21,16 +21,16 @@ static void action_launch_title_update(ui_view* view, void* data, float* progres
|
||||
ui_pop();
|
||||
info_destroy(view);
|
||||
|
||||
error_display_res(info, task_draw_title_info, res, "Failed to launch title.");
|
||||
error_display_res(info, task_draw_title_info, res, "無法啟動程式");
|
||||
}
|
||||
}
|
||||
|
||||
static void action_launch_title_onresponse(ui_view* view, void* data, u32 response) {
|
||||
if(response == PROMPT_YES) {
|
||||
info_display("Launching Title", "", false, data, action_launch_title_update, task_draw_title_info);
|
||||
info_display("正在啟動程式中", "", false, data, action_launch_title_update, task_draw_title_info);
|
||||
}
|
||||
}
|
||||
|
||||
void action_launch_title(linked_list* items, list_item* selected) {
|
||||
prompt_display_yes_no("Confirmation", "Launch the selected title?", COLOR_TEXT, selected->data, task_draw_title_info, action_launch_title_onresponse);
|
||||
prompt_display_yes_no("確認", "即將啟動所選的程式,是否繼續?", COLOR_TEXT, selected->data, task_draw_title_info, action_launch_title_onresponse);
|
||||
}
|
@ -240,7 +240,7 @@ static void action_paste_contents_update(ui_view* view, void* data, float* progr
|
||||
info_destroy(view);
|
||||
|
||||
if(R_SUCCEEDED(pasteData->pasteInfo.result)) {
|
||||
prompt_display_notify("Success", "Contents pasted.", COLOR_TEXT, NULL, NULL, NULL);
|
||||
prompt_display_notify("成功", "檔案以粘貼", COLOR_TEXT, NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
action_paste_contents_free_data(pasteData);
|
||||
@ -268,9 +268,9 @@ static void action_paste_contents_onresponse(ui_view* view, void* data, u32 resp
|
||||
if(response == PROMPT_YES) {
|
||||
Result res = task_data_op(&pasteData->pasteInfo);
|
||||
if(R_SUCCEEDED(res)) {
|
||||
info_display("Pasting Contents", "Press B to cancel.", true, data, action_paste_contents_update, action_paste_contents_draw_top);
|
||||
info_display("正在粘貼檔案中", "按B鍵取消", true, data, action_paste_contents_update, action_paste_contents_draw_top);
|
||||
} else {
|
||||
error_display_res(NULL, NULL, res, "Failed to initiate paste operation.");
|
||||
error_display_res(NULL, NULL, res, "無法初始化粘貼操作");
|
||||
|
||||
action_paste_contents_free_data(pasteData);
|
||||
}
|
||||
@ -300,9 +300,9 @@ static void action_paste_contents_loading_update(ui_view* view, void* data, floa
|
||||
loadingData->pasteData->pasteInfo.total = linked_list_size(&loadingData->pasteData->contents);
|
||||
loadingData->pasteData->pasteInfo.processed = loadingData->pasteData->pasteInfo.total;
|
||||
|
||||
prompt_display_yes_no("Confirmation", "Paste clipboard contents to the current directory?", COLOR_TEXT, loadingData->pasteData, action_paste_contents_draw_top, action_paste_contents_onresponse);
|
||||
prompt_display_yes_no("確認", "即將粘貼剪貼板檔案到當前資料夾下,是否繼續?", COLOR_TEXT, loadingData->pasteData, action_paste_contents_draw_top, action_paste_contents_onresponse);
|
||||
} else {
|
||||
error_display_res(NULL, NULL, loadingData->popData.result, "Failed to populate clipboard content list.");
|
||||
error_display_res(NULL, NULL, loadingData->popData.result, "無法列舉剪貼板檔案目錄");
|
||||
|
||||
action_paste_contents_free_data(loadingData->pasteData);
|
||||
}
|
||||
@ -315,18 +315,18 @@ static void action_paste_contents_loading_update(ui_view* view, void* data, floa
|
||||
svcSignalEvent(loadingData->popData.cancelEvent);
|
||||
}
|
||||
|
||||
snprintf(text, PROGRESS_TEXT_MAX, "Fetching clipboard content list...");
|
||||
snprintf(text, PROGRESS_TEXT_MAX, "獲取剪貼板檔案目錄中......");
|
||||
}
|
||||
|
||||
void action_paste_contents(linked_list* items, list_item* selected) {
|
||||
if(!clipboard_has_contents()) {
|
||||
prompt_display_notify("Failure", "Clipboard empty.", COLOR_TEXT, NULL, NULL, NULL);
|
||||
prompt_display_notify("失敗", "剪貼板無檔案.", COLOR_TEXT, NULL, NULL, NULL);
|
||||
return;
|
||||
}
|
||||
|
||||
paste_contents_data* data = (paste_contents_data*) calloc(1, sizeof(paste_contents_data));
|
||||
if(data == NULL) {
|
||||
error_display(NULL, NULL, "Failed to allocate paste contents data.");
|
||||
error_display(NULL, NULL, "無法分配粘貼檔案數據");
|
||||
|
||||
return;
|
||||
}
|
||||
@ -336,7 +336,7 @@ void action_paste_contents(linked_list* items, list_item* selected) {
|
||||
file_info* targetInfo = (file_info*) selected->data;
|
||||
Result targetCreateRes = task_create_file_item(&data->targetItem, targetInfo->archive, targetInfo->path, targetInfo->attributes, false);
|
||||
if(R_FAILED(targetCreateRes)) {
|
||||
error_display_res(NULL, NULL, targetCreateRes, "Failed to create target file item.");
|
||||
error_display_res(NULL, NULL, targetCreateRes, "無法創建目標檔案");
|
||||
|
||||
action_paste_contents_free_data(data);
|
||||
return;
|
||||
@ -374,7 +374,7 @@ void action_paste_contents(linked_list* items, list_item* selected) {
|
||||
|
||||
paste_contents_loading_data* loadingData = (paste_contents_loading_data*) calloc(1, sizeof(paste_contents_loading_data));
|
||||
if(loadingData == NULL) {
|
||||
error_display(NULL, NULL, "Failed to allocate loading data.");
|
||||
error_display(NULL, NULL, "無法分配讀取數據");
|
||||
|
||||
action_paste_contents_free_data(data);
|
||||
return;
|
||||
@ -393,12 +393,12 @@ void action_paste_contents(linked_list* items, list_item* selected) {
|
||||
|
||||
Result listRes = task_populate_files(&loadingData->popData);
|
||||
if(R_FAILED(listRes)) {
|
||||
error_display_res(NULL, NULL, listRes, "Failed to initiate clipboard content list population.");
|
||||
error_display_res(NULL, NULL, listRes, "Failed to initiate clipboard content list population.無法初始化剪貼板檔案目錄結構");
|
||||
|
||||
free(loadingData);
|
||||
action_paste_contents_free_data(data);
|
||||
return;
|
||||
}
|
||||
|
||||
info_display("Loading", "Press B to cancel.", false, loadingData, action_paste_contents_loading_update, action_paste_contents_loading_draw_top);
|
||||
info_display("正在讀期中", "按B鍵取消", false, loadingData, action_paste_contents_loading_update, action_paste_contents_loading_draw_top);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user