Some localization strings added (EN, IT).

Fixed .Designer files in order to load localized strings everywhere.
This commit is contained in:
Lorenz Cuno Klopfenstein 2010-07-01 03:58:52 +02:00
parent d9d31c3eed
commit 06f2013f9e
12 changed files with 1982 additions and 2284 deletions

View file

@ -152,13 +152,14 @@
this.advancedToolStripMenuItem.Image = global::OnTopReplica.Properties.Resources.xiao_wrench;
this.advancedToolStripMenuItem.Name = "advancedToolStripMenuItem";
this.advancedToolStripMenuItem.Size = new System.Drawing.Size(168, 22);
this.advancedToolStripMenuItem.Text = "Advanced";
this.advancedToolStripMenuItem.Text = Strings.MenuAdvanced;
//
// forwardClicksToolStripMenuItem
//
this.forwardClicksToolStripMenuItem.Name = "forwardClicksToolStripMenuItem";
this.forwardClicksToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
this.forwardClicksToolStripMenuItem.Text = "Enable Click forwarding";
this.forwardClicksToolStripMenuItem.Text = Strings.MenuClickForwarding;
this.forwardClicksToolStripMenuItem.ToolTipText = Strings.MenuClickForwardingTT;
this.forwardClicksToolStripMenuItem.ToolTipText = global::OnTopReplica.Strings.MenuClickForwardingTT;
this.forwardClicksToolStripMenuItem.Click += new System.EventHandler(this.Menu_ClickForwarding_click);
//
@ -166,14 +167,16 @@
//
this.clickthroughToolStripMenuItem.Name = "clickthroughToolStripMenuItem";
this.clickthroughToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
this.clickthroughToolStripMenuItem.Text = "Enable Click-through";
this.clickthroughToolStripMenuItem.Text = Strings.MenuClickThrough;
this.clickthroughToolStripMenuItem.ToolTipText = Strings.MenuClickThroughTT;
this.clickthroughToolStripMenuItem.Click += new System.EventHandler(this.Menu_ClickThrough_click);
//
// dualWindowModeToolStripMenuItem
//
this.dualWindowModeToolStripMenuItem.Name = "dualWindowModeToolStripMenuItem";
this.dualWindowModeToolStripMenuItem.Size = new System.Drawing.Size(199, 22);
this.dualWindowModeToolStripMenuItem.Text = "Group switch mode";
this.dualWindowModeToolStripMenuItem.Text = Strings.MenuGroupSwitch;
this.dualWindowModeToolStripMenuItem.ToolTipText = Strings.MenuGroupSwitchTT;
this.dualWindowModeToolStripMenuItem.Click += new System.EventHandler(this.Menu_GroupSwitchMode_click);
//
// menuContextOpacity
@ -441,14 +444,15 @@
this.fullSelectWindowToolStripMenuItem.DropDown = this.menuWindows;
this.fullSelectWindowToolStripMenuItem.Name = "fullSelectWindowToolStripMenuItem";
this.fullSelectWindowToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
this.fullSelectWindowToolStripMenuItem.Text = "Select window...";
this.fullSelectWindowToolStripMenuItem.Text = Strings.MenuWindows;
this.fullSelectWindowToolStripMenuItem.ToolTipText = Strings.MenuWindowsTT;
//
// fullOpacityToolStripMenuItem
//
this.fullOpacityToolStripMenuItem.DropDown = this.menuOpacity;
this.fullOpacityToolStripMenuItem.Name = "fullOpacityToolStripMenuItem";
this.fullOpacityToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
this.fullOpacityToolStripMenuItem.Text = "Opacity";
this.fullOpacityToolStripMenuItem.Text = Strings.MenuOpacity;
//
// danskToolStripMenuItem
//
@ -473,7 +477,8 @@
//
this.enableClickthroughToolStripMenuItem.Name = "enableClickthroughToolStripMenuItem";
this.enableClickthroughToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
this.enableClickthroughToolStripMenuItem.Text = "Enable Click-through";
this.enableClickthroughToolStripMenuItem.Text = Strings.MenuClickThrough;
this.enableClickthroughToolStripMenuItem.ToolTipText = Strings.MenuClickThroughTT;
this.enableClickthroughToolStripMenuItem.Click += new System.EventHandler(this.Menu_ClickThrough_click);
//
// fullExitToolStripMenuItem
@ -481,7 +486,7 @@
this.fullExitToolStripMenuItem.Image = global::OnTopReplica.Properties.Resources.close_new;
this.fullExitToolStripMenuItem.Name = "fullExitToolStripMenuItem";
this.fullExitToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
this.fullExitToolStripMenuItem.Text = "Exit fullscreen mode";
this.fullExitToolStripMenuItem.Text = Strings.MenuQuitFullscreen;
this.fullExitToolStripMenuItem.Click += new System.EventHandler(this.Menu_Fullscreen_ExitFullscreen_click);
//
// MainForm

View file

