mirror of
https://github.com/netinvent/npbackup.git
synced 2025-09-15 17:36:32 +08:00
GUI: Cosmetic button name change
This commit is contained in:
parent
acc9fecf14
commit
c71e6d4d69
3 changed files with 6 additions and 2 deletions
|
@ -262,7 +262,9 @@ def operations_gui(full_config: dict) -> dict:
|
|||
def _get_repo_list(selected_rows):
|
||||
if not selected_rows:
|
||||
if (
|
||||
sg.popup_yes_no(_t("operations_gui.no_repo_selected_apply_all"), keep_on_top=True)
|
||||
sg.popup_yes_no(
|
||||
_t("operations_gui.no_repo_selected_apply_all"), keep_on_top=True
|
||||
)
|
||||
== "No"
|
||||
):
|
||||
return False
|
||||
|
@ -420,7 +422,7 @@ def operations_gui(full_config: dict) -> dict:
|
|||
visible=True,
|
||||
),
|
||||
],
|
||||
[sg.Button(_t("generic.quit"), key="--EXIT--")],
|
||||
[sg.Button(_t("generic.return"), key="--EXIT--")],
|
||||
],
|
||||
element_justification="C",
|
||||
)
|
||||
|
|
|
@ -2,6 +2,7 @@ en:
|
|||
accept: Accept
|
||||
cancel: Cancel
|
||||
quit: Exit
|
||||
return: Return
|
||||
configure: Configure
|
||||
about: About
|
||||
options: Options
|
||||
|
|
|
@ -2,6 +2,7 @@ fr:
|
|||
accept: Valider
|
||||
cancel: Annuler
|
||||
quit: Quitter
|
||||
return: Retour
|
||||
configure: Configurer
|
||||
about: A propos
|
||||
options: Options
|
||||
|
|
Loading…
Add table
Reference in a new issue