diff --git a/OnTopReplica/MainForm.Designer.cs b/OnTopReplica/MainForm.Designer.cs index 72855c1..3f3feb0 100644 --- a/OnTopReplica/MainForm.Designer.cs +++ b/OnTopReplica/MainForm.Designer.cs @@ -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 diff --git a/OnTopReplica/MainForm_MenuEvents.cs b/OnTopReplica/MainForm_MenuEvents.cs index 15f7028..98f61a8 100644 --- a/OnTopReplica/MainForm_MenuEvents.cs +++ b/OnTopReplica/MainForm_MenuEvents.cs @@ -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) { diff --git a/OnTopReplica/OnTopReplica.csproj b/OnTopReplica/OnTopReplica.csproj index 495da4f..3445c0f 100644 --- a/OnTopReplica/OnTopReplica.csproj +++ b/OnTopReplica/OnTopReplica.csproj @@ -48,8 +48,8 @@ true publish.htm false - 2 - 2.9.5.%2a + 0 + 3.0.0.%2a false true true @@ -182,6 +182,11 @@ True Strings.da.resx + + True + True + Strings.resx + Strings.it.resx True @@ -234,9 +239,9 @@ Designer - ResXFileCodeGenerator Strings.Designer.cs Designer + ResXFileCodeGenerator True @@ -260,11 +265,6 @@ - - True - True - Strings.resx - Component diff --git a/OnTopReplica/Properties/AssemblyInfo.cs b/OnTopReplica/Properties/AssemblyInfo.cs index 4848486..bb63a90 100644 --- a/OnTopReplica/Properties/AssemblyInfo.cs +++ b/OnTopReplica/Properties/AssemblyInfo.cs @@ -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")] diff --git a/OnTopReplica/SidePanels/GroupSwitchPanel.Designer.cs b/OnTopReplica/SidePanels/GroupSwitchPanel.Designer.cs index 28a66f5..248924d 100644 --- a/OnTopReplica/SidePanels/GroupSwitchPanel.Designer.cs +++ b/OnTopReplica/SidePanels/GroupSwitchPanel.Designer.cs @@ -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 diff --git a/OnTopReplica/SidePanels/GroupSwitchPanel.cs b/OnTopReplica/SidePanels/GroupSwitchPanel.cs index 752579f..8dd02fe 100644 --- a/OnTopReplica/SidePanels/GroupSwitchPanel.cs +++ b/OnTopReplica/SidePanels/GroupSwitchPanel.cs @@ -18,8 +18,8 @@ namespace OnTopReplica.SidePanels { LoadWindowList(); labelStatus.Text = (ParentForm.MessagePumpManager.Get().IsActive) ? - "Group switching is active." : - "Select multiple windows to enable."; + Strings.GroupSwitchModeStatusEnabled : + Strings.GroupSwitchModeStatusDisabled; } private void LoadWindowList() { diff --git a/OnTopReplica/SidePanels/RegionPanel.Designer.cs b/OnTopReplica/SidePanels/RegionPanel.Designer.cs index a803575..e39dab9 100644 --- a/OnTopReplica/SidePanels/RegionPanel.Designer.cs +++ b/OnTopReplica/SidePanels/RegionPanel.Designer.cs @@ -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 // diff --git a/OnTopReplica/Strings.Designer.cs b/OnTopReplica/Strings.Designer.cs index 2dbe313..ebacaa0 100644 --- a/OnTopReplica/Strings.Designer.cs +++ b/OnTopReplica/Strings.Designer.cs @@ -97,41 +97,41 @@ namespace OnTopReplica { } /// - /// Looks up a localized string similar to <html> - /// <head> - /// <style type="text/css"> - ///body { - /// font-family: Segoe UI, Arial, sans-serif; - /// font-size: 0.8em; - /// margin: 0; - ///padding: 0.75em; - ///} - ///h1 { - /// font-size: 1.4em; - /// font-weight: bold; - /// - /// margin: 1em 0 0.4em 0; - /// padding: 0; - ///} - ///p { - /// margin: 0.5em 0 0.5em 1em; - /// padding: 0; - ///} - ///a { - /// font-weight: bold; - /// color: blue; - ///} - ///a:hover { - /// color: red; - ///} - /// </style> - /// </head> - /// - /// <body> - /// - /// <h1>License</h1> - /// - /// <p><b>OnTopReplica</b> is licensed under the <a href="http://opensource.org/licenses [rest of string was truncated]";. + /// Looks up a localized string similar to <html> + /// <head> + /// <style type="text/css"> + ///body { + /// font-family: Segoe UI, Arial, sans-serif; + /// font-size: 0.8em; + /// margin: 0; + ///padding: 0.75em; + ///} + ///h1 { + /// font-size: 1.4em; + /// font-weight: bold; + /// + /// margin: 1em 0 0.4em 0; + /// padding: 0; + ///} + ///p { + /// margin: 0.5em 0 0.5em 1em; + /// padding: 0; + ///} + ///a { + /// font-weight: bold; + /// color: blue; + ///} + ///a:hover { + /// color: red; + ///} + /// </style> + /// </head> + /// + /// <body> + /// + /// <h1>License</h1> + /// + /// <p><b>OnTopReplica</b> is licensed under the <a href="http://opensource.org/licenses/ms-rl.html">Microsoft Reciprocal [rest of string was truncated]";. /// internal static string AboutDetails { get { @@ -436,7 +436,7 @@ namespace OnTopReplica { } /// - /// Looks up a localized string similar to It appears that OnTopReplica wasn't installed using 'ClickOnce'. You'll have to update manually (visit <a href="http://www.codeplex.com/ontopreplica">OnTopReplica's homepage</a>).. + /// Looks up a localized string similar to It appears that OnTopReplica wasn't installed using 'ClickOnce'. You'll have to update manually (visit <a href="http://ontopreplica.codeplex.com">OnTopReplica's homepage</a>).. /// internal static string ErrorUpdateContent { get { @@ -516,6 +516,60 @@ namespace OnTopReplica { } } + /// + /// Looks up a localized string similar to Disable. + /// + internal static string GroupSwitchModeDisableButton { + get { + return ResourceManager.GetString("GroupSwitchModeDisableButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Enable Group mode. + /// + internal static string GroupSwitchModeEnableButton { + get { + return ResourceManager.GetString("GroupSwitchModeEnableButton", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Select multiple windows to enable.. + /// + internal static string GroupSwitchModeStatusDisabled { + get { + return ResourceManager.GetString("GroupSwitchModeStatusDisabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Group switch mode is enabled.. + /// + internal static string GroupSwitchModeStatusEnabled { + get { + return ResourceManager.GetString("GroupSwitchModeStatusEnabled", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Group switch mode:. + /// + internal static string GroupSwitchModeTitle { + get { + return ResourceManager.GetString("GroupSwitchModeTitle", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Windows. + /// + internal static string GroupSwitchModeWindows { + get { + return ResourceManager.GetString("GroupSwitchModeWindows", resourceCulture); + } + } + /// /// Looks up a localized string similar to Homepage: www.codeplex.com/ontopreplica.. /// @@ -537,7 +591,7 @@ namespace OnTopReplica { /// /// 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 "Click forwarding" from the menu.. + ///To exit this mode, push ESC.. /// internal static string InfoClickForwardingContent { get { @@ -555,7 +609,7 @@ namespace OnTopReplica { } /// - /// Looks up a localized string similar to Enable Click-Through fullscreen mode?. + /// Looks up a localized string similar to Enable Click-Through mode?. /// internal static string InfoClickThrough { get { @@ -575,7 +629,7 @@ namespace OnTopReplica { /// /// 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).. /// internal static string InfoClickThroughInformation { get { @@ -584,7 +638,7 @@ namespace OnTopReplica { } /// - /// 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. /// internal static string InfoClickThroughNo { @@ -684,20 +738,11 @@ namespace OnTopReplica { } /// - /// Looks up a localized string similar to Autofit on resize. + /// Looks up a localized string similar to Advanced. /// - internal static string MenuAutofit { + internal static string MenuAdvanced { get { - return ResourceManager.GetString("MenuAutofit", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to Automatically fits the window to the thumbnail when you resize it.. - /// - internal static string MenuAutofitTT { - get { - return ResourceManager.GetString("MenuAutofitTT", resourceCulture); + return ResourceManager.GetString("MenuAdvanced", resourceCulture); } } @@ -720,7 +765,7 @@ namespace OnTopReplica { } /// - /// Looks up a localized string similar to Click forwarding. + /// Looks up a localized string similar to Enable Click forwarding. /// internal static string MenuClickForwarding { get { @@ -737,6 +782,24 @@ namespace OnTopReplica { } } + /// + /// Looks up a localized string similar to Enable Click-Through. + /// + internal static string MenuClickThrough { + get { + return ResourceManager.GetString("MenuClickThrough", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OnTopReplica will behave like a transparent overlay that lets your clicks through to the windows below.. + /// + internal static string MenuClickThroughTT { + get { + return ResourceManager.GetString("MenuClickThroughTT", resourceCulture); + } + } + /// /// Looks up a localized string similar to Close. /// @@ -818,6 +881,24 @@ namespace OnTopReplica { } } + /// + /// Looks up a localized string similar to Group Switch mode. + /// + internal static string MenuGroupSwitch { + get { + return ResourceManager.GetString("MenuGroupSwitch", resourceCulture); + } + } + + /// + /// 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.. + /// + internal static string MenuGroupSwitchTT { + get { + return ResourceManager.GetString("MenuGroupSwitchTT", resourceCulture); + } + } + /// /// Looks up a localized string similar to 100% (opaque). /// @@ -999,7 +1080,7 @@ namespace OnTopReplica { } /// - /// Looks up a localized string similar to Minimize to tray. + /// Looks up a localized string similar to Minimize. /// internal static string MenuReduce { get { @@ -1008,7 +1089,7 @@ namespace OnTopReplica { } /// - /// 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).. /// internal static string MenuReduceTT { get { @@ -1061,24 +1142,6 @@ namespace OnTopReplica { } } - /// - /// Looks up a localized string similar to Click-Through. - /// - internal static string MenuResizeClickThrough { - get { - return ResourceManager.GetString("MenuResizeClickThrough", resourceCulture); - } - } - - /// - /// Looks up a localized string similar to If the window is not completely opaque when turned to fullscreen mode, it will let all clicks "fall through" (like a transparent overlay).. - /// - internal static string MenuResizeClickThroughTT { - get { - return ResourceManager.GetString("MenuResizeClickThroughTT", resourceCulture); - } - } - /// /// Looks up a localized string similar to Switch to window. /// @@ -1197,7 +1260,7 @@ namespace OnTopReplica { } /// - /// Looks up a localized string similar to Regions. + /// Looks up a localized string similar to Regions:. /// internal static string RegionsTitle { get { diff --git a/OnTopReplica/Strings.cs.resx b/OnTopReplica/Strings.cs.resx index fa6c98a..0b9ff9c 100644 --- a/OnTopReplica/Strings.cs.resx +++ b/OnTopReplica/Strings.cs.resx @@ -1,571 +1,458 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - OnTopReplica - - - Resetovat nastavení okna? - - - &Resetovat -Všechna nastavení budou ztracena. - - - Operace "Resetovat okno" je vhodná k inicializaci všech nastavení pokud jste například ztratili kontrolu nad oknem nebo jej přesunuli mimo viditelnou plochu obrazovky. - - - Resetovat - - - &Storno - - - Autor: Lorenz Cuno Klopfenstein. - - - Označte výřez pomocí myši. - - - Podrobnosti k Windows Aero - - - Windows Aero je k dispozici pouze na systémech Windows Vista Home Premium a vyšších. - - - Funkce 'Desktop Composition' není povolena. - - - Pro pokračování je nutné povolit funkci "Desktop Composition" výběrem tématu 'Windows Aero' v nastavení vzhledu Windows. - -Uvedené lze provést například kliknutním pravým tlačítkem myši na plochu a zvolením akce "Přizpůsobit". - - - Podrobnosti k chybě - - - Chyba: - - - Zvolené okno bylo zavřeno nebo již není platné z jiných důvodů. - - - Chyba - - - Funkce 'Desktop Composition' není ve vašem systému podporována. -Tuto aplikaci je možné spouštět pouze na systémech Windows Vista Home Premium a vyšších. - - - Funkce Desktop Composition není podporována - - - Nelze vytvořit náhled. - - - Nelze vložit okno. - - - Domácí stránka: www.codeplex.com/ontopreplica. - - - O aplikaci... - - - Skryje hlavní okno a zobrazí informace "O aplikaci". - - - Přizpůsobit po změně velikosti - - - Automaticky přizpůsobuje rozměr okna velikosti náhledu při změně velikosti okna. - - - Zavřít - - - Ukončí aplikaci OnTopReplica. - - - 2:1 Dvojnásobná - - - Celá obrazovka - - - 1:2 Poloviční - - - 1:1 Jako zdroj - - - 1:4 Čtvrtinová - - - Glass efekt - - - Přepíná "glass efekt" okna. - - - 100% (neprůhledné) - - - Nastaví aplikaci OnTopReplica jako neprůhlednou. - - - 25% - - - Nastaví průhlednost na 25%. - - - 50% - - - Nastaví průhlednost na 50%. - - - 75% - - - Nastaví průhlednost na 75%. - - - Průhlednost - - - Otevřít - - - Zobrazí aplikaci OnTopReplica. - - - Dolní levý roh - - - Dolní pravý roh - - - Umístění - - - Automatická pozice aplikace OnTopReplica vzhledem k obrazovce. - - - Horní levý roh - - - Horní pravý rok - - - Ukládat pozici a velikost okna - - - Přepínač, který definuje, zda si má aplikace OnTopReplica ukládat poslední pozici a velikost okna a obnovovat tyto údaje po restartování aplikace. - - - Minimalizovat do traye - - - Minimalizuje aplikaci OnTopReplica jako ikonu v systémové oblasti. - - - Vybrat výřez... - - - Přepne do režimu "výřezu", který umožní zvolit pouze část okna jako náhled. - - - Resetovat nastavení okna - - - Resetuje nastavení a pozici okna aplikace OnTopReplica. - - - Velikost - - - Přepnout do okna - - - Přepne do zdrojového okna a skryje aplikaci OnTopReplica. - - - Vybrat okno - - - - žádné - - - - Zobrazí seznam oken, které je možné použít jako zdroj. - - - Začněte klepnutím sem pravým tlačítkem myši... - - - Nenáročný a instantní náhled libovolného otevřeného okna (nebo jeho výřezu) v systému. - - - Aplikace OnTopReplica automaticky kontroluje dostupné aktualizace. Během této operace nedochází k žádnému přenosu či ukládání uživatelských informací. - - - Zkontroluj aktualizace - - - Instalovat OnTopReplica {0}? - - - Zrušit aktualizaci -Aplikace OnTopReplica vás vyzve k aktualizaci při dalším startu. - - - Pokračovat -Instalovat OnTopReplica {0}. - - - Nová verze bude automaticky stažena a nainstalována. - - - Nainstalovaná verze: {0} -Dostupná verze: {1} -Velikost pro stažení: {2} bajtů - - - Nové aktualizace jsou k dispozici - - - Podrobnosti - - - Náhled nebyl nahrán. - - - Kontrola aktualizací se nezdařila. - - - Zdá se, že aplikace OnTopReplica nebyla nainstalována pomocí 'ClickOnce'. Aktualizaci musíte provést ručně (navštivte <a href="http://www.codeplex.com/ontopreplica">domácí stránku aplikace OnTopReplica</a>). - - - Aplikace OnTopReplica byla aktualizována. - - - Pro použití aktualizací je potřeba aplikaci OnTopReplica restartovat. - - - Aktualizace proběhla úspěšně - - - OnTopReplica je aktuální. - - - Žádná aktualizace není k dispozici. - - - Povolit "Proklikávání" v celoobrazovkovém režimu? - - - "Proklikávání" funguje pouze pokud je povoleno v menu a okno má nastavenou průhlednost. - - - V tomto režimu se bude okno roztažené přes celou obrazovku chovat jako poloprůhledná vrstva, přes kterou bude možné "proklikávat" na podložená okna. - -K návratu do standardního režimu je možné přejít kdykoli dvojklikem na ikonu v oznamovací oblasti (traye). - - - Režim "Proklikávání" - - - Proklikávání - - - Pokud je v celoobrazovkovém režimu oknu nastavena průhlednost, budou jednotlivá kliknutí myší "propadat" do oken za ním. - - - Ne, použij standardní celoobrazovkový režim -Režim "Proklikávání" je možné zvolit později v menu - - - Používat "Proklikávání" - - - Přeposílání kliknutí - - - Zapne "přeposílání kliknutí" do zdrojového okna. - - - Opustit celoobrazovkový režim - - - Jazyk - - - Výřezy - - - Uložit - - - Smazat - - - Aktuální výřez: - - - Šířka - - - Výška - - - Reset - - - Hotovo - - - Uložené výřezy - - - Přejete si povolit "přeposílání kliknutí"? - - - Přeposílání kliknutí - - - V tomto režimu aplikace OnTopReplica přeposílá kliknutí levého tlačítka myši do zdrojového okna (je tedy možné provádět základní ovládání zdrojového okna bez nutnosti jej aktivovat). - -Ukončit režim "přeposíání kliknutí" je možné opětovným vyvolání položky v menu. - - - Resetovat nastavení? - - - Operace "Resetovat nastavení" smaže veškerá uživatelská nastavení aplikace OnTopReplica a vrátí nastavení do stejného stavu jako po instalaci (všechny uložené informace, jako například uložené výřezy oken, budou ztraceny). - - - Resetovat nastavení - - - Přerušit aktualizaci. - - - Zobrazit podrobnosti o aplikaci OnTopReplica. - - - Resetovat nastavení OnTopReplica. - - - Aktualizovat OnTopReplica. - - - <html> - <head> - <style type="text/css"> -body { - font-family: Segoe UI, Arial, sans-serif; - font-size: 0.8em; - margin: 0; -padding: 0.75em; -} -h1 { - font-size: 1.4em; - font-weight: bold; - - margin: 1em 0 0.4em 0; - padding: 0; -} -p { - margin: 0.5em 0 0.5em 1em; - padding: 0; -} -a { - font-weight: bold; - color: blue; -} -a:hover { - color: red; -} - </style> - </head> - - <body> - - <h1>Licence</h1> - - <p><b>OnTopReplica</b> je šířena pod <a href="http://opensource.org/licenses/ms-rl.html">Microsoft Reciprocal License (Ms-RL)</a> licencí.</p> - <p>Původní zdrojový kód je možné nalézt na <a href="http://www.codeplex.com/ontopreplica">domovské stránce projektu na serveru CodePlex</a>.</p> - - <h1>Autoři a zásluhy</h1> - - <p>Původní inspirací pro OnTopReplica byla aplikace <a href="http://insentient.net">Switcher</a> a další aplikace založeny na DWM.</p> - - <p>Všechny Vista ovládací prvky jsou součástí <a href="http://www.codeplex.com/windowsformsaero">knihovny WindowsFormsAero</a> pro .NET.</p> - - <p>Některé ukázkové kódy byly převzaty z <a href="http://www.ookii.org">Ookii</a> ze serveru Channel9.</p> - - <p>Třída NativeToolstripRenderer byla převzata z <a href="http://wp.asztal.net/2007/12/vista-style-menus-in-dotnet/">asztal.net</a>.</p> - - <p>Některé ikony pocházejí z <a href="http://www.vistaico.com">VistaICO.com</a> a balíčku ikon Xiao.</p> - - </body> -</html> - - - - celé okno - - - - Aplikace OnTopReplica přes celou obrazovku - - - Režim - - - Vždy na vrchu - - - Nastaví aplikaci OnTopReplica, aby zůstávala vždy na vrchu. - - - Proklikávání - - - Aplikace OnTopReplica se bude chovat jako průhledná vrstva přes kterou bude možno proklikávat do podložených oken. - - - Standardní - - - Aplikace OnTopReplica se bude chovat jako běžné okno. Jiná okna mohou překrýt okno aplikace. - - - Okraj - - - Přepínač, který definuje, zda má aplikace OnTopReplica viditelný okraj okna. - + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + OnTopReplica + + + Resetovat nastavení okna? + + + &Resetovat +Všechna nastavení budou ztracena. + + + Operace "Resetovat okno" je vhodná k inicializaci všech nastavení pokud jste například ztratili kontrolu nad oknem nebo jej přesunuli mimo viditelnou plochu obrazovky. + + + Resetovat + + + &Storno + + + Autor: Lorenz Cuno Klopfenstein. + + + Označte výřez pomocí myši. + + + Podrobnosti k Windows Aero + + + Windows Aero je k dispozici pouze na systémech Windows Vista Home Premium a vyšších. + + + Funkce 'Desktop Composition' není povolena. + + + Pro pokračování je nutné povolit funkci "Desktop Composition" výběrem tématu 'Windows Aero' v nastavení vzhledu Windows. + +Uvedené lze provést například kliknutním pravým tlačítkem myši na plochu a zvolením akce "Přizpůsobit". + + + Podrobnosti k chybě + + + Chyba: + + + Zvolené okno bylo zavřeno nebo již není platné z jiných důvodů. + + + Chyba + + + Funkce 'Desktop Composition' není ve vašem systému podporována. +Tuto aplikaci je možné spouštět pouze na systémech Windows Vista Home Premium a vyšších. + + + Funkce Desktop Composition není podporována + + + Nelze vytvořit náhled. + + + Nelze vložit okno. + + + Domácí stránka: www.codeplex.com/ontopreplica. + + + O aplikaci... + + + Skryje hlavní okno a zobrazí informace "O aplikaci". + + + Zavřít + + + Ukončí aplikaci OnTopReplica. + + + 2:1 Dvojnásobná + + + Celá obrazovka + + + 1:2 Poloviční + + + 1:1 Jako zdroj + + + 1:4 Čtvrtinová + + + Glass efekt + + + Přepíná "glass efekt" okna. + + + 100% (neprůhledné) + + + Nastaví aplikaci OnTopReplica jako neprůhlednou. + + + 25% + + + Nastaví průhlednost na 25%. + + + 50% + + + Nastaví průhlednost na 50%. + + + 75% + + + Nastaví průhlednost na 75%. + + + Průhlednost + + + Otevřít + + + Zobrazí aplikaci OnTopReplica. + + + Dolní levý roh + + + Dolní pravý roh + + + Umístění + + + Automatická pozice aplikace OnTopReplica vzhledem k obrazovce. + + + Horní levý roh + + + Horní pravý rok + + + Ukládat pozici a velikost okna + + + Přepínač, který definuje, zda si má aplikace OnTopReplica ukládat poslední pozici a velikost okna a obnovovat tyto údaje po restartování aplikace. + + + Minimalizovat do traye + + + Minimalizuje aplikaci OnTopReplica jako ikonu v systémové oblasti. + + + Vybrat výřez... + + + Přepne do režimu "výřezu", který umožní zvolit pouze část okna jako náhled. + + + Resetovat nastavení okna + + + Resetuje nastavení a pozici okna aplikace OnTopReplica. + + + Velikost + + + Přepnout do okna + + + Přepne do zdrojového okna a skryje aplikaci OnTopReplica. + + + Vybrat okno + + + - žádné - + + + Zobrazí seznam oken, které je možné použít jako zdroj. + + + Začněte klepnutím sem pravým tlačítkem myši... + + + Nenáročný a instantní náhled libovolného otevřeného okna (nebo jeho výřezu) v systému. + + + Aplikace OnTopReplica automaticky kontroluje dostupné aktualizace. Během této operace nedochází k žádnému přenosu či ukládání uživatelských informací. + + + Zkontroluj aktualizace + + + Instalovat OnTopReplica {0}? + {0} update version + + + Zrušit aktualizaci +Aplikace OnTopReplica vás vyzve k aktualizaci při dalším startu. + + + Pokračovat +Instalovat OnTopReplica {0}. + {0} update version + + + Nová verze bude automaticky stažena a nainstalována. + + + Nainstalovaná verze: {0} +Dostupná verze: {1} +Velikost pro stažení: {2} bajtů + {0} installed version number +{1} online available version number +{2} update size + + + Nové aktualizace jsou k dispozici + + + Podrobnosti + + + Náhled nebyl nahrán. + + + Kontrola aktualizací se nezdařila. + + + Zdá se, že aplikace OnTopReplica nebyla nainstalována pomocí 'ClickOnce'. Aktualizaci musíte provést ručně (navštivte <a href="http://ontopreplica.codeplex.com">domácí stránku aplikace OnTopReplica</a>). + + + Aplikace OnTopReplica byla aktualizována. + + + Pro použití aktualizací je potřeba aplikaci OnTopReplica restartovat. + + + Aktualizace proběhla úspěšně + + + OnTopReplica je aktuální. + + + Žádná aktualizace není k dispozici. + + + Povolit "Proklikávání" v celoobrazovkovém režimu? + + + "Proklikávání" funguje pouze pokud je povoleno v menu a okno má nastavenou průhlednost. + + + V tomto režimu se bude okno roztažené přes celou obrazovku chovat jako poloprůhledná vrstva, přes kterou bude možné "proklikávat" na podložená okna. + +K návratu do standardního režimu je možné přejít kdykoli dvojklikem na ikonu v oznamovací oblasti (traye). + + + Režim "Proklikávání" + + + Ne. +Režim "Proklikávání" je možné zvolit později v menu + + + Používat "Proklikávání" + + + Přeposílání kliknutí + + + Zapne "přeposílání kliknutí" do zdrojového okna. + + + Opustit celoobrazovkový režim + + + Jazyk + + + Výřezy: + + + Uložit + + + Smazat + + + Aktuální výřez: + + + Šířka + + + Výška + + + Reset + + + Hotovo + + + Uložené výřezy + + + Přejete si povolit "přeposílání kliknutí"? + + + Přeposílání kliknutí + + + V tomto režimu aplikace OnTopReplica přeposílá kliknutí levého tlačítka myši do zdrojového okna (je tedy možné provádět základní ovládání zdrojového okna bez nutnosti jej aktivovat). + +Ukončit režim "přeposíání kliknutí" je možné opětovným vyvolání položky v menu. + + + Resetovat nastavení? + + + Operace "Resetovat nastavení" smaže veškerá uživatelská nastavení aplikace OnTopReplica a vrátí nastavení do stejného stavu jako po instalaci (všechny uložené informace, jako například uložené výřezy oken, budou ztraceny). + + + Resetovat nastavení + + + Přerušit aktualizaci. + + + Zobrazit podrobnosti o aplikaci OnTopReplica. + + + Resetovat nastavení OnTopReplica. + + + Aktualizovat OnTopReplica. + + + <html> + <head> + <style type="text/css"> +body { + font-family: Segoe UI, Arial, sans-serif; + font-size: 0.8em; + margin: 0; +padding: 0.75em; +} +h1 { + font-size: 1.4em; + font-weight: bold; + + margin: 1em 0 0.4em 0; + padding: 0; +} +p { + margin: 0.5em 0 0.5em 1em; + padding: 0; +} +a { + font-weight: bold; + color: blue; +} +a:hover { + color: red; +} + </style> + </head> + + <body> + + <h1>Licence</h1> + + <p><b>OnTopReplica</b> je šířena pod <a href="http://opensource.org/licenses/ms-rl.html">Microsoft Reciprocal License (Ms-RL)</a> licencí.</p> + <p>Původní zdrojový kód je možné nalézt na <a href="http://www.codeplex.com/ontopreplica">domovské stránce projektu na serveru CodePlex</a>.</p> + + <h1>Autoři a zásluhy</h1> + + <p>Původní inspirací pro OnTopReplica byla aplikace <a href="http://insentient.net">Switcher</a> a další aplikace založeny na DWM.</p> + + <p>Všechny Vista ovládací prvky jsou součástí <a href="http://www.codeplex.com/windowsformsaero">knihovny WindowsFormsAero</a> pro .NET.</p> + + <p>Některé ukázkové kódy byly převzaty z <a href="http://www.ookii.org">Ookii</a> ze serveru Channel9.</p> + + <p>Třída NativeToolstripRenderer byla převzata z <a href="http://wp.asztal.net/2007/12/vista-style-menus-in-dotnet/">asztal.net</a>.</p> + + <p>Některé ikony pocházejí z <a href="http://www.vistaico.com">VistaICO.com</a> a balíčku ikon Xiao.</p> + + </body> +</html> + + + - celé okno - + + + Aplikace OnTopReplica přes celou obrazovku + + + Režim + + + Vždy na vrchu + + + Nastaví aplikaci OnTopReplica, aby zůstávala vždy na vrchu. + + + Proklikávání + + + Aplikace OnTopReplica se bude chovat jako průhledná vrstva přes kterou bude možno proklikávat do podložených oken. + + + Standardní + + + Aplikace OnTopReplica se bude chovat jako běžné okno. Jiná okna mohou překrýt okno aplikace. + + + Okraj + + + Přepínač, který definuje, zda má aplikace OnTopReplica viditelný okraj okna. + + + Proklikávání + + + Aplikace OnTopReplica se bude chovat jako průhledná vrstva přes kterou bude možno proklikávat do podložených oken. + \ No newline at end of file diff --git a/OnTopReplica/Strings.da.resx b/OnTopReplica/Strings.da.resx index ea4be4f..d61ff01 100644 --- a/OnTopReplica/Strings.da.resx +++ b/OnTopReplica/Strings.da.resx @@ -1,132 +1,27 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - OnTopReplica - - - - ingen - - - - Sæt OnTopReplica automatiskt på den aktuelle skærm. - - + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + OnTopReplica + + + - ingen - + + + Sæt OnTopReplica automatiskt på den aktuelle skærm. + + <html> <head> <style type="text/css"> @@ -177,375 +72,380 @@ a:hover { <p>Lidt ikoner fra <a href="http://www.vistaico.com">VistaICO.com</a> og Xiao ikon sættet.</p> </body> -</html> - - - Nederst højre - - - 1:1 Pas til vinduet - - - Installer OnTopReplica {0}? - - - &Annuller - - - 1:4 kvart - - - 100% (uigennemsigtig) - - - Krom - - - 50% - - - Klikke igennem - - - Annuller updateringen - - - Gennemklik - - - - hele - - - - 2:1 dobbelt - - - &NulstilAlle ændringer vil blive tabt. - - - Annuller opdateringenOnTopReplica påminder dig igen næste gang det startes. - - - Vinduet du har valgt er lukket eller er ikke gyldigt mere. - - - Viser en liste af vinduer du kan bruge som miniature kilde. - - - Viser OnTopReplica. - - - OnTopReplica blev ikke installeret ved hjælp af 'ClickOnce'. Du bliver nødt til at opdatere manuelt (besøg <a href="http://www.codeplex.com/ontopreplica">OnTopReplica's hjemmeside</a>). - - - Opdater nu! - - - Vis detaljer om OnTopReplica. - - - Luk - - - Aktiver "click forwarding" til det klonede vindue - - - Ingen opdateringer er tilgængelige - - - Windows Aero er kun tilgængelig op Windows Vista Home Premium eller højere. - - - Altid øverst - - - Områder - - - Højde - - - Vælg område... - - - Vælg vindue - - - Slet - - - Genskab - - - 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. - - - Position - - - Gemte områder - - - Gem - - - 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. - - - Lukker OnTopReplica. - - - Gendan sidste position og størrelse - - - Standard - - - Skjuler hoved vinduet og viser om boxen. - - - Bredde - - - Tilstande - - - Gennem klik tilstand - - - Højreklik her for at starte... - - - Nulstiller OnTopReplica indstillingerne og hoved vinduet. - - - Nulstil indstillinger? - - - Nulstil alle OnTopReplica indstillinger. - - - Nulstil vinduet helt? - - - Nulstil vinduet - - - Nulstil indstillingerne - - - Nulstil - - - Nulstil - - - Uigennemsigtighed - - - Autojuster når gendannes - - - For at benytte den opdaterede udgave af OnTopReplica skal du genstarte programmet. - - - Du skal aktiverere "Windows Aero" som tema i Windows.For at gøre dette skal du højreklikke på skrivebordet og vælge personlige indstillinger. - - - Click forwarding - - - Click forwarding - - - Skift til vindue - - - Skifter til kilde vinduet og gemmer OnTopReplica. - - - Skifter til "område tilstand", der tillader dig at vælge et begrænset område af kildens vindue som miniature. - - - Vælger om OnTopReplica skal gemme sidst brugte størrelse og position, til næste gang det starter op. - - - Vælger Chrome kanten rundt om vinduet til/fra - - - Vælger "glas tilstand" til/fra - - - Ønsker du at aktivere "click forwarding"? - - - Ønskes gennem klik i fuldskærms tilstand? - - - Brug gennem klik. - - - Hvis vinduet ikke er helt uigennemsigtigt når fuldskærm aktiveres, vil det lade alle klik "falde igennem"(lige som en gennemsigtigt film). - - - FortsætInstaller OnTopReplica - - - Detaljer om Windows Aero - - - Fejl detaljer. - - - Detaljer - - - Tegn områder med musen - - - åben - - - Kan bruges til at nulstille alle indstillinger hvis du mister kontrollen over vinduet eller hvis det er flyttet uden for skærmen. - - - Opdatering tilgængelig. - - - Dette nulstiller OnTopReplica til standard indstillingerne (alle gemte informationer, som gemte områder, vil blive slettet). - - - OnTopReplice er opdateret. - - - Om... - - - Den nye version vil automatiskt blive downloaded og installeret. - - - En letvægts, live, miniature udgave af et vindue du vælger, der altid er øverst. - - - Kan ikke lave miniature - - - Skrivebords komposition ikke understøttet - - - Kunne ikke passes til vinduet. - - - Nej, brug standard fuldskærmDu kan aktivere gennem klik senere. - - - Sætter OnTopReplica til 50% uigennemsigtighed. - - - Sætter OnTopReplica til 75% uigennemsigtighed. - - - Sætter OnTopReplica til 25% uigennemsigtighed. - - - Får OnTopReplica til altid at være øverst. - - - Installeret version: {0}Tilgængelig version: {1}Download størrelse: {2} bytes - - - Sprog - - - Ingen miniature indlæst. - - - Minimere OnTopReplica til systembakken. - - - Kan ikke søge efter opdateringer. - - - Minimer til systembakken. - - - Færdig - - - Øverst højre - - - Sæt OnTopReplica til at være helt uigennemsigtig. - - - Øverst venstre - - - Glas - - - Windows Aero effekter er ikke slået til - - - Windows Aero effekter er ikke understøttet af dit styresystem.Dette program kræver Windows Vista Home Premium eller bedre. - - - Hjemmeside: www.codeplex.com/ontopreplica. - - - Nederst venstre - - - Passer automatisk vinduet til miniaturen når du gendanner det. - - - Fejl: - - - Fejl - - - Lavet af: Lorenz Cuno Klopfenstein. - - - Fuld skærm - - - OnTopReplica vil opføre sig som en gennemsigtig film der lader dig klikke igennem til de underliggende vinduer. - - - Opfører sig som et almindeligt vindue. Du kan trække andre viduer ind over OnTopReplica. - - - Afslut fuldskærm tilstand. - - - OnTopReplica fuld skærm - - - OnTopReplica er blevet opdateret. - - - Aktuelt område: - - - OnTopReplica checker automatiskt for opdateringer. Der bliver ikke registreret nogen data på noget tidspunkt. - - - Opdater OnTopReplica nu. - - - Opdatering fuldført - - - 1:2 halv - - - 25% - - - 75% - - - Gennem klik virker kun hvis det er blevet aktiveret i gendan undermenuen og hvis vinduet er delvist gennemsigtigt. - +</html> + + + Nederst højre + + + 1:1 Pas til vinduet + + + Installer OnTopReplica {0}? + {0} update version + + + &Annuller + + + 1:4 kvart + + + 100% (uigennemsigtig) + + + Krom + + + 50% + + + Klikke igennem + + + Annuller updateringen + + + - hele - + + + 2:1 dobbelt + + + &NulstilAlle ændringer vil blive tabt. + + + Annuller opdateringenOnTopReplica påminder dig igen næste gang det startes. + + + Vinduet du har valgt er lukket eller er ikke gyldigt mere. + + + Viser en liste af vinduer du kan bruge som miniature kilde. + + + Viser OnTopReplica. + + + OnTopReplica blev ikke installeret ved hjælp af 'ClickOnce'. Du bliver nødt til at opdatere manuelt (besøg <a href="http://ontopreplica.codeplex.com">OnTopReplica's hjemmeside</a>). + + + Opdater nu! + + + Vis detaljer om OnTopReplica. + + + Luk + + + Aktiver "click forwarding" til det klonede vindue + + + Ingen opdateringer er tilgængelige + + + Windows Aero er kun tilgængelig op Windows Vista Home Premium eller højere. + + + Altid øverst + + + Områder: + + + Højde + + + Vælg område... + + + Vælg vindue + + + Slet + + + Genskab + + + 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. + + + Position + + + Gemte områder + + + Gem + + + 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. + + + Lukker OnTopReplica. + + + Gendan sidste position og størrelse + + + Standard + + + Skjuler hoved vinduet og viser om boxen. + + + Bredde + + + Tilstande + + + Gennem klik tilstand + + + Højreklik her for at starte... + + + Nulstiller OnTopReplica indstillingerne og hoved vinduet. + + + Nulstil indstillinger? + + + Nulstil alle OnTopReplica indstillinger. + + + Nulstil vinduet helt? + + + Nulstil vinduet + + + Nulstil indstillingerne + + + Nulstil + + + Nulstil + + + Uigennemsigtighed + + + For at benytte den opdaterede udgave af OnTopReplica skal du genstarte programmet. + + + Du skal aktiverere "Windows Aero" som tema i Windows.For at gøre dette skal du højreklikke på skrivebordet og vælge personlige indstillinger. + + + Click forwarding + + + Click forwarding + + + Skift til vindue + + + Skifter til kilde vinduet og gemmer OnTopReplica. + + + Skifter til "område tilstand", der tillader dig at vælge et begrænset område af kildens vindue som miniature. + + + Vælger om OnTopReplica skal gemme sidst brugte størrelse og position, til næste gang det starter op. + + + Vælger Chrome kanten rundt om vinduet til/fra + + + Vælger "glas tilstand" til/fra + + + Ønsker du at aktivere "click forwarding"? + + + Ønskes gennem klik i fuldskærms tilstand? + + + Brug gennem klik. + + + FortsætInstaller OnTopReplica + {0} update version + + + Detaljer om Windows Aero + + + Fejl detaljer. + + + Detaljer + + + Tegn områder med musen + + + åben + + + Kan bruges til at nulstille alle indstillinger hvis du mister kontrollen over vinduet eller hvis det er flyttet uden for skærmen. + + + Opdatering tilgængelig. + + + Dette nulstiller OnTopReplica til standard indstillingerne (alle gemte informationer, som gemte områder, vil blive slettet). + + + OnTopReplice er opdateret. + + + Om... + + + Den nye version vil automatiskt blive downloaded og installeret. + + + En letvægts, live, miniature udgave af et vindue du vælger, der altid er øverst. + + + Kan ikke lave miniature. + + + Skrivebords komposition ikke understøttet + + + Kunne ikke passes til vinduet. + + + Nej. +Du kan aktivere gennem klik senere. + + + Sætter OnTopReplica til 50% uigennemsigtighed. + + + Sætter OnTopReplica til 75% uigennemsigtighed. + + + Sætter OnTopReplica til 25% uigennemsigtighed. + + + Får OnTopReplica til altid at være øverst. + + + Installeret version: {0}Tilgængelig version: {1}Download størrelse: {2} bytes + {0} installed version number +{1} online available version number +{2} update size + + + Sprog + + + Ingen miniature indlæst. + + + Minimere OnTopReplica til systembakken. + + + Kan ikke søge efter opdateringer. + + + Minimer til systembakken. + + + Færdig + + + Øverst højre + + + Sæt OnTopReplica til at være helt uigennemsigtig. + + + Øverst venstre + + + Glas + + + Windows Aero effekter er ikke slået til + + + Windows Aero effekter er ikke understøttet af dit styresystem. +Dette program kræver Windows Vista Home Premium eller bedre. + + + Hjemmeside: www.codeplex.com/ontopreplica. + + + Nederst venstre + + + Fejl: + + + Fejl + + + Lavet af: Lorenz Cuno Klopfenstein. + + + Fuld skærm + + + OnTopReplica vil opføre sig som en gennemsigtig film der lader dig klikke igennem til de underliggende vinduer. + + + Opfører sig som et almindeligt vindue. Du kan trække andre viduer ind over OnTopReplica. + + + Afslut fuldskærm tilstand. + + + OnTopReplica fuld skærm + + + OnTopReplica er blevet opdateret. + + + Aktuelt område: + + + OnTopReplica checker automatiskt for opdateringer. Der bliver ikke registreret nogen data på noget tidspunkt. + + + Opdater OnTopReplica nu. + + + Opdatering fuldført + + + 1:2 halv + + + 25% + + + 75% + + + Gennem klik virker kun hvis det er blevet aktiveret i gendan undermenuen og hvis vinduet er delvist gennemsigtigt. + + + Klikke igennem + + + OnTopReplica vil opføre sig som en gennemsigtig film der lader dig klikke igennem til de underliggende vinduer. + \ No newline at end of file diff --git a/OnTopReplica/Strings.it.resx b/OnTopReplica/Strings.it.resx index a3dbe1f..bcc713f 100644 --- a/OnTopReplica/Strings.it.resx +++ b/OnTopReplica/Strings.it.resx @@ -1,564 +1,486 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - OnTopReplica - - - Ripristinare completamente la finestra? - - + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + OnTopReplica + + + Ripristinare completamente la finestra? + + &Ripristina -Tutte le impostazioni saranno perse. - - - Può essere usato se si è perso il controllo della finestra o si è spostata oltre ai bordi dello schermo. - - - Ripristino - - - &Annulla - - - Creato da: Lorenz Cuno Klopfenstein. - - - Disegna una regione usando il mouse. - - - Dettagli su Windows Aero - - - Windows Aero è disponibile soltanto su Windows Vista Home Premium o superiore. - - - Il servizio DWM non è attivo. - - +Tutte le impostazioni saranno perse. + + + Può essere usato se si è perso il controllo della finestra o si è spostata oltre ai bordi dello schermo. + + + Ripristino + + + &Annulla + + + Creato da: Lorenz Cuno Klopfenstein. + + + Disegna una regione usando il mouse. + + + Dettagli su Windows Aero + + + Windows Aero è disponibile soltanto su Windows Vista Home Premium o superiore. + + + Il servizio di Desktop Composition Aero non è attivo. + + È necessario attivare la "composizione del desktop" (DWM) selezionando "Windows Aero" come tema utilizzato da Windows. -Per farlo, clicca col tasto destro del mouse sul desktop e poi su Personalizza. - - - Dettagli errore - - - Errore: - - - Sembra che la finestra selezionata sia stata chiusa o che non sia più valida. - - - Errore - - +Per farlo, clicca col tasto destro del mouse sul desktop e poi su Personalizza. + + + Dettagli errore + + + Errore: + + + Sembra che la finestra selezionata sia stata chiusa o che non sia più valida. + + + Errore + + La "composzione del desktop" non è supportata dal tuo sistema operativo. -È necessario utilizzare Windows Vista o superiore per avviare OnTopReplica. - - - DWM non supportato - - - Impossibile clonare la finestra. - - - Impossibile adattare la finestra. - - - Homepage: www.codeplex.com/ontopreplica. - - - A proposito di... - - - Nasconde la finestra principale e mostra una schermata di informazioni. - - - Adatta automaticamente - - - Adatta automaticamente la finestra al clone quando viene ridimensionata. - - - Chiudi - - - Chiude OnTopReplica. - - - 2:1 Doppio - - - Tutto schermo - - - 1:2 Metà - - - 1:1 Clone esatto - - - 1:4 Quarto - - - Effetto vetro - - - Abilita o disabilita l'effetto vetro. - - - 100% (opaco) - - - Imposta OnTopReplica come finestra completamente opaca. - - - 25% - - - Imposta l'opacità di OnTopReplica al 25%. - - - 50% - - - Imposta l'opacità di OnTopReplica al 50%. - - - 75% - - - Imposta l'opacità di OnTopReplica al 75%. - - - Opacità - - - Apri - - - Mostra OnTopReplica. - - - In basso a sinistra - - - In basso a destra - - - Posizione - - - Posiziona automaticamente OnTopReplica sul monitor corrente. - - - In alto a sinistra - - - In alto a destra - - - Ripristina posizione e grandezza - - - Imposta se, al prossimo avvio di OnTopReplica, debbano essere ripristinati i valori di grandezza e posizione della finestra alla chiusura. - - - Riduci ad icona - - - Riduce OnTopReplica ad un'icona nella barra delle applicazioni. - - - Seleziona regione... - - - Passa alla modalità di "selezione di regione", che permette di limitare la porzione di finestra che viene clonata. - - - Reimposta finestra - - - Reimposta OnTopReplica e la sua finestra principale. - - - Ridimensionamento - - - Alla finestra originale - - - Mostra la finestra originale e nasconde OnTopReplica. - - - Seleziona finestra - - - - nessuna - - - - Mostra una lista di finestre che è possibile clonare. - - - Clic destro qui per iniziare... - - - Una copia leggera, in tempo reale e sempre in primo piano di una finestra a tua scelta. - - - OnTopReplica controlla automaticamente se sono presenti aggiornamenti. - - - Aggiorna! - - - Installare OnTopReplica {0}? - - +È necessario utilizzare Windows Vista o superiore per avviare OnTopReplica. + + + Desktop Composition (DWM) non supportato + + + Impossibile clonare la finestra. + + + Impossibile adattare la finestra. + + + Sito internet: www.codeplex.com/ontopreplica. + + + A proposito di... + + + Nasconde la finestra principale e mostra una schermata di informazioni. + + + Seleziona più finestre per attivare. + + + Modalità Gruppo attivata. + + + Chiudi + + + Termina OnTopReplica. + + + 2:1 Doppio + + + Tutto schermo + + + 1:2 Metà + + + 1:1 Clone esatto + + + 1:4 Quarto + + + Effetto vetro + + + Abilita o disabilita l'effetto vetro. + + + 100% (opaco) + + + Imposta OnTopReplica come finestra completamente opaca. + + + 25% + + + Imposta l'opacità di OnTopReplica al 25%. + + + 50% + + + Imposta l'opacità di OnTopReplica al 50%. + + + 75% + + + Imposta l'opacità di OnTopReplica al 75%. + + + Opacità + + + Apri + + + Attiva la finestra di OnTopReplica. + + + In basso a sinistra + + + In basso a destra + + + Posizione + + + Posiziona automaticamente OnTopReplica sul monitor corrente. + + + In alto a sinistra + + + In alto a destra + + + Ripristina posizione e grandezza + + + Imposta se, al prossimo avvio di OnTopReplica, debbano essere ripristinati i valori di grandezza e posizione della finestra alla chiusura. + + + Minimizza + + + Riduce OnTopReplica ad un'icona nella barra delle applicazioni. + + + Seleziona regione... + + + Passa alla modalità di "selezione di regione", che permette di limitare la porzione di finestra che viene clonata. + + + Reimposta finestra + + + Reimposta OnTopReplica e la sua finestra principale. + + + Ridimensionamento + + + Vai alla finestra originale + + + Mostra la finestra originale e nasconde OnTopReplica. + + + Seleziona finestra + + + - nessuna - + + + Mostra una lista di finestre che è possibile clonare. + + + Clic destro qui per iniziare... + + + Una copia leggera, in tempo reale e sempre in primo piano di una finestra a tua scelta. + + + OnTopReplica controlla automaticamente se sono presenti aggiornamenti. + + + Aggiorna! + + + Installare OnTopReplica {0}? + {0} update version + + Annulla aggiornamento -OnTopReplica si aggiornerà in un secondo momento. - - +OnTopReplica si aggiornerà in un secondo momento. + + Continua -Installa OnTopReplica {0}. - - - La nuova versione sarà scaricata ed installata automaticamente. - - +Installa OnTopReplica {0}. + {0} update version + + + La nuova versione sarà scaricata ed installata automaticamente. + + Versione installata: {0} Versione disponibile: {1} -Grandezza: {2} bytes - - - Aggiornamento disponibile - - - Dettagli - - - Nessuna finestra clonata al momento. - - - Impossibile controllare gli aggiornamenti. - - - Sembra che OnTopReplica non sia stato installato usando 'ClickOnce'. Sarà necessario aggiornare manualmente il programma visitando <a href="http://www.codeplex.com/ontopreplica">la homepage del progetto</a>. - - - OnTopReplica è stato aggiornato. - - - Per utilizzare la nuova versione di OnTopReplica è necessario riavviare l'applicazione. - - - Aggiornamento completato - - - OnTopReplica è aggiornato. - - - Nessun aggiornamento disponibile - - - Attivare la modalità Click-Through? - - - La modalità "Click-Through" funziona solo se l'opzione è stata attivata e se la finestra è semitrasparente. - - - In questa modalità la finestra a tutto schermo si comporterà come una maschera semitrasparente che ti permette di cliccarle attraverso, sulle finestre sullo sfondo. +Grandezza: {2} bytes + {0} installed version number +{1} online available version number +{2} update size + + + Aggiornamento disponibile + + + Dettagli + + + Nessuna finestra clonata al momento. + + + Impossibile controllare gli aggiornamenti. + + + Sembra che OnTopReplica non sia stato installato usando 'ClickOnce'. Sarà necessario aggiornare manualmente il programma visitando <a href="http://ontopreplica.codeplex.com">la homepage del progetto</a>. + + + OnTopReplica è stato aggiornato. + + + Per utilizzare la nuova versione di OnTopReplica è necessario riavviare l'applicazione. + + + Aggiornamento completato + + + La versione più aggiornata è già installata. + + + Nessun aggiornamento disponibile + + + Attivare la modalità Click-Through? + + + La modalità "Click-Through" funziona solo se l'opzione è stata attivata e se la finestra è semitrasparente. + + + 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. - - - Modalità Click-Through - - - Click-Through - - - Se la finestra non è completamente opaca quando passa a tutto schermo, i clic le passeranno attraverso (come una maschera semitrasparente). - - - No, tutto schermo normale -Puoi abilitare il Click-Through in futuro - - - Usa Click-Through - - - Inoltro dei clic - - - Attiva la modalità di "inoltro dei clic" alla finestra clonata. - - - Esci da tutto schermo - - - Lingua - - - Regioni - - - Salva - - - Cancella - - - Regione corrente: - - - Largh. - - - Altezz. - - - Reset - - - Chiudi - - - Regioni memorizzate - - - Attivare l'inoltro dei clic? - - - Inoltro dei clic - - +Per tornare alla modalità normale in qualsiasi momento, attiva OnTopReplica (dalla barra delle applicazioni). + + + Modalità Click-Through + + + Finestre + Column Header of list, simply refers to available windows to be cloned + + + Modalità Gruppo di finestre: + + + No, grazie. +Puoi abilitare il Click-Through in futuro + + + Abilita Click-Through + + + Inoltro dei clic + + + Attiva la modalità di "inoltro dei clic" alla finestra clonata. + + + Esci da tutto schermo + + + Lingua + + + Regioni: + + + Salva + + + Cancella + + + Regione corrente: + + + Largh. + + + Altezz. + + + Reset + + + Chiudi + + + Regioni memorizzate + + + Attivare la modalità di inoltro dei clic? + + + Inoltro dei clic + + 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. - - - Resettare impostazioni? - - - Questa procedura resetterà tutte le impostazioni di OnTopReplica e cancellerà tutte le informazioni memorizzate (come, ad esempio, le regioni salvate). - - - Reimposta - - - Annulla il processo di aggiornamento. - - - Mostra dettagli su OnTopReplica. - - - Resetta tutte le impostazioni di OnTopReplica. - - - Aggiorna OnTopReplica ora. - - - <html> - <head> - <style type="text/css"> -body { - font-family: Segoe UI, Arial, sans-serif; - font-size: 0.8em; - margin: 0; -padding: 0.75em; -} -h1 { - font-size: 1.4em; - font-weight: bold; - - margin: 1em 0 0.4em 0; - padding: 0; -} -p { - margin: 0.5em 0 0.5em 1em; - padding: 0; -} -a { - font-weight: bold; - color: blue; -} -a:hover { - color: red; -} - </style> - </head> - - <body> - - <h1>Licenza d'utilizzo</h1> - - <p><b>OnTopReplica</b> è rilasciato sotto la licenza <a href="http://opensource.org/licenses/ms-rl.html">Microsoft Reciprocal License (Ms-RL)</a>.</p> - <p>Il codice sorgente originale del programma è disponibile sulla <a href="http://www.codeplex.com/ontopreplica">homepage del progetto su CodePlex</a>.</p> - - <h1>Credits</h1> - - <p>OnTopReplica è stato inspirato da <a href="http://insentient.net">Switcher</a> ed altre applicazioni basate su DWM.</p> - - <p>I controlli utente specifici per Windows Vista sono parte della libreria <a href="http://www.codeplex.com/windowsformsaero">WindowsFormsAero</a> per .NET.</p> - - <p>Qualche riga di codice d'esempio presa da <a href="http://www.ookii.org">Ookii</a> su Channel9.</p> - - <p>La classe NativeToolstripRenderer è stata presa da <a href="http://wp.asztal.net/2007/12/vista-style-menus-in-dotnet/">asztal.net</a>.</p> - - <p>Alcune delle icone sono state prese da <a href="http://www.vistaico.com">VistaICO.com</a> e dal set di icone Xiao.</p> - - </body> -</html> - - - - intera - - - - OnTopReplica a pieno schermo - - - Modalità - - - Sempre in cima - - - OnTopReplica sarà sempre la finestra sopra a tutte le altre. - - - Click through - - - OnTopReplica si comporterà come uno schermo trasparente, che permette di cliccare sulle finestre al di sotto. - - - Normale - - - Si comporta come una finestra normale. Puoi portare altre finestre sopra OnTopReplica. - - - Bordo - - - Abilita o disabilita il bordo della finestra. - +Per uscire da questa modalità, usa il tasto ESC. + + + Resettare impostazioni? + + + Questa procedura resetterà tutte le impostazioni di OnTopReplica e cancellerà tutte le informazioni memorizzate (come, ad esempio, le regioni salvate). + + + Reimposta + + + Annulla il processo di aggiornamento. + + + Mostra dettagli su OnTopReplica. + + + Resetta tutte le impostazioni di OnTopReplica. + + + Aggiorna OnTopReplica ora. + + + <html> + <head> + <style type="text/css"> +body { + font-family: Segoe UI, Arial, sans-serif; + font-size: 0.8em; + margin: 0; +padding: 0.75em; +} +h1 { + font-size: 1.4em; + font-weight: bold; + + margin: 1em 0 0.4em 0; + padding: 0; +} +p { + margin: 0.5em 0 0.5em 1em; + padding: 0; +} +a { + font-weight: bold; + color: blue; +} +a:hover { + color: red; +} + </style> + </head> + + <body> + + <h1>Licenza d'utilizzo</h1> + + <p><b>OnTopReplica</b> è rilasciato sotto la licenza <a href="http://opensource.org/licenses/ms-rl.html">Microsoft Reciprocal License (Ms-RL)</a>.</p> + <p>Il codice sorgente originale del programma è disponibile sulla <a href="http://www.codeplex.com/ontopreplica">homepage del progetto su CodePlex</a>.</p> + + <h1>Credits</h1> + + <p>OnTopReplica è stato inspirato da <a href="http://insentient.net">Switcher</a> ed altre applicazioni basate su DWM.</p> + + <p>I controlli utente specifici per Windows Vista sono parte della libreria <a href="http://www.codeplex.com/windowsformsaero">WindowsFormsAero</a> per .NET.</p> + + <p>Qualche riga di codice d'esempio presa da <a href="http://www.ookii.org">Ookii</a> su Channel9.</p> + + <p>La classe NativeToolstripRenderer è stata presa da <a href="http://wp.asztal.net/2007/12/vista-style-menus-in-dotnet/">asztal.net</a>.</p> + + <p>Alcune delle icone sono state prese da <a href="http://www.vistaico.com">VistaICO.com</a> e dal set di icone Xiao.</p> + + </body> +</html> + + + - intera - + + + OnTopReplica a pieno schermo + + + Modalità + + + Sempre in cima + + + OnTopReplica sarà sempre la finestra sopra a tutte le altre. + + + Click through + + + OnTopReplica si comporterà come uno schermo trasparente, che permette di cliccare sulle finestre al di sotto. + + + Normale + + + Si comporta come una finestra normale. Puoi portare altre finestre sopra OnTopReplica. + + + Bordo + + + Abilita o disabilita il bordo della finestra. + + + Abilita Click-Through + + + OnTopReplica si comporterà come una schermata trasparente, permettendo di cliccare sulle finestre al di sotto di essa. + + + Modalità Gruppo di finestre + + + OnTopReplica clonerà automaticamente una finestra di un gruppo, scegliendo quella che non è stata in primo piano da più tempo. + + + Abilita modalità + + + Disattiva + + + Avanzate + \ No newline at end of file diff --git a/OnTopReplica/Strings.resx b/OnTopReplica/Strings.resx index b2d5202..6ea6f10 100644 --- a/OnTopReplica/Strings.resx +++ b/OnTopReplica/Strings.resx @@ -1,569 +1,486 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - OnTopReplica - - - Reset window completely? - - + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + OnTopReplica + + + Reset window completely? + + &Reset -All settings will be lost. - - - Can be used to reset all settings if you lost control over the window or moved it beyond the screen boundary. - - - Reset - - - &Cancel - - - Created by: Lorenz Cuno Klopfenstein. - - - Draw regions using mouse. - - - Details on Windows Aero - - - Windows Aero is only available on Windows Vista Home Premium or higher. - - - 'Desktop Composition' is not enabled. - - +All settings will be lost. + + + Can be used to reset all settings if you lost control over the window or moved it beyond the screen boundary. + + + Reset + + + &Cancel + + + Created by: Lorenz Cuno Klopfenstein. + + + Draw regions using mouse. + + + Details on Windows Aero + + + Windows Aero is only available on Windows Vista Home Premium or higher. + + + 'Desktop Composition' is not enabled. + + You must enable desktop composition, by selecting 'Windows Aero' as the theme used by Windows. -To do so, right-click on the desktop and click on Personalize. - - - Error details - - - Error: - - - It appears that the selected window has been closed or is not valid anymore. - - - Error - - +To do so, right-click on the desktop and click on Personalize. + + + Error details + + + Error: + + + It appears that the selected window has been closed or is not valid anymore. + + + Error + + 'Desktop Composition' is not supported on your Operating System. -You must run this application on Windows Vista Home Premium or better. - - - Desktop Composition unsupported - - - Unable to create thumbnail. - - - Unable to fit window. - - - Homepage: www.codeplex.com/ontopreplica. - - - About... - - - Hides the main window and displays the "about" box. - - - Autofit on resize - - - Automatically fits the window to the thumbnail when you resize it. - - - Close - - - Closes OnTopReplica. - - - 2:1 Double - - - Fullscreen - - - 1:2 Half - - - 1:1 Fit to window - - - 1:4 Quarter - - - Glass - - - Toggles "glass mode" on and off. - - - 100% (opaque) - - - Sets OnTopReplica to be completely opaque. - - - 25% - - - Sets OnTopReplica to 25% opacity. - - - 50% - - - Sets OnTopReplica to 50% opacity. - - - 75% - - - Sets OnTopReplica to 75% opacity. - - - Opacity - - - Open - - - Displays OnTopReplica. - - - Bottom Left - - - Bottom Right - - - Position - - - Automatically position OnTopReplica on the current screen. - - - Top Left - - - Top Right - - - Recall last position and size - - - Toggles whether OnTopReplica should store its last position and size and use them when it is restarted. - - - Minimize to tray - - - Reduces OnTopReplica to an icon in the tray. - - - Select region... - - - Switches to "region mode", that allows you to select a limited region of the source's window as thumbnail. - - - Reset window - - - Resets OnTopReplica settings and its main window. - - - Resize - - - Switch to window - - - Switches to the source window and hides OnTopReplica. - - - Select window - - - - none - - - - Displays a list of window you can select as thumbnail source. - - - Right-click here to start... - - - A lightweight, real-time, always on top thumbnail of a window of your choice. - - - OnTopReplica automatically checks for updates. No information is logged at any point. - - - Update now! - - - Install OnTopReplica {0}? - {0} update version - - +You must run this application on Windows Vista Home Premium or better. + + + Desktop Composition unsupported + + + Unable to create thumbnail. + + + Unable to fit window. + + + Homepage: www.codeplex.com/ontopreplica. + + + About... + + + Hides the main window and displays the "about" box. + + + Select multiple windows to enable. + + + Group switch mode is enabled. + + + Close + + + Closes OnTopReplica. + + + 2:1 Double + + + Fullscreen + + + 1:2 Half + + + 1:1 Fit to window + + + 1:4 Quarter + + + Glass + + + Toggles "glass mode" on and off. + + + 100% (opaque) + + + Sets OnTopReplica to be completely opaque. + + + 25% + + + Sets OnTopReplica to 25% opacity. + + + 50% + + + Sets OnTopReplica to 50% opacity. + + + 75% + + + Sets OnTopReplica to 75% opacity. + + + Opacity + + + Open + + + Displays OnTopReplica. + + + Bottom Left + + + Bottom Right + + + Position + + + Automatically position OnTopReplica on the current screen. + + + Top Left + + + Top Right + + + Recall last position and size + + + Toggles whether OnTopReplica should store its last position and size and use them when it is restarted. + + + Minimize + + + Minimizes OnTopReplica to the task bar (or the tray). + + + Select region... + + + Switches to "region mode", that allows you to select a limited region of the source's window as thumbnail. + + + Reset window + + + Resets OnTopReplica settings and its main window. + + + Resize + + + Switch to window + + + Switches to the source window and hides OnTopReplica. + + + Select window + + + - none - + + + Displays a list of window you can select as thumbnail source. + + + Right-click here to start... + + + A lightweight, real-time, always on top thumbnail of a window of your choice. + + + OnTopReplica automatically checks for updates. No information is logged at any point. + + + Update now! + + + Install OnTopReplica {0}? + {0} update version + + Cancel update -OnTopReplica will prompt you the next time it is started. - - +OnTopReplica will prompt you the next time it is started. + + Proceed -Install OnTopReplica {0}. - {0} update version - - - The new version will be automatically downloaded and installed. - - +Install OnTopReplica {0}. + {0} update version + + + The new version will be automatically downloaded and installed. + + Installed version: {0} Available version: {1} -Download size: {2} bytes - {0} installed version number -{1} online available version number -{2} update size - - - Update available - - - Details - - - No thumbnail loaded. - - - Unable to check for updates. - - - It appears that OnTopReplica wasn't installed using 'ClickOnce'. You'll have to update manually (visit <a href="http://www.codeplex.com/ontopreplica">OnTopReplica's homepage</a>). - - - OnTopReplica has been updated. - - - In order to use the updated version of OnTopReplica you'll have to restart the application. - - - Update successful - - - OnTopReplica is up to date. - - - No update available - - - Enable Click-Through fullscreen mode? - - - Click-through only works if it has been enabled in the Resize submenu and if the window is semi-transparent. - - +Download size: {2} bytes + {0} installed version number +{1} online available version number +{2} update size + + + Update available + + + Details + + + No thumbnail loaded. + + + Unable to check for updates. + + + It appears that OnTopReplica wasn't installed using 'ClickOnce'. You'll have to update manually (visit <a href="http://ontopreplica.codeplex.com">OnTopReplica's homepage</a>). + + + OnTopReplica has been updated. + + + In order to use the updated version of OnTopReplica you'll have to restart the application. + + + Update successful + + + OnTopReplica is up to date. + + + No update available + + + Enable Click-Through mode? + + + Click-through only works if it has been enabled in the Resize submenu and if the window is semi-transparent. + + 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. - - - Click-Through mode - - - Click-Through - - - If the window is not completely opaque when turned to fullscreen mode, it will let all clicks "fall through" (like a transparent overlay). - - - No, use standard fullscreen -You can enable click-through later - - - Use Click-Through - - - Click forwarding - - - Enable "click forwarding" to the cloned window. - - - Quit fullscreen mode - - - Language - - - Regions - - - Save - - - Delete - - - Current region: - - - Width - - - Height - - - Reset - - - Done - - - Stored regions - - - Do you want to enable "click forwarding"? - - - Click forwarding - - +To return to normal mode anytime, activate OnTopReplica by clicking on the task bar (or the tray icon). + + + Click-Through mode + + + Windows + Column Header of list, simply refers to available windows to be cloned + + + Group switch mode: + + + No, thank you. +You can enable click-through later + + + Use Click-Through + + + Enable Click forwarding + + + Enable "click forwarding" to the cloned window. + + + Quit fullscreen mode + + + Language + + + Regions: + + + Save + + + Delete + + + Current region: + + + Width + + + Height + + + Reset + + + Done + + + Stored regions + + + Do you want to enable "click forwarding"? + + + Click forwarding + + 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. - - - Reset settings? - - - This will erase all settings of OnTopReplica, returning it to the original state right after installation (all saved information, like stored regions, will be lost). - - - Reset settings - - - Abort update process. - - - Show details about OnTopReplica. - - - Reset all OnTopReplica settings. - - - Update OnTopReplica now. - - - <html> - <head> - <style type="text/css"> -body { - font-family: Segoe UI, Arial, sans-serif; - font-size: 0.8em; - margin: 0; -padding: 0.75em; -} -h1 { - font-size: 1.4em; - font-weight: bold; - - margin: 1em 0 0.4em 0; - padding: 0; -} -p { - margin: 0.5em 0 0.5em 1em; - padding: 0; -} -a { - font-weight: bold; - color: blue; -} -a:hover { - color: red; -} - </style> - </head> - - <body> - - <h1>License</h1> - - <p><b>OnTopReplica</b> is licensed under the <a href="http://opensource.org/licenses/ms-rl.html">Microsoft Reciprocal License (Ms-RL)</a>.</p> - <p>The original source code can be found on the <a href="http://www.codeplex.com/ontopreplica">project's homepage on CodePlex</a>.</p> - - <h1>Credits</h1> - - <p>OnTopReplica was inspired by <a href="http://insentient.net">Switcher</a> and other DWM based applications.</p> - - <p>All Vista controls are part of the <a href="http://www.codeplex.com/windowsformsaero">WindowsFormsAero library</a> for .NET.</p> - - <p>Some example code taken from <a href="http://www.ookii.org">Ookii</a> on Channel9.</p> - - <p>NativeToolstripRenderer class taken from <a href="http://wp.asztal.net/2007/12/vista-style-menus-in-dotnet/">asztal.net</a>.</p> - - <p>Some icons from <a href="http://www.vistaico.com">VistaICO.com</a> and the Xiao icon set.</p> - - </body> -</html> - - - - whole - - - - OnTopReplica fullscreen - - - Mode - - - Always on top - - - Forces OnTopReplica to stay always on top. - - - Click through - - - OnTopReplica will behave like a transparent overlay that lets your clicks through to the windows below. - - - Standard - - - Behaves like an ordinary window. You can bring other windows above OnTopReplica. - - - Chrome - - - Toggles the display of the window chrome. - +To exit this mode, push ESC. + + + Reset settings? + + + This will erase all settings of OnTopReplica, returning it to the original state right after installation (all saved information, like stored regions, will be lost). + + + Reset settings + + + Abort update process. + + + Show details about OnTopReplica. + + + Reset all OnTopReplica settings. + + + Update OnTopReplica now. + + + <html> + <head> + <style type="text/css"> +body { + font-family: Segoe UI, Arial, sans-serif; + font-size: 0.8em; + margin: 0; +padding: 0.75em; +} +h1 { + font-size: 1.4em; + font-weight: bold; + + margin: 1em 0 0.4em 0; + padding: 0; +} +p { + margin: 0.5em 0 0.5em 1em; + padding: 0; +} +a { + font-weight: bold; + color: blue; +} +a:hover { + color: red; +} + </style> + </head> + + <body> + + <h1>License</h1> + + <p><b>OnTopReplica</b> is licensed under the <a href="http://opensource.org/licenses/ms-rl.html">Microsoft Reciprocal License (Ms-RL)</a>.</p> + <p>The original source code can be found on the <a href="http://www.codeplex.com/ontopreplica">project's homepage on CodePlex</a>.</p> + + <h1>Credits</h1> + + <p>OnTopReplica was inspired by <a href="http://insentient.net">Switcher</a> and other DWM based applications.</p> + + <p>All Vista controls are part of the <a href="http://www.codeplex.com/windowsformsaero">WindowsFormsAero library</a> for .NET.</p> + + <p>Some example code taken from <a href="http://www.ookii.org">Ookii</a> on Channel9.</p> + + <p>NativeToolstripRenderer class taken from <a href="http://wp.asztal.net/2007/12/vista-style-menus-in-dotnet/">asztal.net</a>.</p> + + <p>Some icons from <a href="http://www.vistaico.com">VistaICO.com</a> and the Xiao icon set.</p> + + </body> +</html> + + + - whole - + + + OnTopReplica fullscreen + + + Mode + + + Always on top + + + Forces OnTopReplica to stay always on top. + + + Click through + + + OnTopReplica will behave like a transparent overlay that lets your clicks through to the windows below. + + + Standard + + + Behaves like an ordinary window. You can bring other windows above OnTopReplica. + + + Chrome + + + Toggles the display of the window chrome. + + + Enable Click-Through + + + OnTopReplica will behave like a transparent overlay that lets your clicks through to the windows below. + + + Group Switch mode + + + OnTopReplica will automatically clone a window from an user defined group, switching to the one least recently activated to the foreground. + + + Enable Group mode + + + Disable + + + Advanced + \ No newline at end of file