@ -15,11 +15,15 @@ namespace OnTopReplica {
return;
}
selectRegionToolStripMenuItem.Enabled = _thumbnailPanel.IsShowingThumbnail;
switchToWindowToolStripMenuItem.Enabled = _thumbnailPanel.IsShowingThumbnail;
resizeToolStripMenuItem.Enabled = _thumbnailPanel.IsShowingThumbnail;
bool showing = _thumbnailPanel.IsShowingThumbnail;
selectRegionToolStripMenuItem.Enabled = showing;
switchToWindowToolStripMenuItem.Enabled = showing;
resizeToolStripMenuItem.Enabled = showing;
chromeToolStripMenuItem.Checked = (FormBorderStyle == FormBorderStyle.Sizable);
forwardClicksToolStripMenuItem.Checked = _thumbnailPanel.ReportThumbnailClicks;
chromeToolStripMenuItem.Enabled = showing;
advancedToolStripMenuItem.Enabled = showing;
}
private void Menu_Windows_opening(object sender, CancelEventArgs e) {

View file

@ -48,8 +48,8 @@
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
<WebPage>publish.htm</WebPage>
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
<ApplicationRevision>2</ApplicationRevision>
<ApplicationVersion>2.9.5.%2a</ApplicationVersion>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>3.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
@ -182,6 +182,11 @@
<DesignTime>True</DesignTime>
<DependentUpon>Strings.da.resx</DependentUpon>
</Compile>
<Compile Include="Strings.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
<Compile Include="Strings.it.Designer.cs">
<DependentUpon>Strings.it.resx</DependentUpon>
<AutoGen>True</AutoGen>
@ -234,9 +239,9 @@
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Strings.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Strings.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
<Generator>ResXFileCodeGenerator</Generator>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
@ -260,11 +265,6 @@
</Compile>
<Compile Include="StoredRegion.cs" />
<Compile Include="StoredRegionArray.cs" />
<Compile Include="Strings.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Strings.resx</DependentUpon>
</Compile>
<Compile Include="ThumbnailPanel.cs">
<SubType>Component</SubType>
</Compile>

View file

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 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("2.9.5.0")]
[assembly: AssemblyFileVersion("2.9.5.0")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]

View file

@ -44,7 +44,7 @@
this.groupBox1.Size = new System.Drawing.Size(228, 296);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Group switch mode";
this.groupBox1.Text = Strings.GroupSwitchModeTitle;
//
// buttonCancel
//
@ -53,7 +53,7 @@
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(70, 23);
this.buttonCancel.TabIndex = 2;
this.buttonCancel.Text = "Disable";
this.buttonCancel.Text = Strings.GroupSwitchModeDisableButton;
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.Cancel_click);
//
@ -65,7 +65,7 @@
this.buttonEnable.Name = "buttonEnable";
this.buttonEnable.Size = new System.Drawing.Size(134, 23);
this.buttonEnable.TabIndex = 1;
this.buttonEnable.Text = "Enable group mode";
this.buttonEnable.Text = Strings.GroupSwitchModeEnableButton;
this.buttonEnable.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.buttonEnable.UseVisualStyleBackColor = true;
this.buttonEnable.Click += new System.EventHandler(this.Enable_click);
@ -90,7 +90,7 @@
//
// colName
//
this.colName.Text = "Windows";
this.colName.Text = Strings.GroupSwitchModeWindows;
this.colName.Width = 220;
//
// labelStatus
@ -101,7 +101,7 @@
this.labelStatus.Name = "labelStatus";
this.labelStatus.Size = new System.Drawing.Size(219, 17);
this.labelStatus.TabIndex = 3;
this.labelStatus.Text = "-";
this.labelStatus.Text = "";
this.labelStatus.TextAlign = System.Drawing.ContentAlignment.BottomRight;
//
// GroupSwitchPanel

View file

