First mercurial commit. Some updated in strings and localization.

This commit is contained in:
Lorenz Cuno Klopfenstein 2010-01-27 22:16:41 +01:00
parent 080f300ea6
commit d43dda7aba
6 changed files with 40 additions and 6 deletions

3
.hgignore Normal file
View file

@ -0,0 +1,3 @@
glob:OnTopReplica.suo
glob:bin/*
glob:obj/*

View file

@ -193,7 +193,7 @@
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FullscreenForm";
this.Text = "OnTopReplica fullscreen";
this.Text = Strings.FullscreenTitle;
this.menuContext.ResumeLayout(false);
this.menuWindows.ResumeLayout(false);
this.ResumeLayout(false);

View file

@ -351,7 +351,8 @@
//
this.chromeToolStripMenuItem.Name = "chromeToolStripMenuItem";
this.chromeToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
this.chromeToolStripMenuItem.Text = "Chrome";
this.chromeToolStripMenuItem.Text = Strings.MenuChrome;
this.chromeToolStripMenuItem.ToolTipText = Strings.MenuChromeTT;
this.chromeToolStripMenuItem.Click += new System.EventHandler(this.Menu_Chrome_click);
//
// reduceToIconToolStripMenuItem

View file

@ -701,6 +701,24 @@ namespace OnTopReplica {
}
}
/// <summary>
/// Looks up a localized string similar to Chrome.
/// </summary>
internal static string MenuChrome {
get {
return ResourceManager.GetString("MenuChrome", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Toggles the display of the window chrome..
/// </summary>
internal static string MenuChromeTT {
get {
return ResourceManager.GetString("MenuChromeTT", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Click forwarding.
/// </summary>
@ -981,7 +999,7 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to Reduce to icon.
/// Looks up a localized string similar to Minimize to tray.
/// </summary>
internal static string MenuReduce {
get {
@ -990,7 +1008,7 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to Reduces OnTopReplica to the icon in the tray..
/// Looks up a localized string similar to Reduces OnTopReplica to an icon in the tray..
/// </summary>
internal static string MenuReduceTT {
get {

View file

@ -555,4 +555,10 @@ a:hover {
<data name="FullscreenModeNormalTT" xml:space="preserve">
<value>Si comporta come una finestra normale. Puoi portare altre finestre sopra OnTopReplica.</value>
</data>
<data name="MenuChrome" xml:space="preserve">
<value>Bordo</value>
</data>
<data name="MenuChromeTT" xml:space="preserve">
<value>Abilita o disabilita il bordo della finestra.</value>
</data>
</root>

View file

@ -281,10 +281,10 @@ You must run this application on Windows Vista Home Premium or better.</value>
<value>Toggles whether OnTopReplica should store its last position and size and use them when it is restarted.</value>
</data>
<data name="MenuReduce" xml:space="preserve">
<value>Reduce to icon</value>
<value>Minimize to tray</value>
</data>
<data name="MenuReduceTT" xml:space="preserve">
<value>Reduces OnTopReplica to the icon in the tray.</value>
<value>Reduces OnTopReplica to an icon in the tray.</value>
</data>
<data name="MenuRegion" xml:space="preserve">
<value>Select region...</value>
@ -555,4 +555,10 @@ a:hover {
<data name="FullscreenModeNormalTT" xml:space="preserve">
<value>Behaves like an ordinary window. You can bring other windows above OnTopReplica.</value>
</data>
<data name="MenuChrome" xml:space="preserve">
<value>Chrome</value>
</data>
<data name="MenuChromeTT" xml:space="preserve">
<value>Toggles the display of the window chrome.</value>
</data>
</root>