aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrystalP <crystalp@kodi.tv>2024-02-05 08:04:21 -0500
committerGitHub <noreply@github.com>2024-02-05 08:04:21 -0500
commit6256993bb6991815377fcaa5ab6814b65135abc1 (patch)
tree2be1619e3d0abc42498267c8d56d20ebe27a6033
parent99d8703b8e7536aa205f7ea849d77b99e906616a (diff)
parentdc4b3381eaec0b851a85c719b0f5992c37980e91 (diff)
Merge pull request #24648 from CrystalP/fix-chooseversion-caption
[video] Fix text of the context menu Choose version button
-rw-r--r--addons/resource.language.en_gb/resources/strings.po11
-rw-r--r--xbmc/video/ContextMenus.h2
2 files changed, 9 insertions, 4 deletions
diff --git a/addons/resource.language.en_gb/resources/strings.po b/addons/resource.language.en_gb/resources/strings.po
index 3eb4e106ed..c7d5b49cb6 100644
--- a/addons/resource.language.en_gb/resources/strings.po
+++ b/addons/resource.language.en_gb/resources/strings.po
@@ -24081,8 +24081,7 @@ msgctxt "#40207"
msgid "When enabled, a video with multiple versions will be shown as a folder in the video library. This folder can then be opened to display the individual video versions. When disabled, the configured select action will be applied."
msgstr ""
-#. Choose video version context menu item label and dialog title
-#: xbmc/video/ContextMenus.h
+#. Choose video version dialog title
#: xbmc/video/guilib/VideoVersionHelper.cpp
msgctxt "#40208"
msgid "Choose version: {}"
@@ -24162,7 +24161,13 @@ msgctxt "#40220"
msgid "New extra name"
msgstr ""
-#empty strings from id 40221 to 40399
+#. Choose video version context menu item label
+#: xbmc/video/ContextMenus.h
+msgctxt "#40221"
+msgid "Choose version"
+msgstr ""
+
+#empty strings from id 40222 to 40399
# Video versions
diff --git a/xbmc/video/ContextMenus.h b/xbmc/video/ContextMenus.h
index b5c22097bb..1fced797f0 100644
--- a/xbmc/video/ContextMenus.h
+++ b/xbmc/video/ContextMenus.h
@@ -88,7 +88,7 @@ struct CVideoBrowse : CStaticContextMenuAction
struct CVideoChooseVersion : CStaticContextMenuAction
{
- CVideoChooseVersion() : CStaticContextMenuAction(40208) {} // Choose version
+ CVideoChooseVersion() : CStaticContextMenuAction(40221) {} // Choose version
bool IsVisible(const CFileItem& item) const override;
bool Execute(const std::shared_ptr<CFileItem>& item) const override;
};