@ -18,8 +18,8 @@ namespace OnTopReplica.SidePanels {
LoadWindowList();
labelStatus.Text = (ParentForm.MessagePumpManager.Get<GroupSwitchManager>().IsActive) ?
"Group switching is active." :
"Select multiple windows to enable.";
Strings.GroupSwitchModeStatusEnabled :
Strings.GroupSwitchModeStatusDisabled;
}
private void LoadWindowList() {

View file

@ -69,7 +69,7 @@
this.groupBox1.Size = new System.Drawing.Size(184, 189);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Regions";
this.groupBox1.Text = Strings.RegionsTitle;
//
// textRegionName
//
@ -194,7 +194,7 @@
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(38, 13);
this.label6.TabIndex = 9;
this.label6.Text = "Height";
this.label6.Text = Strings.RegionsHeight;
//
// label7
//
@ -204,7 +204,7 @@
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(35, 13);
this.label7.TabIndex = 8;
this.label7.Text = "Width";
this.label7.Text = Strings.RegionsWidth;
//
// label3
//
@ -234,7 +234,7 @@
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(76, 13);
this.label1.TabIndex = 3;
this.label1.Text = "Current region:";
this.label1.Text = Strings.RegionsCurrentRegion;
//
// buttonDelete
//

View file

@ -131,7 +131,7 @@ namespace OnTopReplica {
///
/// &lt;h1&gt;License&lt;/h1&gt;
///
/// &lt;p&gt;&lt;b&gt;OnTopReplica&lt;/b&gt; is licensed under the &lt;a href=&quot;http://opensource.org/licenses [rest of string was truncated]&quot;;.
/// &lt;p&gt;&lt;b&gt;OnTopReplica&lt;/b&gt; is licensed under the &lt;a href=&quot;http://opensource.org/licenses/ms-rl.html&quot;&gt;Microsoft Reciprocal [rest of string was truncated]&quot;;.
/// </summary>
internal static string AboutDetails {
get {
@ -436,7 +436,7 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to It appears that OnTopReplica wasn&apos;t installed using &apos;ClickOnce&apos;. You&apos;ll have to update manually (visit &lt;a href=&quot;http://www.codeplex.com/ontopreplica&quot;&gt;OnTopReplica&apos;s homepage&lt;/a&gt;)..
/// Looks up a localized string similar to It appears that OnTopReplica wasn&apos;t installed using &apos;ClickOnce&apos;. You&apos;ll have to update manually (visit &lt;a href=&quot;http://ontopreplica.codeplex.com&quot;&gt;OnTopReplica&apos;s homepage&lt;/a&gt;)..
/// </summary>
internal static string ErrorUpdateContent {
get {
@ -516,6 +516,60 @@ namespace OnTopReplica {
}
}
/// <summary>
/// Looks up a localized string similar to Disable.
/// </summary>
internal static string GroupSwitchModeDisableButton {
get {
return ResourceManager.GetString("GroupSwitchModeDisableButton", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Enable Group mode.
/// </summary>
internal static string GroupSwitchModeEnableButton {
get {
return ResourceManager.GetString("GroupSwitchModeEnableButton", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Select multiple windows to enable..
/// </summary>
internal static string GroupSwitchModeStatusDisabled {
get {
return ResourceManager.GetString("GroupSwitchModeStatusDisabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Group switch mode is enabled..
/// </summary>
internal static string GroupSwitchModeStatusEnabled {
get {
return ResourceManager.GetString("GroupSwitchModeStatusEnabled", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Group switch mode:.
/// </summary>
internal static string GroupSwitchModeTitle {
get {
return ResourceManager.GetString("GroupSwitchModeTitle", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Windows.
/// </summary>
internal static string GroupSwitchModeWindows {
get {
return ResourceManager.GetString("GroupSwitchModeWindows", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Homepage: www.codeplex.com/ontopreplica..
/// </summary>
@ -537,7 +591,7 @@ namespace OnTopReplica {
/// <summary>
/// Looks up a localized string similar to If this mode is enabled, OnTopReplica will forward all left mouse clicks to the window that is being cloned (this will allow you to do basic mouse operations on the cloned window without having to activate it).
///
///To exit this mode, right-click on OnTopReplica and disable &quot;Click forwarding&quot; from the menu..
///To exit this mode, push ESC..
/// </summary>
internal static string InfoClickForwardingContent {
get {
@ -555,7 +609,7 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to Enable Click-Through fullscreen mode?.
/// Looks up a localized string similar to Enable Click-Through mode?.
/// </summary>
internal static string InfoClickThrough {
get {
@ -575,7 +629,7 @@ namespace OnTopReplica {
/// <summary>
/// Looks up a localized string similar to In this mode the fullscreen window will behave as a partially transparent overlay, allowing you to click on the other windows behind it.
///
///To return to normal mode anytime, double click on the OnTopReplica icon in the tray area..
///To return to normal mode anytime, activate OnTopReplica by clicking on the task bar (or the tray icon)..
/// </summary>
internal static string InfoClickThroughInformation {
get {
@ -584,7 +638,7 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to No, use standard fullscreen
/// Looks up a localized string similar to No, thank you.
///You can enable click-through later.
/// </summary>
internal static string InfoClickThroughNo {
@ -684,20 +738,11 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to Autofit on resize.
/// Looks up a localized string similar to Advanced.
/// </summary>
internal static string MenuAutofit {
internal static string MenuAdvanced {
get {
return ResourceManager.GetString("MenuAutofit", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Automatically fits the window to the thumbnail when you resize it..
/// </summary>
internal static string MenuAutofitTT {
get {
return ResourceManager.GetString("MenuAutofitTT", resourceCulture);
return ResourceManager.GetString("MenuAdvanced", resourceCulture);
}
}
@ -720,7 +765,7 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to Click forwarding.
/// Looks up a localized string similar to Enable Click forwarding.
/// </summary>
internal static string MenuClickForwarding {
get {
@ -737,6 +782,24 @@ namespace OnTopReplica {
}
}
/// <summary>
/// Looks up a localized string similar to Enable Click-Through.
/// </summary>
internal static string MenuClickThrough {
get {
return ResourceManager.GetString("MenuClickThrough", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to OnTopReplica will behave like a transparent overlay that lets your clicks through to the windows below..
/// </summary>
internal static string MenuClickThroughTT {
get {
return ResourceManager.GetString("MenuClickThroughTT", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Close.
/// </summary>
@ -818,6 +881,24 @@ namespace OnTopReplica {
}
}
/// <summary>
/// Looks up a localized string similar to Group Switch mode.
/// </summary>
internal static string MenuGroupSwitch {
get {
return ResourceManager.GetString("MenuGroupSwitch", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to OnTopReplica will automatically clone a window from an user defined group, switching to the one least recently activated to the foreground..
/// </summary>
internal static string MenuGroupSwitchTT {
get {
return ResourceManager.GetString("MenuGroupSwitchTT", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 100% (opaque).
/// </summary>
@ -999,7 +1080,7 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to Minimize to tray.
/// Looks up a localized string similar to Minimize.
/// </summary>
internal static string MenuReduce {
get {
@ -1008,7 +1089,7 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to Reduces OnTopReplica to an icon in the tray..
/// Looks up a localized string similar to Minimizes OnTopReplica to the task bar (or the tray)..
/// </summary>
internal static string MenuReduceTT {
get {
@ -1061,24 +1142,6 @@ namespace OnTopReplica {
}
}
/// <summary>
/// Looks up a localized string similar to Click-Through.
/// </summary>
internal static string MenuResizeClickThrough {
get {
return ResourceManager.GetString("MenuResizeClickThrough", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to If the window is not completely opaque when turned to fullscreen mode, it will let all clicks &quot;fall through&quot; (like a transparent overlay)..
/// </summary>
internal static string MenuResizeClickThroughTT {
get {
return ResourceManager.GetString("MenuResizeClickThroughTT", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Switch to window.
/// </summary>
@ -1197,7 +1260,7 @@ namespace OnTopReplica {
}
/// <summary>
/// Looks up a localized string similar to Regions.
/// Looks up a localized string similar to Regions:.
/// </summary>
internal static string RegionsTitle {
get {

View file

@ -1,117 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- author: René Mihula, rene.mihula@gmail.com -->
<!-- email: rene.mihula@gmail.com -->
<!-- date: 2010-03-31 -->
<!-- language: czech -->
<!-- locale: cs Czech -->
<!-- locale: cs-CZ Czech (Czech Republic) -->
<!-- menu caption: Čeština -->
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
@ -197,12 +85,6 @@ Tuto aplikaci je možné spouštět pouze na systémech Windows Vista Home Premi
<data name="MenuAboutTT" xml:space="preserve">
<value>Skryje hlavní okno a zobrazí informace "O aplikaci".</value>
</data>
<data name="MenuAutofit" xml:space="preserve">
<value>Přizpůsobit po změně velikosti</value>
</data>
<data name="MenuAutofitTT" xml:space="preserve">
<value>Automaticky přizpůsobuje rozměr okna velikosti náhledu při změně velikosti okna.</value>
</data>
<data name="MenuClose" xml:space="preserve">
<value>Zavřít</value>
</data>
@ -337,6 +219,7 @@ Tuto aplikaci je možné spouštět pouze na systémech Windows Vista Home Premi
</data>
<data name="AskUpdate" xml:space="preserve">
<value>Instalovat OnTopReplica {0}?</value>
<comment>{0} update version</comment>
</data>
<data name="AskUpdateButtonCancel" xml:space="preserve">
<value>Zrušit aktualizaci
@ -345,6 +228,7 @@ Aplikace OnTopReplica vás vyzve k aktualizaci při dalším startu.</value>
<data name="AskUpdateButtonOk" xml:space="preserve">
<value>Pokračovat
Instalovat OnTopReplica {0}.</value>
<comment>{0} update version</comment>
</data>
<data name="AskUpdateContent" xml:space="preserve">
<value>Nová verze bude automaticky stažena a nainstalována.</value>
@ -353,6 +237,9 @@ Instalovat OnTopReplica {0}.</value>
<value>Nainstalovaná verze: {0}
Dostupná verze: {1}
Velikost pro stažení: {2} bajtů</value>
<comment>{0} installed version number
{1} online available version number
{2} update size</comment>
</data>
<data name="AskUpdateTitle" xml:space="preserve">
<value>Nové aktualizace jsou k dispozici</value>
@ -367,7 +254,7 @@ Velikost pro stažení: {2} bajtů</value>
<value>Kontrola aktualizací se nezdařila.</value>
</data>
<data name="ErrorUpdateContent" xml:space="preserve">
<value>Zdá se, že aplikace OnTopReplica nebyla nainstalována pomocí 'ClickOnce'. Aktualizaci musíte provést ručně (navštivte &lt;a href="http://www.codeplex.com/ontopreplica"&gt;domácí stránku aplikace OnTopReplica&lt;/a&gt;).</value>
<value>Zdá se, že aplikace OnTopReplica nebyla nainstalována pomocí 'ClickOnce'. Aktualizaci musíte provést ručně (navštivte &lt;a href="http://ontopreplica.codeplex.com"&gt;domácí stránku aplikace OnTopReplica&lt;/a&gt;).</value>
</data>
<data name="InfoUpdated" xml:space="preserve">
<value>Aplikace OnTopReplica byla aktualizována.</value>
@ -398,14 +285,8 @@ K návratu do standardního režimu je možné přejít kdykoli dvojklikem na ik
<data name="InfoClickThroughTitle" xml:space="preserve">
<value>Režim "Proklikávání"</value>
</data>
<data name="MenuResizeClickThrough" xml:space="preserve">
<value>Proklikávání</value>
</data>
<data name="MenuResizeClickThroughTT" xml:space="preserve">
<value>Pokud je v celoobrazovkovém režimu oknu nastavena průhlednost, budou jednotlivá kliknutí myší "propadat" do oken za ním.</value>
</data>
<data name="InfoClickThroughNo" xml:space="preserve">
<value>Ne, použij standardní celoobrazovkový režim
<value>Ne.
Režim "Proklikávání" je možné zvolit později v menu</value>
</data>
<data name="InfoClickThroughOk" xml:space="preserve">
@ -424,7 +305,7 @@ Režim "Proklikávání" je možné zvolit později v menu</value>
<value>Jazyk</value>
</data>
<data name="RegionsTitle" xml:space="preserve">
<value>Výřezy</value>
<value>Výřezy:</value>
</data>
<data name="RegionsSaveButton" xml:space="preserve">
<value>Uložit</value>
@ -568,4 +449,10 @@ a:hover {
<data name="MenuChromeTT" xml:space="preserve">
<value>Přepínač, který definuje, zda má aplikace OnTopReplica viditelný okraj okna.</value>
</data>
<data name="MenuClickThrough" xml:space="preserve">
<value>Proklikávání</value>
</data>
<data name="MenuClickThroughTT" xml:space="preserve">
<value>Aplikace OnTopReplica se bude chovat jako průhledná vrstva přes kterou bude možno proklikávat do podložených oken.</value>
</data>
</root>

View file

@ -1,110 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
@ -187,6 +82,7 @@ a:hover {
</data>
<data name="AskUpdate" xml:space="preserve">
<value>Installer OnTopReplica {0}?</value>
<comment>{0} update version</comment>
</data>
<data name="ButtonCancel" xml:space="preserve">
<value>&amp;Annuller</value>
@ -209,9 +105,6 @@ a:hover {
<data name="AboutButtonCancelTT" xml:space="preserve">
<value>Annuller updateringen</value>
</data>
<data name="MenuResizeClickThrough" xml:space="preserve">
<value>Gennemklik</value>
</data>
<data name="MenuWindowsWholeRegion" xml:space="preserve">
<value>- hele -</value>
</data>
@ -234,7 +127,7 @@ a:hover {
<value>Viser OnTopReplica.</value>
</data>
<data name="ErrorUpdateContent" xml:space="preserve">
<value>OnTopReplica blev ikke installeret ved hjælp af 'ClickOnce'. Du bliver nødt til at opdatere manuelt (besøg &lt;a href="http://www.codeplex.com/ontopreplica"&gt;OnTopReplica's hjemmeside&lt;/a&gt;).</value>
<value>OnTopReplica blev ikke installeret ved hjælp af 'ClickOnce'. Du bliver nødt til at opdatere manuelt (besøg &lt;a href="http://ontopreplica.codeplex.com"&gt;OnTopReplica's hjemmeside&lt;/a&gt;).</value>
</data>
<data name="UpdateNow" xml:space="preserve">
<value>Opdater nu!</value>
@ -258,7 +151,7 @@ a:hover {
<value>Altid øverst</value>
</data>
<data name="RegionsTitle" xml:space="preserve">
<value>Områder</value>
<value>Områder:</value>
</data>
<data name="RegionsHeight" xml:space="preserve">
<value>Højde</value>
@ -276,7 +169,9 @@ a:hover {
<value>Genskab</value>
</data>
<data name="InfoClickForwardingContent" xml:space="preserve">
<value>Hvis denne funktion er aktiveret vil OnTopReplica vidersende alle venstr museklik til det klonede vindue (dette gør dig i stand til at udføre basis musefunktioner i det klonede vindue uden at skulle aktivere det).For at afslutte denne funktion skal du højreklikke på OnTopReplica og deaktivere "Click forwarding" i menuen.</value>
<value>Hvis denne funktion er aktiveret vil OnTopReplica vidersende alle venstr museklik til det klonede vindue (dette gør dig i stand til at udføre basis musefunktioner i det klonede vindue uden at skulle aktivere det).
For at afslutte denne funktion skal du højreklikke på OnTopReplica og deaktivere "Click forwarding" i menuen.</value>
</data>
<data name="MenuPosition" xml:space="preserve">
<value>Position</value>
@ -288,7 +183,9 @@ a:hover {
<value>Gem</value>
</data>
<data name="InfoClickThroughInformation" xml:space="preserve">
<value>I denne tilstand vil fuld skærm vinduet opføre sig som et delvist gennemsigtigt lag, hvilket gør dig i stand til at klikke på de underliggende vinduer.For at komme tilbage til normal tilstand, dobbeltklik på OnTopReplica ikonet i meddelelsesområdet på proceslinjen.</value>
<value>I denne tilstand vil fuld skærm vinduet opføre sig som et delvist gennemsigtigt lag, hvilket gør dig i stand til at klikke på de underliggende vinduer.
For at komme tilbage til normal tilstand, dobbeltklik på OnTopReplica ikonet i meddelelsesområdet på proceslinjen.</value>
</data>
<data name="MenuCloseTT" xml:space="preserve">
<value>Lukker OnTopReplica.</value>
@ -341,9 +238,6 @@ a:hover {
<data name="MenuOpacity" xml:space="preserve">
<value>Uigennemsigtighed</value>
</data>
<data name="MenuAutofit" xml:space="preserve">
<value>Autojuster når gendannes</value>
</data>
<data name="InfoUpdatedContent" xml:space="preserve">
<value>For at benytte den opdaterede udgave af OnTopReplica skal du genstarte programmet.</value>
</data>
@ -383,11 +277,9 @@ a:hover {
<data name="InfoClickThroughOk" xml:space="preserve">
<value>Brug gennem klik.</value>
</data>
<data name="MenuResizeClickThroughTT" xml:space="preserve">
<value>Hvis vinduet ikke er helt uigennemsigtigt når fuldskærm aktiveres, vil det lade alle klik "falde igennem"(lige som en gennemsigtigt film).</value>
</data>
<data name="AskUpdateButtonOk" xml:space="preserve">
<value>FortsætInstaller OnTopReplica</value>
<comment>{0} update version</comment>
</data>
<data name="ErrorDetailsAero" xml:space="preserve">
<value>Detaljer om Windows Aero</value>
@ -426,7 +318,7 @@ a:hover {
<value>En letvægts, live, miniature udgave af et vindue du vælger, der altid er øverst.</value>
</data>
<data name="ErrorUnableToCreateThumbnail" xml:space="preserve">
<value>Kan ikke lave miniature</value>
<value>Kan ikke lave miniature.</value>
</data>
<data name="ErrorNoDwmTitle" xml:space="preserve">
<value>Skrivebords komposition ikke understøttet</value>
@ -435,7 +327,8 @@ a:hover {
<value>Kunne ikke passes til vinduet.</value>
</data>
<data name="InfoClickThroughNo" xml:space="preserve">
<value>Nej, brug standard fuldskærmDu kan aktivere gennem klik senere.</value>
<value>Nej.
Du kan aktivere gennem klik senere.</value>
</data>
<data name="MenuOp50TT" xml:space="preserve">
<value>Sætter OnTopReplica til 50% uigennemsigtighed.</value>
@ -451,6 +344,9 @@ a:hover {
</data>
<data name="AskUpdateExpanded" xml:space="preserve">
<value>Installeret version: {0}Tilgængelig version: {1}Download størrelse: {2} bytes</value>
<comment>{0} installed version number
{1} online available version number
{2} update size</comment>
</data>
<data name="Language" xml:space="preserve">
<value>Sprog</value>
@ -486,7 +382,8 @@ a:hover {
<value>Windows Aero effekter er ikke slået til</value>
</data>
<data name="ErrorNoDwm" xml:space="preserve">
<value>Windows Aero effekter er ikke understøttet af dit styresystem.Dette program kræver Windows Vista Home Premium eller bedre.</value>
<value>Windows Aero effekter er ikke understøttet af dit styresystem.
Dette program kræver Windows Vista Home Premium eller bedre.</value>
</data>
<data name="Homepage" xml:space="preserve">
<value>Hjemmeside: www.codeplex.com/ontopreplica.</value>
@ -494,11 +391,8 @@ a:hover {
<data name="MenuPosBottomLeft" xml:space="preserve">
<value>Nederst venstre</value>
</data>
<data name="MenuAutofitTT" xml:space="preserve">
<value>Passer automatisk vinduet til miniaturen når du gendanner det.</value>
</data>
<data name="ErrorGenericInfoText" xml:space="preserve">
<value>Fejl:</value>
<value>Fejl: </value>
</data>
<data name="ErrorGenericTitle" xml:space="preserve">
<value>Fejl</value>
@ -548,4 +442,10 @@ a:hover {
<data name="InfoClickThroughDetails" xml:space="preserve">
<value>Gennem klik virker kun hvis det er blevet aktiveret i gendan undermenuen og hvis vinduet er delvist gennemsigtigt.</value>
</data>
<data name="MenuClickThrough" xml:space="preserve">
<value>Klikke igennem</value>
</data>
<data name="MenuClickThroughTT" xml:space="preserve">
<value>OnTopReplica vil opføre sig som en gennemsigtig film der lader dig klikke igennem til de underliggende vinduer.</value>
</data>
</root>

View file

@ -1,110 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
@ -149,7 +44,7 @@ Tutte le impostazioni saranno perse.</value>
<value>Windows Aero è disponibile soltanto su Windows Vista Home Premium o superiore.</value>
</data>
<data name="ErrorDwmOff" xml:space="preserve">
<value>Il servizio DWM non è attivo.</value>
<value>Il servizio di Desktop Composition Aero non è attivo.</value>
</data>
<data name="ErrorDwmOffContent" xml:space="preserve">
<value>È necessario attivare la "composizione del desktop" (DWM) selezionando "Windows Aero" come tema utilizzato da Windows.
@ -173,7 +68,7 @@ Per farlo, clicca col tasto destro del mouse sul desktop e poi su Personalizza.<
È necessario utilizzare Windows Vista o superiore per avviare OnTopReplica.</value>
</data>
<data name="ErrorNoDwmTitle" xml:space="preserve">
<value>DWM non supportato</value>
<value>Desktop Composition (DWM) non supportato</value>
</data>
<data name="ErrorUnableToCreateThumbnail" xml:space="preserve">
<value>Impossibile clonare la finestra.</value>
@ -182,7 +77,7 @@ Per farlo, clicca col tasto destro del mouse sul desktop e poi su Personalizza.<
<value>Impossibile adattare la finestra.</value>
</data>
<data name="Homepage" xml:space="preserve">
<value>Homepage: www.codeplex.com/ontopreplica.</value>
<value>Sito internet: www.codeplex.com/ontopreplica.</value>
</data>
<data name="MenuAbout" xml:space="preserve">
<value>A proposito di...</value>
@ -190,17 +85,17 @@ Per farlo, clicca col tasto destro del mouse sul desktop e poi su Personalizza.<
<data name="MenuAboutTT" xml:space="preserve">
<value>Nasconde la finestra principale e mostra una schermata di informazioni.</value>
</data>
<data name="MenuAutofit" xml:space="preserve">
<value>Adatta automaticamente</value>
<data name="GroupSwitchModeStatusDisabled" xml:space="preserve">
<value>Seleziona più finestre per attivare.</value>
</data>
<data name="MenuAutofitTT" xml:space="preserve">
<value>Adatta automaticamente la finestra al clone quando viene ridimensionata.</value>
<data name="GroupSwitchModeStatusEnabled" xml:space="preserve">
<value>Modalità Gruppo attivata.</value>
</data>
<data name="MenuClose" xml:space="preserve">
<value>Chiudi</value>
</data>
<data name="MenuCloseTT" xml:space="preserve">
<value>Chiude OnTopReplica.</value>
<value>Termina OnTopReplica.</value>
</data>
<data name="MenuFitDouble" xml:space="preserve">
<value>2:1 Doppio</value>
@ -254,7 +149,7 @@ Per farlo, clicca col tasto destro del mouse sul desktop e poi su Personalizza.<
<value>Apri</value>
</data>
<data name="MenuOpenTT" xml:space="preserve">
<value>Mostra OnTopReplica.</value>
<value>Attiva la finestra di OnTopReplica.</value>
</data>
<data name="MenuPosBottomLeft" xml:space="preserve">
<value>In basso a sinistra</value>
@ -281,7 +176,7 @@ Per farlo, clicca col tasto destro del mouse sul desktop e poi su Personalizza.<
<value>Imposta se, al prossimo avvio di OnTopReplica, debbano essere ripristinati i valori di grandezza e posizione della finestra alla chiusura.</value>
</data>
<data name="MenuReduce" xml:space="preserve">
<value>Riduci ad icona</value>
<value>Minimizza</value>
</data>
<data name="MenuReduceTT" xml:space="preserve">
<value>Riduce OnTopReplica ad un'icona nella barra delle applicazioni.</value>
@ -302,7 +197,7 @@ Per farlo, clicca col tasto destro del mouse sul desktop e poi su Personalizza.<
<value>Ridimensionamento</value>
</data>
<data name="MenuSwitch" xml:space="preserve">
<value>Alla finestra originale</value>
<value>Vai alla finestra originale</value>
</data>
<data name="MenuSwitchTT" xml:space="preserve">
<value>Mostra la finestra originale e nasconde OnTopReplica.</value>
@ -330,6 +225,7 @@ Per farlo, clicca col tasto destro del mouse sul desktop e poi su Personalizza.<
</data>
<data name="AskUpdate" xml:space="preserve">
<value>Installare OnTopReplica {0}?</value>
<comment>{0} update version</comment>
</data>
<data name="AskUpdateButtonCancel" xml:space="preserve">
<value>Annulla aggiornamento
@ -338,6 +234,7 @@ OnTopReplica si aggiornerà in un secondo momento.</value>
<data name="AskUpdateButtonOk" xml:space="preserve">
<value>Continua
Installa OnTopReplica {0}.</value>
<comment>{0} update version</comment>
</data>
<data name="AskUpdateContent" xml:space="preserve">
<value>La nuova versione sarà scaricata ed installata automaticamente.</value>
@ -346,6 +243,9 @@ Installa OnTopReplica {0}.</value>
<value>Versione installata: {0}
Versione disponibile: {1}
Grandezza: {2} bytes</value>
<comment>{0} installed version number
{1} online available version number
{2} update size</comment>
</data>
<data name="AskUpdateTitle" xml:space="preserve">
<value>Aggiornamento disponibile</value>
@ -360,7 +260,7 @@ Grandezza: {2} bytes</value>
<value>Impossibile controllare gli aggiornamenti.</value>
</data>
<data name="ErrorUpdateContent" xml:space="preserve">
<value>Sembra che OnTopReplica non sia stato installato usando 'ClickOnce'. Sarà necessario aggiornare manualmente il programma visitando &lt;a href="http://www.codeplex.com/ontopreplica"&gt;la homepage del progetto&lt;/a&gt;.</value>
<value>Sembra che OnTopReplica non sia stato installato usando 'ClickOnce'. Sarà necessario aggiornare manualmente il programma visitando &lt;a href="http://ontopreplica.codeplex.com"&gt;la homepage del progetto&lt;/a&gt;.</value>
</data>
<data name="InfoUpdated" xml:space="preserve">
<value>OnTopReplica è stato aggiornato.</value>
@ -372,7 +272,7 @@ Grandezza: {2} bytes</value>
<value>Aggiornamento completato</value>
</data>
<data name="InfoUpToDate" xml:space="preserve">
<value>OnTopReplica è aggiornato.</value>
<value>La versione più aggiornata è già installata.</value>
</data>
<data name="InfoUpToDateTitle" xml:space="preserve">
<value>Nessun aggiornamento disponibile</value>
@ -384,25 +284,26 @@ Grandezza: {2} bytes</value>
<value>La modalità "Click-Through" funziona solo se l'opzione è stata attivata e se la finestra è semitrasparente.</value>
</data>
<data name="InfoClickThroughInformation" xml:space="preserve">
<value>In questa modalità la finestra a tutto schermo si comporterà come una maschera semitrasparente che ti permette di cliccarle attraverso, sulle finestre sullo sfondo.
<value>In questa modalità la finestra clonata si comporterà come una maschera semitrasparente che permette di cliccare sulle finestre dietro di essa.
Per tornare alla modalità normale in qualsiasi momento, fai doppio clic sull'icona nella barra delle applicazioni.</value>
Per tornare alla modalità normale in qualsiasi momento, attiva OnTopReplica (dalla barra delle applicazioni).</value>
</data>
<data name="InfoClickThroughTitle" xml:space="preserve">
<value>Modalità Click-Through</value>
</data>
<data name="MenuResizeClickThrough" xml:space="preserve">
<value>Click-Through</value>
<data name="GroupSwitchModeWindows" xml:space="preserve">
<value>Finestre</value>
<comment>Column Header of list, simply refers to available windows to be cloned</comment>
</data>
<data name="MenuResizeClickThroughTT" xml:space="preserve">
<value>Se la finestra non è completamente opaca quando passa a tutto schermo, i clic le passeranno attraverso (come una maschera semitrasparente).</value>
<data name="GroupSwitchModeTitle" xml:space="preserve">
<value>Modalità Gruppo di finestre:</value>
</data>
<data name="InfoClickThroughNo" xml:space="preserve">
<value>No, tutto schermo normale
<value>No, grazie.
Puoi abilitare il Click-Through in futuro</value>
</data>
<data name="InfoClickThroughOk" xml:space="preserve">
<value>Usa Click-Through</value>
<value>Abilita Click-Through</value>
</data>
<data name="MenuClickForwarding" xml:space="preserve">
<value>Inoltro dei clic</value>
@ -417,7 +318,7 @@ Puoi abilitare il Click-Through in futuro</value>
<value>Lingua</value>
</data>
<data name="RegionsTitle" xml:space="preserve">
<value>Regioni</value>
<value>Regioni:</value>
</data>
<data name="RegionsSaveButton" xml:space="preserve">
<value>Salva</value>
@ -444,7 +345,7 @@ Puoi abilitare il Click-Through in futuro</value>
<value>Regioni memorizzate</value>
</data>
<data name="InfoClickForwarding" xml:space="preserve">
<value>Attivare l'inoltro dei clic?</value>
<value>Attivare la modalità di inoltro dei clic?</value>
</data>
<data name="InfoClickForwardingTitle" xml:space="preserve">
<value>Inoltro dei clic</value>
@ -452,7 +353,7 @@ Puoi abilitare il Click-Through in futuro</value>
<data name="InfoClickForwardingContent" xml:space="preserve">
<value>In questa modalità, OnTopReplica inoltrerà tutti i clic del pulsante sinistro sul clone della finestra alla finestra originale (questo permetterà di interagire in maniera basilare con la finestra clonata, senza averla in primo piano).
Per uscire da questa modalità, fai clic col destro su OnTopReplica e disabilita "Inoltro dei clic" dal menu.</value>
Per uscire da questa modalità, usa il tasto ESC.</value>
</data>
<data name="AskSettingReset" xml:space="preserve">
<value>Resettare impostazioni?</value>
@ -561,4 +462,25 @@ a:hover {
<data name="MenuChromeTT" xml:space="preserve">
<value>Abilita o disabilita il bordo della finestra.</value>
</data>
<data name="MenuClickThrough" xml:space="preserve">
<value>Abilita Click-Through</value>
</data>
<data name="MenuClickThroughTT" xml:space="preserve">
<value>OnTopReplica si comporterà come una schermata trasparente, permettendo di cliccare sulle finestre al di sotto di essa.</value>
</data>
<data name="MenuGroupSwitch" xml:space="preserve">
<value>Modalità Gruppo di finestre</value>
</data>
<data name="MenuGroupSwitchTT" xml:space="preserve">
<value>OnTopReplica clonerà automaticamente una finestra di un gruppo, scegliendo quella che non è stata in primo piano da più tempo.</value>
</data>
<data name="GroupSwitchModeEnableButton" xml:space="preserve">
<value>Abilita modalità</value>
</data>
<data name="GroupSwitchModeDisableButton" xml:space="preserve">
<value>Disattiva</value>
</data>
<data name="MenuAdvanced" xml:space="preserve">
<value>Avanzate</value>
</data>
</root>

View file

@ -1,110 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
@ -190,11 +85,11 @@ You must run this application on Windows Vista Home Premium or better.</value>
<data name="MenuAboutTT" xml:space="preserve">
<value>Hides the main window and displays the "about" box.</value>
</data>
<data name="MenuAutofit" xml:space="preserve">
<value>Autofit on resize</value>
<data name="GroupSwitchModeStatusDisabled" xml:space="preserve">
<value>Select multiple windows to enable.</value>
</data>
<data name="MenuAutofitTT" xml:space="preserve">
<value>Automatically fits the window to the thumbnail when you resize it.</value>
<data name="GroupSwitchModeStatusEnabled" xml:space="preserve">
<value>Group switch mode is enabled.</value>
</data>
<data name="MenuClose" xml:space="preserve">
<value>Close</value>
@ -281,10 +176,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>Minimize to tray</value>
<value>Minimize</value>
</data>
<data name="MenuReduceTT" xml:space="preserve">
<value>Reduces OnTopReplica to an icon in the tray.</value>
<value>Minimizes OnTopReplica to the task bar (or the tray).</value>
</data>
<data name="MenuRegion" xml:space="preserve">
<value>Select region...</value>
@ -365,7 +260,7 @@ Download size: {2} bytes</value>
<value>Unable to check for updates.</value>
</data>
<data name="ErrorUpdateContent" xml:space="preserve">
<value>It appears that OnTopReplica wasn't installed using 'ClickOnce'. You'll have to update manually (visit &lt;a href="http://www.codeplex.com/ontopreplica"&gt;OnTopReplica's homepage&lt;/a&gt;).</value>
<value>It appears that OnTopReplica wasn't installed using 'ClickOnce'. You'll have to update manually (visit &lt;a href="http://ontopreplica.codeplex.com"&gt;OnTopReplica's homepage&lt;/a&gt;).</value>
</data>
<data name="InfoUpdated" xml:space="preserve">
<value>OnTopReplica has been updated.</value>
@ -383,7 +278,7 @@ Download size: {2} bytes</value>
<value>No update available</value>
</data>
<data name="InfoClickThrough" xml:space="preserve">
<value>Enable Click-Through fullscreen mode?</value>
<value>Enable Click-Through mode?</value>
</data>
<data name="InfoClickThroughDetails" xml:space="preserve">
<value>Click-through only works if it has been enabled in the Resize submenu and if the window is semi-transparent.</value>
@ -391,26 +286,27 @@ Download size: {2} bytes</value>
<data name="InfoClickThroughInformation" xml:space="preserve">
<value>In this mode the fullscreen window will behave as a partially transparent overlay, allowing you to click on the other windows behind it.
To return to normal mode anytime, double click on the OnTopReplica icon in the tray area.</value>
To return to normal mode anytime, activate OnTopReplica by clicking on the task bar (or the tray icon).</value>
</data>
<data name="InfoClickThroughTitle" xml:space="preserve">
<value>Click-Through mode</value>
</data>
<data name="MenuResizeClickThrough" xml:space="preserve">
<value>Click-Through</value>
<data name="GroupSwitchModeWindows" xml:space="preserve">
<value>Windows</value>
<comment>Column Header of list, simply refers to available windows to be cloned</comment>
</data>
<data name="MenuResizeClickThroughTT" xml:space="preserve">
<value>If the window is not completely opaque when turned to fullscreen mode, it will let all clicks "fall through" (like a transparent overlay).</value>
<data name="GroupSwitchModeTitle" xml:space="preserve">
<value>Group switch mode:</value>
</data>
<data name="InfoClickThroughNo" xml:space="preserve">
<value>No, use standard fullscreen
<value>No, thank you.
You can enable click-through later</value>
</data>
<data name="InfoClickThroughOk" xml:space="preserve">
<value>Use Click-Through</value>
</data>
<data name="MenuClickForwarding" xml:space="preserve">
<value>Click forwarding</value>
<value>Enable Click forwarding</value>
</data>
<data name="MenuClickForwardingTT" xml:space="preserve">
<value>Enable "click forwarding" to the cloned window.</value>
@ -422,7 +318,7 @@ You can enable click-through later</value>
<value>Language</value>
</data>
<data name="RegionsTitle" xml:space="preserve">
<value>Regions</value>
<value>Regions:</value>
</data>
<data name="RegionsSaveButton" xml:space="preserve">
<value>Save</value>
@ -457,7 +353,7 @@ You can enable click-through later</value>
<data name="InfoClickForwardingContent" xml:space="preserve">
<value>If this mode is enabled, OnTopReplica will forward all left mouse clicks to the window that is being cloned (this will allow you to do basic mouse operations on the cloned window without having to activate it).
To exit this mode, right-click on OnTopReplica and disable "Click forwarding" from the menu.</value>
To exit this mode, push ESC.</value>
</data>
<data name="AskSettingReset" xml:space="preserve">
<value>Reset settings?</value>
@ -566,4 +462,25 @@ a:hover {
<data name="MenuChromeTT" xml:space="preserve">
<value>Toggles the display of the window chrome.</value>
</data>
<data name="MenuClickThrough" xml:space="preserve">
<value>Enable Click-Through</value>
</data>
<data name="MenuClickThroughTT" xml:space="preserve">
<value>OnTopReplica will behave like a transparent overlay that lets your clicks through to the windows below.</value>
</data>
<data name="MenuGroupSwitch" xml:space="preserve">
<value>Group Switch mode</value>
</data>
<data name="MenuGroupSwitchTT" xml:space="preserve">
<value>OnTopReplica will automatically clone a window from an user defined group, switching to the one least recently activated to the foreground.</value>
</data>
<data name="GroupSwitchModeEnableButton" xml:space="preserve">
<value>Enable Group mode</value>
</data>
<data name="GroupSwitchModeDisableButton" xml:space="preserve">
<value>Disable</value>
</data>
<data name="MenuAdvanced" xml:space="preserve">
<value>Advanced</value>
</data>
</root>