From 76c4ec7403aad6d1909a67ffe63ade7ebe6bef3f Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Fri, 21 Feb 2025 18:29:41 +0700 Subject: [PATCH] Add actions-processing based on qt-misc-processing --- ftl/core-repo | 2 +- ftl/core/actions.ftl | 2 +- ftl/src/string/mod.rs | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ftl/core-repo b/ftl/core-repo index 7458a1d41..34484d2ab 160000 --- a/ftl/core-repo +++ b/ftl/core-repo @@ -1 +1 @@ -Subproject commit 7458a1d41ecb87d4fc88abaf20a6fa267d9e303d +Subproject commit 34484d2abfa3e59a8a48befe300ebb05bd3040cc diff --git a/ftl/core/actions.ftl b/ftl/core/actions.ftl index 32556dfe6..4f47f9324 100644 --- a/ftl/core/actions.ftl +++ b/ftl/core/actions.ftl @@ -70,7 +70,6 @@ actions-previous-card-info = Previous Card Info # input is required before it can be performed. E.g. "Export..." vs. "Delete". actions-with-ellipsis = { $action }... actions-fullscreen-unsupported = Full screen mode is not supported for your video driver. Try switching to a different one from the preferences screen. - actions-flag-number = Flag { $number } ## The same translation may used for two independent actions: @@ -93,3 +92,4 @@ actions-nothing-to-redo = Nothing to redo actions-auto-advance = Auto Advance actions-auto-advance-activated = Auto Advance enabled actions-auto-advance-deactivated = Auto Advance disabled +actions-processing = Processing... diff --git a/ftl/src/string/mod.rs b/ftl/src/string/mod.rs index 8e1262b9c..1b64dd91c 100644 --- a/ftl/src/string/mod.rs +++ b/ftl/src/string/mod.rs @@ -84,6 +84,7 @@ fn ftl_file_from_key(old_key: &str) -> String { "deck-config", "empty-cards", "media-check", + "qt-misc", ] { if old_key.starts_with(&format!("{prefix}-")) { return format!("{prefix}.ftl");