Skip to content

Commit

Permalink
Make "Other 2FA defined" translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
Rookiestyle committed Jul 6, 2024
1 parent 5da90e3 commit 220feb7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/KeePassOTPExt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ private void CreateMenu()
m_MainMenuSetup = new ToolStripMenuItem(PluginTranslate.OTPSetup);
m_MainMenuSetup.Click += OnOTPSetup;
m_MainMenuSetup.Image = Icon_Setup;
m_MainMenuOtherOTPDefined = new ToolStripMenuItem("Other 2FA defined");
m_MainMenuOtherOTPDefined = new ToolStripMenuItem(PluginTranslate.Other2FA);
m_MainMenuOtherOTPDefined.Click += OnToggleOtherOTPDefined;
//m_MainMenuOtherOTPDefined.Image = Icon_Setup;
m_MainMenuOtherOTPDefined.CheckOnClick = true;
Expand Down
4 changes: 2 additions & 2 deletions src/PluginTranslation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ public static class PluginTranslate
/// </summary>
public static readonly string OTPSetup = @"OTP setup...";
/// <summary>
/// Copy OTP
/// Other 2FA defined
/// </summary>
public static readonly string Other2FA = @"Other 2FA defined";
/// <summary>
/// Other 2FA
/// Copy OTP
/// </summary>
public static readonly string OTPCopy = @"Copy OTP";
/// <summary>
Expand Down
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.1")]
[assembly: AssemblyFileVersion("1.7.1")]
[assembly: AssemblyVersion("1.7.2")]
[assembly: AssemblyFileVersion("1.7.2")]
4 changes: 2 additions & 2 deletions version.info
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
:
KeePassOTP:1.7.1
KeePassOTP!de:24
KeePassOTP:1.7.2
KeePassOTP!de:25
KeePassOTP!fr:7
KeePassOTP!nl:3
KeePassOTP!pt:16
Expand Down

0 comments on commit 220feb7

Please sign in to comment.