Update description strings

This commit is contained in:
Jeremy Wu 2020-04-22 20:26:09 +10:00
parent 28d67c8c81
commit 9f1377619d
95 changed files with 374 additions and 374 deletions

2
.gitignore vendored
View file

@ -285,7 +285,7 @@ paket-files/
# New to Visual Studio
*.VC.db
## Flow.Launcher specific
## Flow Launcher specific
Output/*
/Python.Runtime.dll
Thumbs.db

View file

@ -36,7 +36,7 @@ namespace Flow.Launcher.Core.Configuration
#endif
IndicateDeletion(DataLocation.PortableDataPath);
MessageBox.Show("Flow.Launcher needs to restart to finish disabling portable mode, " +
MessageBox.Show("Flow Launcher needs to restart to finish disabling portable mode, " +
"after the restart your portable data profile will be deleted and roaming data profile kept");
UpdateManager.RestartApp(Constant.ApplicationFileName);
@ -64,7 +64,7 @@ namespace Flow.Launcher.Core.Configuration
#endif
IndicateDeletion(DataLocation.RoamingDataPath);
MessageBox.Show("Flow.Launcher needs to restart to finish enabling portable mode, " +
MessageBox.Show("Flow Launcher needs to restart to finish enabling portable mode, " +
"after the restart your roaming data profile will be deleted and portable data profile kept");
UpdateManager.RestartApp(Constant.ApplicationFileName);
@ -142,7 +142,7 @@ namespace Flow.Launcher.Core.Configuration
///<summary>
///This method should be run at first before all methods during start up and should be run before determining which data location
///will be used for Flow.Launcher.
///will be used for Flow Launcher.
///</summary>
public void PreStartCleanUpAfterPortabilityUpdate()
{
@ -163,7 +163,7 @@ namespace Flow.Launcher.Core.Configuration
{
FilesFolders.RemoveFolderIfExists(roamingDataPath);
if (MessageBox.Show("Flow.Launcher has detected you enabled portable mode, " +
if (MessageBox.Show("Flow Launcher has detected you enabled portable mode, " +
"would you like to move it to a different location?", string.Empty,
MessageBoxButton.YesNo) == MessageBoxResult.Yes)
{
@ -179,7 +179,7 @@ namespace Flow.Launcher.Core.Configuration
{
FilesFolders.RemoveFolderIfExists(portableDataPath);
MessageBox.Show("Flow.Launcher has detected you disabled portable mode, " +
MessageBox.Show("Flow Launcher has detected you disabled portable mode, " +
"the relevant shortcuts and uninstaller entry have been created");
return;
@ -193,7 +193,7 @@ namespace Flow.Launcher.Core.Configuration
if(roamingLocationExists && portableLocationExists)
{
MessageBox.Show(string.Format("Flow.Launcher detected your user data exists both in {0} and " +
MessageBox.Show(string.Format("Flow Launcher detected your user data exists both in {0} and " +
"{1}. {2}{2}Please delete {1} in order to proceed. No changes have occured.",
DataLocation.PortableDataPath, DataLocation.RoamingDataPath, Environment.NewLine));

View file

@ -1,15 +1,15 @@

/* We basically follow the Json-RPC 2.0 spec (http://www.jsonrpc.org/specification) to invoke methods between Flow.Launcher and other plugins,
/* We basically follow the Json-RPC 2.0 spec (http://www.jsonrpc.org/specification) to invoke methods between Flow Launcher and other plugins,
* like python or other self-execute program. But, we added addtional infos (proxy and so on) into rpc request. Also, we didn't use the
* "id" and "jsonrpc" in the request, since it's not so useful in our request model.
*
* When execute a query:
* Flow.Launcher -------JsonRPCServerRequestModel--------> client
* Flow.Launcher <------JsonRPCQueryResponseModel--------- client
* Flow Launcher -------JsonRPCServerRequestModel--------> client
* Flow Launcher <------JsonRPCQueryResponseModel--------- client
*
* When execute a action (which mean user select an item in reulst item):
* Flow.Launcher -------JsonRPCServerRequestModel--------> client
* Flow.Launcher <------JsonRPCResponseModel-------------- client
* Flow Launcher -------JsonRPCServerRequestModel--------> client
* Flow Launcher <------JsonRPCResponseModel-------------- client
*
*/
@ -98,7 +98,7 @@ namespace Flow.Launcher.Core.Plugin
}
/// <summary>
/// Json RPC Request that Flow.Launcher sent to client
/// Json RPC Request that Flow Launcher sent to client
/// </summary>
public class JsonRPCServerRequestModel : JsonRPCRequestModel
{
@ -110,7 +110,7 @@ namespace Flow.Launcher.Core.Plugin
}
/// <summary>
/// Json RPC Request(in query response) that client sent to Flow.Launcher
/// Json RPC Request(in query response) that client sent to Flow Launcher
/// </summary>
public class JsonRPCClientRequestModel : JsonRPCRequestModel
{
@ -124,9 +124,9 @@ namespace Flow.Launcher.Core.Plugin
}
/// <summary>
/// Represent the json-rpc result item that client send to Flow.Launcher
/// Represent the json-rpc result item that client send to Flow Launcher
/// Typically, we will send back this request model to client after user select the result item
/// But if the request method starts with "Flow.Launcher.", we will invoke the public APIs we expose.
/// But if the request method starts with "Flow Launcher.", we will invoke the public APIs we expose.
/// </summary>
public class JsonRPCResult : Result
{

View file

@ -83,7 +83,7 @@ namespace Flow.Launcher.Core.Plugin
// Plugins.Initialize();
//}
if (MessageBox.Show($"You have installed plugin {plugin.Name} successfully.{Environment.NewLine}" +
"Restart Flow.Launcher to take effect?",
"Restart Flow Launcher to take effect?",
"Install plugin", MessageBoxButton.YesNo, MessageBoxImage.Question) == MessageBoxResult.Yes)
{
PluginManager.API.RestarApp();

View file

@ -13,14 +13,14 @@ using Flow.Launcher.Plugin;
namespace Flow.Launcher.Core.Plugin
{
/// <summary>
/// The entry for managing Flow.Launcher plugins
/// The entry for managing Flow Launcher plugins
/// </summary>
public static class PluginManager
{
private static IEnumerable<PluginPair> _contextMenuPlugins;
/// <summary>
/// Directories that will hold Flow.Launcher plugin directory
/// Directories that will hold Flow Launcher plugin directory
/// </summary>
public static List<PluginPair> AllPlugins { get; private set; }

View file

@ -63,7 +63,7 @@ namespace Flow.Launcher.Core
if (newReleaseVersion <= currentVersion)
{
if (!silentIfLatestVersion)
MessageBox.Show("You already have the latest Flow.Launcher version");
MessageBox.Show("You already have the latest Flow Launcher version");
updateManager.Dispose();
return;
}
@ -86,7 +86,7 @@ namespace Flow.Launcher.Core
var targetDestination = updateManager.RootAppDirectory + $"\\app-{newReleaseVersion.ToString()}\\{DataLocation.PortableFolderName}";
FilesFolders.Copy(DataLocation.PortableDataPath, targetDestination);
if (!FilesFolders.VerifyBothFolderFilesEqual(DataLocation.PortableDataPath, targetDestination))
MessageBox.Show(string.Format("Flow.Launcher was not able to move your user profile data to the new update version. Please manually" +
MessageBox.Show(string.Format("Flow Launcher was not able to move your user profile data to the new update version. Please manually" +
"move your profile data folder from {0} to {1}", DataLocation.PortableDataPath, targetDestination));
}
else

View file

@ -34,7 +34,7 @@ namespace Flow.Launcher.Infrastructure
{
Format.setToneType(HanyuPinyinToneType.WITHOUT_TONE);
Stopwatch.Normal("|Flow.Launcher.Infrastructure.Alphabet.Initialize|Preload pinyin cache", () =>
Stopwatch.Normal("|Flow Launcher.Infrastructure.Alphabet.Initialize|Preload pinyin cache", () =>
{
_pinyinStorage = new BinaryStorage<Dictionary<string, string[][]>>("Pinyin");
@ -48,7 +48,7 @@ namespace Flow.Launcher.Infrastructure
// force pinyin library static constructor initialize
PinyinHelper.toHanyuPinyinStringArray('T', Format);
});
Log.Info($"|Flow.Launcher.Infrastructure.Alphabet.Initialize|Number of preload pinyin combination<{PinyinCache.Count}>");
Log.Info($"|Flow Launcher.Infrastructure.Alphabet.Initialize|Number of preload pinyin combination<{PinyinCache.Count}>");
}
public string Translate(string str)

View file

@ -18,7 +18,7 @@ namespace Flow.Launcher.Infrastructure
public static readonly string RootDirectory = Directory.GetParent(ApplicationDirectory).ToString();
public static readonly string PreinstalledDirectory = Path.Combine(ProgramDirectory, Plugins);
public const string Issue = "https://github.com/jjw24/Flow.Launcher/issues/new";
public const string Issue = "https://github.com/Flow-Launcher/Flow.Launcher/issues/new";
public static readonly string Version = FileVersionInfo.GetVersionInfo(Assembly.Location.NonNull()).ProductVersion;
public static readonly int ThumbnailSize = 64;

View file

@ -62,7 +62,7 @@ namespace Flow.Launcher.Infrastructure.Exception
sb.AppendLine("## Environment");
sb.AppendLine($"* Command Line: {Environment.CommandLine}");
sb.AppendLine($"* Timestamp: {DateTime.Now.ToString(CultureInfo.InvariantCulture)}");
sb.AppendLine($"* Flow.Launcher version: {Constant.Version}");
sb.AppendLine($"* Flow Launcher version: {Constant.Version}");
sb.AppendLine($"* OS Version: {Environment.OSVersion.VersionString}");
sb.AppendLine($"* IntPtr Length: {IntPtr.Size}");
sb.AppendLine($"* x64: {Environment.Is64BitOperatingSystem}");

View file

@ -22,7 +22,7 @@ namespace Flow.Launcher.Plugin
/// Represent plugin query will be executed in UI thread directly. Don't do long-running operation in Query method if you implement this interface
/// <remarks>This will improve the performance of instant search like websearch or cmd plugin</remarks>
/// </summary>
[Obsolete("Flow.Launcher is fast enough now, executed on ui thread is no longer needed")]
[Obsolete("Flow Launcher is fast enough now, executed on ui thread is no longer needed")]
public interface IInstantQuery : IFeatures
{
bool IsInstantQuery(string query);

View file

@ -14,7 +14,7 @@ namespace Flow.Launcher.Plugin
/// <param name="query"></param>
/// <param name="plugin"></param>
/// <param name="results"></param>
[Obsolete("This method will be removed in Flow.Launcher 1.3")]
[Obsolete("This method will be removed in Flow Launcher 1.3")]
void PushResults(Query query, PluginMetadata plugin, List<Result> results);
/// <summary>
@ -22,8 +22,8 @@ namespace Flow.Launcher.Plugin
/// </summary>
/// <param name="query">query text</param>
/// <param name="requery">
/// force requery By default, Flow.Launcher will not fire query if your query is same with existing one.
/// Set this to true to force Flow.Launcher requerying
/// force requery By default, Flow Launcher will not fire query if your query is same with existing one.
/// Set this to true to force Flow Launcher requerying
/// </param>
void ChangeQuery(string query, bool requery = false);
@ -35,30 +35,30 @@ namespace Flow.Launcher.Plugin
void ChangeQueryText(string query, bool selectAll = false);
/// <summary>
/// Close Flow.Launcher
/// Close Flow Launcher
/// </summary>
[Obsolete]
void CloseApp();
/// <summary>
/// Restart Flow.Launcher
/// Restart Flow Launcher
/// </summary>
void RestarApp();
/// <summary>
/// Hide Flow.Launcher
/// Hide Flow Launcher
/// </summary>
[Obsolete]
void HideApp();
/// <summary>
/// Show Flow.Launcher
/// Show Flow Launcher
/// </summary>
[Obsolete]
void ShowApp();
/// <summary>
/// Save all Flow.Launcher settings
/// Save all Flow Launcher settings
/// </summary>
void SaveAppAllSettings();
@ -71,7 +71,7 @@ namespace Flow.Launcher.Plugin
void ReloadAllPluginData();
/// <summary>
/// Check for new Flow.Launcher update
/// Check for new Flow Launcher update
/// </summary>
void CheckForNewUpdate();
@ -110,7 +110,7 @@ namespace Flow.Launcher.Plugin
void StopLoadingBar();
/// <summary>
/// Install Flow.Launcher plugin
/// Install Flow Launcher plugin
/// </summary>
/// <param name="path">Plugin path (ends with .flowlauncher)</param>
void InstallPlugin(string path);

View file

@ -32,7 +32,7 @@ namespace Flow.Launcher.Helper
public static string RuntimeInfo()
{
var info = $"\nFlow.Launcher version: {Constant.Version}" +
var info = $"\nFlow Launcher version: {Constant.Version}" +
$"\nOS Version: {Environment.OSVersion.VersionString}" +
$"\nIntPtr Length: {IntPtr.Size}" +
$"\nx64: {Environment.Is64BitOperatingSystem}";

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Kunne ikke registrere genvejstast: {0}</system:String>
<system:String x:Key="couldnotStartCmd">Kunne ikke starte {0}</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Ugyldigt Flow.Launcher plugin filformat</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Ugyldigt Flow Launcher plugin filformat</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Sæt øverst i denne søgning</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Annuller øverst i denne søgning</system:String>
<system:String x:Key="executeQuery">Udfør søgning: {0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Afslut</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher indstillinger</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher indstillinger</system:String>
<system:String x:Key="general">Generelt</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Start Flow.Launcher ved system start</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Skjul Flow.Launcher ved mistet fokus</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Start Flow Launcher ved system start</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Skjul Flow Launcher ved mistet fokus</system:String>
<system:String x:Key="dontPromptUpdateMsg">Vis ikke notifikationer om nye versioner</system:String>
<system:String x:Key="rememberLastLocation">Husk seneste position</system:String>
<system:String x:Key="language">Sprog</system:String>
@ -27,7 +27,7 @@
<system:String x:Key="pythonDirectory">Python bibliotek</system:String>
<system:String x:Key="autoUpdates">Autoopdatering</system:String>
<system:String x:Key="selectPythonDirectory">Vælg</system:String>
<system:String x:Key="hideOnStartup">Skjul Flow.Launcher ved opstart</system:String>
<system:String x:Key="hideOnStartup">Skjul Flow Launcher ved opstart</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Plugin</system:String>
@ -42,7 +42,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Tema</system:String>
<system:String x:Key="browserMoreThemes">Søg efter flere temaer</system:String>
<system:String x:Key="helloFlow.Launcher">Hej Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Hej Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Søgefelt skrifttype</system:String>
<system:String x:Key="resultItemFont">Resultat skrifttype</system:String>
<system:String x:Key="windowMode">Vindue mode</system:String>
@ -50,7 +50,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Genvejstast</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher genvejstast</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher genvejstast</system:String>
<system:String x:Key="customQueryHotkey">Tilpasset søgegenvejstast</system:String>
<system:String x:Key="delete">Slet</system:String>
<system:String x:Key="edit">Rediger</system:String>
@ -78,9 +78,9 @@
<system:String x:Key="about">Om</system:String>
<system:String x:Key="website">Website</system:String>
<system:String x:Key="version">Version</system:String>
<system:String x:Key="about_activate_times">Du har aktiveret Flow.Launcher {0} gange</system:String>
<system:String x:Key="about_activate_times">Du har aktiveret Flow Launcher {0} gange</system:String>
<system:String x:Key="checkUpdates">Tjek for opdateringer</system:String>
<system:String x:Key="newVersionTips">Ny version {0} er tilgængelig, genstart venligst Flow.Launcher</system:String>
<system:String x:Key="newVersionTips">Ny version {0} er tilgængelig, genstart venligst Flow Launcher</system:String>
<system:String x:Key="releaseNotes">Release Notes:</system:String>
<!--Action Keyword Setting Dialog-->
@ -106,7 +106,7 @@
<!--Crash Reporter-->
<system:String x:Key="reportWindow_version">Version</system:String>
<system:String x:Key="reportWindow_time">Tid</system:String>
<system:String x:Key="reportWindow_reproduce">Beskriv venligst hvordan Flow.Launcher crashede, så vi kan rette det.</system:String>
<system:String x:Key="reportWindow_reproduce">Beskriv venligst hvordan Flow Launcher crashede, så vi kan rette det.</system:String>
<system:String x:Key="reportWindow_send_report">Send rapport</system:String>
<system:String x:Key="reportWindow_cancel">Annuller</system:String>
<system:String x:Key="reportWindow_general">Generelt</system:String>
@ -117,14 +117,14 @@
<system:String x:Key="reportWindow_sending">Sender</system:String>
<system:String x:Key="reportWindow_report_succeed">Rapport sendt korrekt</system:String>
<system:String x:Key="reportWindow_report_failed">Kunne ikke sende rapport</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher fik en fejl</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher fik en fejl</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Ny Flow.Launcher udgivelse {0} er nu tilgængelig</system:String>
<system:String x:Key="update_flowlauncher_update_error">Der skete en fejl ifm. opdatering af Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Ny Flow Launcher udgivelse {0} er nu tilgængelig</system:String>
<system:String x:Key="update_flowlauncher_update_error">Der skete en fejl ifm. opdatering af Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update">Opdater</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Annuler</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Denne opdatering vil genstarte Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Denne opdatering vil genstarte Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Følgende filer bliver opdateret</system:String>
<system:String x:Key="update_flowlauncher_update_files">Opdatereringsfiler</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Opdateringsbeskrivelse</system:String>

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Tastenkombinationregistrierung: {0} fehlgeschlagen</system:String>
<system:String x:Key="couldnotStartCmd">Kann {0} nicht starten</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Fehlerhaftes Flow.Launcher-Plugin Dateiformat</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Fehlerhaftes Flow Launcher-Plugin Dateiformat</system:String>
<system:String x:Key="setAsTopMostInThisQuery">In dieser Abfrage als oberstes setzen</system:String>
<system:String x:Key="cancelTopMostInThisQuery">In dieser Abfrage oberstes abbrechen</system:String>
<system:String x:Key="executeQuery">Abfrage ausführen:{0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Schließen</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher Einstellungen</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher Einstellungen</system:String>
<system:String x:Key="general">Allgemein</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Starte Flow.Launcher bei Systemstart</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Verstecke Flow.Launcher wenn der Fokus verloren geht</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Starte Flow Launcher bei Systemstart</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Verstecke Flow Launcher wenn der Fokus verloren geht</system:String>
<system:String x:Key="dontPromptUpdateMsg">Zeige keine Nachricht wenn eine neue Version vorhanden ist</system:String>
<system:String x:Key="rememberLastLocation">Merke letzte Ausführungsposition</system:String>
<system:String x:Key="language">Sprache</system:String>
@ -27,7 +27,7 @@
<system:String x:Key="pythonDirectory">Python-Verzeichnis</system:String>
<system:String x:Key="autoUpdates">Automatische Aktualisierung</system:String>
<system:String x:Key="selectPythonDirectory">Auswählen</system:String>
<system:String x:Key="hideOnStartup">Verstecke Flow.Launcher bei Systemstart</system:String>
<system:String x:Key="hideOnStartup">Verstecke Flow Launcher bei Systemstart</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Plugin</system:String>
@ -42,7 +42,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Theme</system:String>
<system:String x:Key="browserMoreThemes">Suche nach weiteren Themes</system:String>
<system:String x:Key="helloFlow.Launcher">Hallo Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Hallo Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Abfragebox Schriftart</system:String>
<system:String x:Key="resultItemFont">Ergebnis Schriftart</system:String>
<system:String x:Key="windowMode">Fenstermodus</system:String>
@ -50,7 +50,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Tastenkombination</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher Tastenkombination</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher Tastenkombination</system:String>
<system:String x:Key="customQueryHotkey">Benutzerdefinierte Abfrage Tastenkombination</system:String>
<system:String x:Key="delete">Löschen</system:String>
<system:String x:Key="edit">Bearbeiten</system:String>
@ -78,9 +78,9 @@
<system:String x:Key="about">Über</system:String>
<system:String x:Key="website">Webseite</system:String>
<system:String x:Key="version">Version</system:String>
<system:String x:Key="about_activate_times">Sie haben Flow.Launcher {0} mal aktiviert</system:String>
<system:String x:Key="about_activate_times">Sie haben Flow Launcher {0} mal aktiviert</system:String>
<system:String x:Key="checkUpdates">Nach Aktuallisierungen Suchen</system:String>
<system:String x:Key="newVersionTips">Eine neue Version ({0}) ist vorhanden. Bitte starten Sie Flow.Launcher neu.</system:String>
<system:String x:Key="newVersionTips">Eine neue Version ({0}) ist vorhanden. Bitte starten Sie Flow Launcher neu.</system:String>
<system:String x:Key="releaseNotes">Versionshinweise:</system:String>
<!--Action Keyword Setting Dialog-->
@ -117,14 +117,14 @@
<system:String x:Key="reportWindow_sending">Sende</system:String>
<system:String x:Key="reportWindow_report_succeed">Report erfolgreich</system:String>
<system:String x:Key="reportWindow_report_failed">Report fehlgeschlagen</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher hat einen Fehler</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher hat einen Fehler</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">V{0} von Flow.Launcher ist verfügbar</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">V{0} von Flow Launcher ist verfügbar</system:String>
<system:String x:Key="update_flowlauncher_update_error">Es ist ein Fehler während der Installation der Aktualisierung aufgetreten.</system:String>
<system:String x:Key="update_flowlauncher_update">Aktualisieren</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Abbrechen</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Diese Aktualisierung wird Flow.Launcher neu starten</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Diese Aktualisierung wird Flow Launcher neu starten</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Folgende Dateien werden aktualisiert</system:String>
<system:String x:Key="update_flowlauncher_update_files">Aktualisiere Dateien</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Aktualisierungbeschreibung</system:String>

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Failed to register hotkey: {0}</system:String>
<system:String x:Key="couldnotStartCmd">Could not start {0}</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Invalid Flow.Launcher plugin file format</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Invalid Flow Launcher plugin file format</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Set as topmost in this query</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Cancel topmost in this query</system:String>
<system:String x:Key="executeQuery">Execute query: {0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Exit</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher Settings</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher Settings</system:String>
<system:String x:Key="general">General</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Start Flow.Launcher on system startup</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Hide Flow.Launcher when focus is lost</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Start Flow Launcher on system startup</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Hide Flow Launcher when focus is lost</system:String>
<system:String x:Key="dontPromptUpdateMsg">Do not show new version notifications</system:String>
<system:String x:Key="rememberLastLocation">Remember last launch location</system:String>
<system:String x:Key="language">Language</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Python Directory</system:String>
<system:String x:Key="autoUpdates">Auto Update</system:String>
<system:String x:Key="selectPythonDirectory">Select</system:String>
<system:String x:Key="hideOnStartup">Hide Flow.Launcher on startup</system:String>
<system:String x:Key="hideOnStartup">Hide Flow Launcher on startup</system:String>
<system:String x:Key="hideNotifyIcon">Hide tray icon</system:String>
<system:String x:Key="querySearchPrecision">Query Search Precision</system:String>
<system:String x:Key="ShouldUsePinyin">Should Use Pinyin</system:String>
@ -49,7 +49,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Theme</system:String>
<system:String x:Key="browserMoreThemes">Browse for more themes</system:String>
<system:String x:Key="helloFlow.Launcher">Hello Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Hello Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Query Box Font</system:String>
<system:String x:Key="resultItemFont">Result Item Font</system:String>
<system:String x:Key="windowMode">Window Mode</system:String>
@ -59,7 +59,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Hotkey</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher Hotkey</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher Hotkey</system:String>
<system:String x:Key="customQueryHotkey">Custom Query Hotkey</system:String>
<system:String x:Key="delete">Delete</system:String>
<system:String x:Key="edit">Edit</system:String>
@ -87,13 +87,13 @@
<system:String x:Key="about">About</system:String>
<system:String x:Key="website">Website</system:String>
<system:String x:Key="version">Version</system:String>
<system:String x:Key="about_activate_times">You have activated Flow.Launcher {0} times</system:String>
<system:String x:Key="about_activate_times">You have activated Flow Launcher {0} times</system:String>
<system:String x:Key="checkUpdates">Check for Updates</system:String>
<system:String x:Key="newVersionTips">New version {0} is available, please restart Flow.Launcher.</system:String>
<system:String x:Key="newVersionTips">New version {0} is available, please restart Flow Launcher.</system:String>
<system:String x:Key="checkUpdatesFailed">Check updates failed, please check your connection and proxy settings to api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed">
Download updates failed, please check your connection and proxy settings to github-cloud.s3.amazonaws.com,
or go to https://github.com/jjw24/Flow.Launcher/releases to download updates manually.
or go to https://github.com/Flow-Launcher/Flow.Launcher/releases to download updates manually.
</system:String>
<system:String x:Key="releaseNotes">Release Notes:</system:String>
@ -131,14 +131,14 @@
<system:String x:Key="reportWindow_sending">Sending</system:String>
<system:String x:Key="reportWindow_report_succeed">Report sent successfully</system:String>
<system:String x:Key="reportWindow_report_failed">Failed to send report</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher got an error</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher got an error</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">New Flow.Launcher release {0} is now available</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">New Flow Launcher release {0} is now available</system:String>
<system:String x:Key="update_flowlauncher_update_error">An error occurred while trying to install software updates</system:String>
<system:String x:Key="update_flowlauncher_update">Update</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Cancel</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">This upgrade will restart Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">This upgrade will restart Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Following files will be updated</system:String>
<system:String x:Key="update_flowlauncher_update_files">Update files</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Update description</system:String>

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Échec lors de l'enregistrement du raccourci : {0}</system:String>
<system:String x:Key="couldnotStartCmd">Impossible de lancer {0}</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Le format de fichier n'est pas un plugin Flow.Launcher valide</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Le format de fichier n'est pas un plugin Flow Launcher valide</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Définir en tant que favori pour cette requête</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Annuler le favori</system:String>
<system:String x:Key="executeQuery">Lancer la requête : {0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Quitter</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Paramètres - Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_settings">Paramètres - Flow Launcher</system:String>
<system:String x:Key="general">Général</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Lancer Flow.Launcher au démarrage du système</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Cacher Flow.Launcher lors de la perte de focus</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Lancer Flow Launcher au démarrage du système</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Cacher Flow Launcher lors de la perte de focus</system:String>
<system:String x:Key="dontPromptUpdateMsg">Ne pas afficher le message de mise à jour pour les nouvelles versions</system:String>
<system:String x:Key="rememberLastLocation">Se souvenir du dernier emplacement de la fenêtre</system:String>
<system:String x:Key="language">Langue</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Répertoire de Python</system:String>
<system:String x:Key="autoUpdates">Mettre à jour automatiquement</system:String>
<system:String x:Key="selectPythonDirectory">Sélectionner</system:String>
<system:String x:Key="hideOnStartup">Cacher Flow.Launcher au démarrage</system:String>
<system:String x:Key="hideOnStartup">Cacher Flow Launcher au démarrage</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Modules</system:String>
@ -46,7 +46,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Thèmes</system:String>
<system:String x:Key="browserMoreThemes">Trouver plus de thèmes</system:String>
<system:String x:Key="helloFlow.Launcher">Hello Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Hello Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Police (barre de recherche)</system:String>
<system:String x:Key="resultItemFont">Police (liste des résultats) </system:String>
<system:String x:Key="windowMode">Mode fenêtré</system:String>
@ -54,7 +54,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Raccourcis</system:String>
<system:String x:Key="flowlauncherHotkey">Ouvrir Flow.Launcher</system:String>
<system:String x:Key="flowlauncherHotkey">Ouvrir Flow Launcher</system:String>
<system:String x:Key="customQueryHotkey">Requêtes personnalisées</system:String>
<system:String x:Key="delete">Supprimer</system:String>
<system:String x:Key="edit">Modifier</system:String>
@ -82,9 +82,9 @@
<system:String x:Key="about">À propos</system:String>
<system:String x:Key="website">Site web</system:String>
<system:String x:Key="version">Version</system:String>
<system:String x:Key="about_activate_times">Vous avez utilisé Flow.Launcher {0} fois</system:String>
<system:String x:Key="about_activate_times">Vous avez utilisé Flow Launcher {0} fois</system:String>
<system:String x:Key="checkUpdates">Vérifier les mises à jour</system:String>
<system:String x:Key="newVersionTips">Nouvelle version {0} disponible, veuillez redémarrer Flow.Launcher</system:String>
<system:String x:Key="newVersionTips">Nouvelle version {0} disponible, veuillez redémarrer Flow Launcher</system:String>
<system:String x:Key="checkUpdatesFailed">Échec de la vérification de la mise à jour, vérifiez votre connexion et vos paramètres de configuration proxy pour pouvoir acceder à api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed">Échec du téléchargement de la mise à jour, vérifiez votre connexion et vos paramètres de configuration proxy pour pouvoir acceder à github-cloud.s3.amazonaws.com, ou téléchargez manuelement la mise à jour sur https://github.com/jjw24/Flow.Launcher/releases.</system:String>
<system:String x:Key="releaseNotes">Notes de changement :</system:String>
@ -123,14 +123,14 @@
<system:String x:Key="reportWindow_sending">Envoi en cours</system:String>
<system:String x:Key="reportWindow_report_succeed">Signalement envoyé</system:String>
<system:String x:Key="reportWindow_report_failed">Échec de l'envoi du signalement</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher a rencontré une erreur</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher a rencontré une erreur</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Version v{0} de Flow.Launcher disponible</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Version v{0} de Flow Launcher disponible</system:String>
<system:String x:Key="update_flowlauncher_update_error">Une erreur s'est produite lors de l'installation de la mise à jour</system:String>
<system:String x:Key="update_flowlauncher_update">Mettre à jour</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Annuler</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Flow.Launcher doit redémarrer pour installer cette mise à jour</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Flow Launcher doit redémarrer pour installer cette mise à jour</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Les fichiers suivants seront mis à jour</system:String>
<system:String x:Key="update_flowlauncher_update_files">Fichiers mis à jour</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Description de la mise à jour</system:String>

View file

@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Esci</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Impostaizoni Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_settings">Impostaizoni Flow Launcher</system:String>
<system:String x:Key="general">Generale</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Avvia Wow all'avvio di Windows</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Nascondi Flow.Launcher quando perde il focus</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Nascondi Flow Launcher quando perde il focus</system:String>
<system:String x:Key="dontPromptUpdateMsg">Non mostrare le notifiche per una nuova versione</system:String>
<system:String x:Key="rememberLastLocation">Ricorda l'ultima posizione di avvio del launcher</system:String>
<system:String x:Key="language">Lingua</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Cartella Python</system:String>
<system:String x:Key="autoUpdates">Aggiornamento automatico</system:String>
<system:String x:Key="selectPythonDirectory">Seleziona</system:String>
<system:String x:Key="hideOnStartup">Nascondi Flow.Launcher all'avvio</system:String>
<system:String x:Key="hideOnStartup">Nascondi Flow Launcher all'avvio</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Plugin</system:String>
@ -46,7 +46,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Tema</system:String>
<system:String x:Key="browserMoreThemes">Sfoglia per altri temi</system:String>
<system:String x:Key="helloFlow.Launcher">Hello Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Hello Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Font campo di ricerca</system:String>
<system:String x:Key="resultItemFont">Font campo risultati</system:String>
<system:String x:Key="windowMode">Modalità finestra</system:String>
@ -54,7 +54,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Tasti scelta rapida</system:String>
<system:String x:Key="flowlauncherHotkey">Tasto scelta rapida Flow.Launcher</system:String>
<system:String x:Key="flowlauncherHotkey">Tasto scelta rapida Flow Launcher</system:String>
<system:String x:Key="customQueryHotkey">Tasti scelta rapida per ricerche personalizzate</system:String>
<system:String x:Key="delete">Cancella</system:String>
<system:String x:Key="edit">Modifica</system:String>
@ -82,13 +82,13 @@
<system:String x:Key="about">About</system:String>
<system:String x:Key="website">Sito web</system:String>
<system:String x:Key="version">Versione</system:String>
<system:String x:Key="about_activate_times">Hai usato Flow.Launcher {0} volte</system:String>
<system:String x:Key="about_activate_times">Hai usato Flow Launcher {0} volte</system:String>
<system:String x:Key="checkUpdates">Cerca aggiornamenti</system:String>
<system:String x:Key="newVersionTips">Una nuova versione {0} è disponibile, riavvia Flow.Launcher per favore.</system:String>
<system:String x:Key="newVersionTips">Una nuova versione {0} è disponibile, riavvia Flow Launcher per favore.</system:String>
<system:String x:Key="checkUpdatesFailed">Ricerca aggiornamenti fallita, per favore controlla la tua connessione e le eventuali impostazioni proxy per api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed">
Download degli aggiornamenti fallito, per favore controlla la tua connessione ed eventuali impostazioni proxy per github-cloud.s3.amazonaws.com,
oppure vai su https://github.com/jjw24/Flow.Launcher/releases per scaricare gli aggiornamenti manualmente.
oppure vai su https://github.com/Flow-Launcher/Flow.Launcher/releases per scaricare gli aggiornamenti manualmente.
</system:String>
<system:String x:Key="releaseNotes">Note di rilascio:</system:String>
@ -126,14 +126,14 @@
<system:String x:Key="reportWindow_sending">Invio in corso</system:String>
<system:String x:Key="reportWindow_report_succeed">Rapporto inviato correttamente</system:String>
<system:String x:Key="reportWindow_report_failed">Invio rapporto fallito</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher ha riportato un errore</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher ha riportato un errore</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">E' disponibile la nuova release {0} di Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">E' disponibile la nuova release {0} di Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_error">Errore durante l'installazione degli aggiornamenti software</system:String>
<system:String x:Key="update_flowlauncher_update">Aggiorna</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Annulla</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Questo aggiornamento riavvierà Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Questo aggiornamento riavvierà Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">I seguenti file saranno aggiornati</system:String>
<system:String x:Key="update_flowlauncher_update_files">File aggiornati</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Descrizione aggiornamento</system:String>

View file

@ -4,21 +4,21 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">ホットキー「{0}」の登録に失敗しました</system:String>
<system:String x:Key="couldnotStartCmd">{0}の起動に失敗しました</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Flow.Launcherプラグインの形式が正しくありません</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Flow Launcherプラグインの形式が正しくありません</system:String>
<system:String x:Key="setAsTopMostInThisQuery">このクエリを最上位にセットする</system:String>
<system:String x:Key="cancelTopMostInThisQuery">このクエリを最上位にセットをキャンセル</system:String>
<system:String x:Key="executeQuery">次のコマンドを実行します:{0}</system:String>
<system:String x:Key="lastExecuteTime">最終実行時間:{0}</system:String>
<system:String x:Key="iconTrayOpen">開く</system:String>
<system:String x:Key="iconTraySettings">設定</system:String>
<system:String x:Key="iconTrayAbout">Flow.Launcherについて</system:String>
<system:String x:Key="iconTrayAbout">Flow Launcherについて</system:String>
<system:String x:Key="iconTrayExit">終了</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher設定</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher設定</system:String>
<system:String x:Key="general">一般</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">スタートアップ時にFlow.Launcherを起動する</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">フォーカスを失った時にFlow.Launcherを隠す</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">スタートアップ時にFlow Launcherを起動する</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">フォーカスを失った時にFlow Launcherを隠す</system:String>
<system:String x:Key="dontPromptUpdateMsg">最新版が入手可能であっても、アップグレードメッセージを表示しない</system:String>
<system:String x:Key="rememberLastLocation">前回のランチャーの位置を記憶</system:String>
<system:String x:Key="language">言語</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Pythonのディレクトリ</system:String>
<system:String x:Key="autoUpdates">自動更新</system:String>
<system:String x:Key="selectPythonDirectory">選択</system:String>
<system:String x:Key="hideOnStartup">起動時にFlow.Launcherを隠す</system:String>
<system:String x:Key="hideOnStartup">起動時にFlow Launcherを隠す</system:String>
<system:String x:Key="hideNotifyIcon">トレイアイコンを隠す</system:String>
<!--Setting Plugin-->
@ -47,7 +47,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">テーマ</system:String>
<system:String x:Key="browserMoreThemes">テーマを探す</system:String>
<system:String x:Key="helloFlow.Launcher">こんにちは Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">こんにちは Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">検索ボックスのフォント</system:String>
<system:String x:Key="resultItemFont">検索結果一覧のフォント</system:String>
<system:String x:Key="windowMode">ウィンドウモード</system:String>
@ -57,7 +57,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">ホットキー</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher ホットキー</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher ホットキー</system:String>
<system:String x:Key="customQueryHotkey">カスタムクエリ ホットキー</system:String>
<system:String x:Key="delete">削除</system:String>
<system:String x:Key="edit">編集</system:String>
@ -82,16 +82,16 @@
<system:String x:Key="proxyConnectFailed">プロキシ接続に失敗しました</system:String>
<!--Setting About-->
<system:String x:Key="about">Flow.Launcherについて</system:String>
<system:String x:Key="about">Flow Launcherについて</system:String>
<system:String x:Key="website">ウェブサイト</system:String>
<system:String x:Key="version">バージョン</system:String>
<system:String x:Key="about_activate_times">あなたはFlow.Launcherを {0} 回利用しました</system:String>
<system:String x:Key="about_activate_times">あなたはFlow Launcherを {0} 回利用しました</system:String>
<system:String x:Key="checkUpdates">アップデートを確認する</system:String>
<system:String x:Key="newVersionTips">新しいバージョン {0} が利用可能です。Flow.Launcherを再起動してください。</system:String>
<system:String x:Key="newVersionTips">新しいバージョン {0} が利用可能です。Flow Launcherを再起動してください。</system:String>
<system:String x:Key="checkUpdatesFailed">アップデートの確認に失敗しました、api.github.com への接続とプロキシ設定を確認してください。</system:String>
<system:String x:Key="downloadUpdatesFailed">
更新のダウンロードに失敗しました、github-cloud.s3.amazonaws.com への接続とプロキシ設定を確認するか、
https://github.com/jjw24/Flow.Launcher/releases から手動でアップデートをダウンロードしてください。
https://github.com/Flow-Launcher/Flow.Launcher/releases から手動でアップデートをダウンロードしてください。
</system:String>
<system:String x:Key="releaseNotes">リリースノート:</system:String>
@ -129,14 +129,14 @@
<system:String x:Key="reportWindow_sending">送信中</system:String>
<system:String x:Key="reportWindow_report_succeed">クラッシュレポートの送信に成功しました</system:String>
<system:String x:Key="reportWindow_report_failed">クラッシュレポートの送信に失敗しました</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcherにエラーが発生しました</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcherにエラーが発生しました</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Flow.Launcher の最新バージョン V{0} が入手可能です</system:String>
<system:String x:Key="update_flowlauncher_update_error">Flow.Launcherのアップデート中にエラーが発生しました</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Flow Launcher の最新バージョン V{0} が入手可能です</system:String>
<system:String x:Key="update_flowlauncher_update_error">Flow Launcherのアップデート中にエラーが発生しました</system:String>
<system:String x:Key="update_flowlauncher_update">アップデート</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">キャンセル</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">このアップデートでは、Flow.Launcherの再起動が必要です</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">このアップデートでは、Flow Launcherの再起動が必要です</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">次のファイルがアップデートされます</system:String>
<system:String x:Key="update_flowlauncher_update_files">更新ファイル一覧</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">アップデートの詳細</system:String>

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">핫키 등록 실패: {0}</system:String>
<system:String x:Key="couldnotStartCmd">{0}을 실행할 수 없습니다.</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Flow.Launcher 플러그인 파일 형식이 유효하지 않습니다.</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Flow Launcher 플러그인 파일 형식이 유효하지 않습니다.</system:String>
<system:String x:Key="setAsTopMostInThisQuery">이 쿼리의 최상위로 설정</system:String>
<system:String x:Key="cancelTopMostInThisQuery">이 쿼리의 최상위 설정 취소</system:String>
<system:String x:Key="executeQuery">쿼리 실행: {0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">종료</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher 설정</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher 설정</system:String>
<system:String x:Key="general">일반</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">시스템 시작 시 Flow.Launcher 실행</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">포커스 잃으면 Flow.Launcher 숨김</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">시스템 시작 시 Flow Launcher 실행</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">포커스 잃으면 Flow Launcher 숨김</system:String>
<system:String x:Key="dontPromptUpdateMsg">새 버전 알림 끄기</system:String>
<system:String x:Key="rememberLastLocation">마지막 실행 위치 기억</system:String>
<system:String x:Key="language">언어</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Python 디렉토리</system:String>
<system:String x:Key="autoUpdates">자동 업데이트</system:String>
<system:String x:Key="selectPythonDirectory">선택</system:String>
<system:String x:Key="hideOnStartup">시작 시 Flow.Launcher 숨김</system:String>
<system:String x:Key="hideOnStartup">시작 시 Flow Launcher 숨김</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">플러그인</system:String>
@ -46,7 +46,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">테마</system:String>
<system:String x:Key="browserMoreThemes">테마 더 찾아보기</system:String>
<system:String x:Key="helloFlow.Launcher">Hello Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Hello Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">쿼리 상자 글꼴</system:String>
<system:String x:Key="resultItemFont">결과 항목 글꼴</system:String>
<system:String x:Key="windowMode">윈도우 모드</system:String>
@ -54,7 +54,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">핫키</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher 핫키</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher 핫키</system:String>
<system:String x:Key="customQueryHotkey">사용자지정 쿼리 핫키</system:String>
<system:String x:Key="delete">삭제</system:String>
<system:String x:Key="edit">편집</system:String>
@ -82,9 +82,9 @@
<system:String x:Key="about">정보</system:String>
<system:String x:Key="website">웹사이트</system:String>
<system:String x:Key="version">버전</system:String>
<system:String x:Key="about_activate_times">Flow.Launcher를 {0}번 실행했습니다.</system:String>
<system:String x:Key="about_activate_times">Flow Launcher를 {0}번 실행했습니다.</system:String>
<system:String x:Key="checkUpdates">업데이트 확인</system:String>
<system:String x:Key="newVersionTips">새 버전({0})이 있습니다. Flow.Launcher를 재시작하세요.</system:String>
<system:String x:Key="newVersionTips">새 버전({0})이 있습니다. Flow Launcher를 재시작하세요.</system:String>
<system:String x:Key="releaseNotes">릴리즈 노트:</system:String>
<!--Action Keyword Setting Dialog-->
@ -121,14 +121,14 @@
<system:String x:Key="reportWindow_sending">보내는 중</system:String>
<system:String x:Key="reportWindow_report_succeed">보고서를 정상적으로 보냈습니다.</system:String>
<system:String x:Key="reportWindow_report_failed">보고서를 보내지 못했습니다.</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher에 문제가 발생했습니다.</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher에 문제가 발생했습니다.</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">새 Flow.Launcher 버전({0})을 사용할 수 있습니다.</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">새 Flow Launcher 버전({0})을 사용할 수 있습니다.</system:String>
<system:String x:Key="update_flowlauncher_update_error">소프트웨어 업데이트를 설치하는 중에 오류가 발생했습니다.</system:String>
<system:String x:Key="update_flowlauncher_update">업데이트</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">취소</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">업데이트를 위해 Flow.Launcher를 재시작합니다.</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">업데이트를 위해 Flow Launcher를 재시작합니다.</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">아래 파일들이 업데이트됩니다.</system:String>
<system:String x:Key="update_flowlauncher_update_files">업데이트 파일</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">업데이트 설명</system:String>

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Kunne ikke registrere hurtigtast: {0}</system:String>
<system:String x:Key="couldnotStartCmd">Kunne ikke starte {0}</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Ugyldig filformat for Flow.Launcher-utvidelse</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Ugyldig filformat for Flow Launcher-utvidelse</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Sett til øverste for denne spørringen</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Avbryt øverste for denne spørringen</system:String>
<system:String x:Key="executeQuery">Utfør spørring: {0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Avslutt</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher-innstillinger</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher-innstillinger</system:String>
<system:String x:Key="general">Generelt</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Start Flow.Launcher ved systemstart</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Skjul Flow.Launcher ved mistet fokus</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Start Flow Launcher ved systemstart</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Skjul Flow Launcher ved mistet fokus</system:String>
<system:String x:Key="dontPromptUpdateMsg">Ikke vis varsel om ny versjon</system:String>
<system:String x:Key="rememberLastLocation">Husk siste plassering</system:String>
<system:String x:Key="language">Språk</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Python-mappe</system:String>
<system:String x:Key="autoUpdates">Oppdater automatisk</system:String>
<system:String x:Key="selectPythonDirectory">Velg</system:String>
<system:String x:Key="hideOnStartup">Skjul Flow.Launcher ved oppstart</system:String>
<system:String x:Key="hideOnStartup">Skjul Flow Launcher ved oppstart</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Utvidelse</system:String>
@ -46,7 +46,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Tema</system:String>
<system:String x:Key="browserMoreThemes">Finn flere temaer</system:String>
<system:String x:Key="helloFlow.Launcher">Hallo Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Hallo Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Font for spørringsboks</system:String>
<system:String x:Key="resultItemFont">Font for resultat</system:String>
<system:String x:Key="windowMode">Vindusmodus</system:String>
@ -54,7 +54,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Hurtigtast</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher-hurtigtast</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher-hurtigtast</system:String>
<system:String x:Key="customQueryHotkey">Egendefinerd spørringshurtigtast</system:String>
<system:String x:Key="delete">Slett</system:String>
<system:String x:Key="edit">Rediger</system:String>
@ -82,13 +82,13 @@
<system:String x:Key="about">Om</system:String>
<system:String x:Key="website">Netside</system:String>
<system:String x:Key="version">Versjon</system:String>
<system:String x:Key="about_activate_times">Du har aktivert Flow.Launcher {0} ganger</system:String>
<system:String x:Key="about_activate_times">Du har aktivert Flow Launcher {0} ganger</system:String>
<system:String x:Key="checkUpdates">Sjekk for oppdatering</system:String>
<system:String x:Key="newVersionTips">Ny versjon {0} er tilgjengelig, vennligst start Flow.Launcher på nytt.</system:String>
<system:String x:Key="newVersionTips">Ny versjon {0} er tilgjengelig, vennligst start Flow Launcher på nytt.</system:String>
<system:String x:Key="checkUpdatesFailed">Oppdateringssjekk feilet, vennligst sjekk tilkoblingen og proxy-innstillene for api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed">
Nedlastning av oppdateringer feilet, vennligst sjekk tilkoblingen og proxy-innstillene for github-cloud.s3.amazonaws.com,
eller gå til https://github.com/jjw24/Flow.Launcher/releases for å laste ned oppdateringer manuelt.
eller gå til https://github.com/Flow-Launcher/Flow.Launcher/releases for å laste ned oppdateringer manuelt.
</system:String>
<system:String x:Key="releaseNotes">Versjonsmerknader:</system:String>
@ -126,14 +126,14 @@
<system:String x:Key="reportWindow_sending">Sender</system:String>
<system:String x:Key="reportWindow_report_succeed">Rapport sendt med suksess</system:String>
<system:String x:Key="reportWindow_report_failed">Kunne ikke sende rapport</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher møtte på en feil</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher møtte på en feil</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Versjon {0} av Flow.Launcher er nå tilgjengelig</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Versjon {0} av Flow Launcher er nå tilgjengelig</system:String>
<system:String x:Key="update_flowlauncher_update_error">En feil oppstod under installasjon av programvareoppdateringer</system:String>
<system:String x:Key="update_flowlauncher_update">Oppdater</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Avbryt</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Denne opgraderingen vil starte Flow.Launcher på nytt</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Denne opgraderingen vil starte Flow Launcher på nytt</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Følgende filer vil bli oppdatert</system:String>
<system:String x:Key="update_flowlauncher_update_files">Oppdateringsfiler</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Oppdateringsbeskrivelse</system:String>

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Sneltoets registratie: {0} mislukt</system:String>
<system:String x:Key="couldnotStartCmd">Kan {0} niet starten</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Ongeldige Flow.Launcher plugin bestandsextensie</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Ongeldige Flow Launcher plugin bestandsextensie</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Stel in als hoogste in deze query</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Annuleer hoogste in deze query</system:String>
<system:String x:Key="executeQuery">Executeer query: {0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Afsluiten</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher Instellingen</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher Instellingen</system:String>
<system:String x:Key="general">Algemeen</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Start Flow.Launcher als systeem opstart</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Verberg Flow.Launcher als focus verloren is</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Start Flow Launcher als systeem opstart</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Verberg Flow Launcher als focus verloren is</system:String>
<system:String x:Key="dontPromptUpdateMsg">Laat geen nieuwe versie notificaties zien</system:String>
<system:String x:Key="rememberLastLocation">Herinner laatste opstart locatie</system:String>
<system:String x:Key="language">Taal</system:String>
@ -27,7 +27,7 @@
<system:String x:Key="pythonDirectory">Python map</system:String>
<system:String x:Key="autoUpdates">Automatische Update</system:String>
<system:String x:Key="selectPythonDirectory">Selecteer</system:String>
<system:String x:Key="hideOnStartup">Verberg Flow.Launcher als systeem opstart</system:String>
<system:String x:Key="hideOnStartup">Verberg Flow Launcher als systeem opstart</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Plugin</system:String>
@ -42,7 +42,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Thema</system:String>
<system:String x:Key="browserMoreThemes">Zoek meer thema´s</system:String>
<system:String x:Key="helloFlow.Launcher">Hallo Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Hallo Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Query Box lettertype</system:String>
<system:String x:Key="resultItemFont">Resultaat Item lettertype</system:String>
<system:String x:Key="windowMode">Window Mode</system:String>
@ -50,7 +50,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Sneltoets</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher Sneltoets</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher Sneltoets</system:String>
<system:String x:Key="customQueryHotkey">Custom Query Sneltoets</system:String>
<system:String x:Key="delete">Verwijder</system:String>
<system:String x:Key="edit">Bewerken</system:String>
@ -78,9 +78,9 @@
<system:String x:Key="about">Over</system:String>
<system:String x:Key="website">Website</system:String>
<system:String x:Key="version">Versie</system:String>
<system:String x:Key="about_activate_times">U heeft Flow.Launcher {0} keer opgestart</system:String>
<system:String x:Key="about_activate_times">U heeft Flow Launcher {0} keer opgestart</system:String>
<system:String x:Key="checkUpdates">Zoek naar Updates</system:String>
<system:String x:Key="newVersionTips">Nieuwe versie {0} beschikbaar, start Flow.Launcher opnieuw op</system:String>
<system:String x:Key="newVersionTips">Nieuwe versie {0} beschikbaar, start Flow Launcher opnieuw op</system:String>
<system:String x:Key="releaseNotes">Release Notes:</system:String>
<!--Action Keyword Setting Dialog-->
@ -117,14 +117,14 @@
<system:String x:Key="reportWindow_sending">Versturen</system:String>
<system:String x:Key="reportWindow_report_succeed">Rapport succesvol</system:String>
<system:String x:Key="reportWindow_report_failed">Rapport mislukt</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher heeft een error</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher heeft een error</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Nieuwe Flow.Launcher release {0} nu beschikbaar</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Nieuwe Flow Launcher release {0} nu beschikbaar</system:String>
<system:String x:Key="update_flowlauncher_update_error">Een error is voorgekomen tijdens het installeren van de update</system:String>
<system:String x:Key="update_flowlauncher_update">Update</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Annuleer</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Deze upgrade zal Flow.Launcher opnieuw opstarten</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Deze upgrade zal Flow Launcher opnieuw opstarten</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Volgende bestanden zullen worden geüpdatet</system:String>
<system:String x:Key="update_flowlauncher_update_files">Update bestanden</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Update beschrijving</system:String>

View file

@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Wyjdź</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Ustawienia Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_settings">Ustawienia Flow Launcher</system:String>
<system:String x:Key="general">Ogólne</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Uruchamiaj Flow.Launcher przy starcie systemu</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Ukryj okno Flow.Launcher kiedy przestanie ono być aktywne</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Uruchamiaj Flow Launcher przy starcie systemu</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Ukryj okno Flow Launcher kiedy przestanie ono być aktywne</system:String>
<system:String x:Key="dontPromptUpdateMsg">Nie pokazuj powiadomienia o nowej wersji</system:String>
<system:String x:Key="rememberLastLocation">Zapamiętaj ostatnią pozycję okna</system:String>
<system:String x:Key="language">Język</system:String>
@ -27,7 +27,7 @@
<system:String x:Key="pythonDirectory">Folder biblioteki Python</system:String>
<system:String x:Key="autoUpdates">Automatyczne aktualizacje</system:String>
<system:String x:Key="selectPythonDirectory">Wybierz</system:String>
<system:String x:Key="hideOnStartup">Uruchamiaj Flow.Launcher zminimalizowany</system:String>
<system:String x:Key="hideOnStartup">Uruchamiaj Flow Launcher zminimalizowany</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Wtyczki</system:String>
@ -42,7 +42,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Skórka</system:String>
<system:String x:Key="browserMoreThemes">Znajdź więcej skórek</system:String>
<system:String x:Key="helloFlow.Launcher">Witaj Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Witaj Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Czcionka okna zapytania</system:String>
<system:String x:Key="resultItemFont">Czcionka okna wyników</system:String>
<system:String x:Key="windowMode">Tryb w oknie</system:String>
@ -50,7 +50,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Skrót klawiszowy</system:String>
<system:String x:Key="flowlauncherHotkey">Skrót klawiszowy Flow.Launcher</system:String>
<system:String x:Key="flowlauncherHotkey">Skrót klawiszowy Flow Launcher</system:String>
<system:String x:Key="customQueryHotkey">Skrót klawiszowy niestandardowych zapytań</system:String>
<system:String x:Key="delete">Usuń</system:String>
<system:String x:Key="edit">Edytuj</system:String>
@ -78,9 +78,9 @@
<system:String x:Key="about">O programie</system:String>
<system:String x:Key="website">Strona internetowa</system:String>
<system:String x:Key="version">Wersja</system:String>
<system:String x:Key="about_activate_times">Uaktywniłeś Flow.Launcher {0} razy</system:String>
<system:String x:Key="about_activate_times">Uaktywniłeś Flow Launcher {0} razy</system:String>
<system:String x:Key="checkUpdates">Szukaj aktualizacji</system:String>
<system:String x:Key="newVersionTips">Nowa wersja {0} jest dostępna, uruchom ponownie Flow.Launcher</system:String>
<system:String x:Key="newVersionTips">Nowa wersja {0} jest dostępna, uruchom ponownie Flow Launcher</system:String>
<system:String x:Key="releaseNotes">Zmiany:</system:String>
<!--Action Keyword Setting Dialog-->
@ -117,14 +117,14 @@
<system:String x:Key="reportWindow_sending">Wysyłam raport...</system:String>
<system:String x:Key="reportWindow_report_succeed">Raport wysłany pomyślnie</system:String>
<system:String x:Key="reportWindow_report_failed">Nie udało się wysłać raportu</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">W programie Flow.Launcher wystąpił błąd</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">W programie Flow Launcher wystąpił błąd</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Nowa wersja Flow.Launcher {0} jest dostępna</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Nowa wersja Flow Launcher {0} jest dostępna</system:String>
<system:String x:Key="update_flowlauncher_update_error">Wystąpił błąd podczas instalowania aktualizacji programu</system:String>
<system:String x:Key="update_flowlauncher_update">Aktualizuj</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Anuluj</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Aby dokończyć proces aktualizacji Flow.Launcher musi zostać zresetowany</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Aby dokończyć proces aktualizacji Flow Launcher musi zostać zresetowany</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Następujące pliki zostaną zaktualizowane</system:String>
<system:String x:Key="update_flowlauncher_update_files">Aktualizuj pliki</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Opis aktualizacji</system:String>

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Falha ao registrar atalho: {0}</system:String>
<system:String x:Key="couldnotStartCmd">Não foi possível iniciar {0}</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Formato de plugin Flow.Launcher inválido</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Formato de plugin Flow Launcher inválido</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Tornar a principal nessa consulta</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Cancelar a principal nessa consulta</system:String>
<system:String x:Key="executeQuery">Executar consulta: {0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Sair</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Configurações do Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_settings">Configurações do Flow Launcher</system:String>
<system:String x:Key="general">Geral</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Iniciar Flow.Launcher com inicialização do sistema</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Esconder Flow.Launcher quando foco for perdido</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Iniciar Flow Launcher com inicialização do sistema</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Esconder Flow Launcher quando foco for perdido</system:String>
<system:String x:Key="dontPromptUpdateMsg">Não mostrar notificações de novas versões</system:String>
<system:String x:Key="rememberLastLocation">Lembrar última localização de lançamento</system:String>
<system:String x:Key="language">Idioma</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Diretório Python</system:String>
<system:String x:Key="autoUpdates">Atualizar Automaticamente</system:String>
<system:String x:Key="selectPythonDirectory">Selecionar</system:String>
<system:String x:Key="hideOnStartup">Esconder Flow.Launcher na inicialização</system:String>
<system:String x:Key="hideOnStartup">Esconder Flow Launcher na inicialização</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Plugin</system:String>
@ -46,7 +46,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Tema</system:String>
<system:String x:Key="browserMoreThemes">Ver mais temas</system:String>
<system:String x:Key="helloFlow.Launcher">Olá Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Olá Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Fonte da caixa de Consulta</system:String>
<system:String x:Key="resultItemFont">Fonte do Resultado</system:String>
<system:String x:Key="windowMode">Modo Janela</system:String>
@ -54,7 +54,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Atalho</system:String>
<system:String x:Key="flowlauncherHotkey">Atalho do Flow.Launcher</system:String>
<system:String x:Key="flowlauncherHotkey">Atalho do Flow Launcher</system:String>
<system:String x:Key="customQueryHotkey">Atalho de Consulta Personalizada</system:String>
<system:String x:Key="delete">Apagar</system:String>
<system:String x:Key="edit">Editar</system:String>
@ -82,13 +82,13 @@
<system:String x:Key="about">Sobre</system:String>
<system:String x:Key="website">Website</system:String>
<system:String x:Key="version">Versão</system:String>
<system:String x:Key="about_activate_times">Você ativou o Flow.Launcher {0} vezes</system:String>
<system:String x:Key="about_activate_times">Você ativou o Flow Launcher {0} vezes</system:String>
<system:String x:Key="checkUpdates">Procurar atualizações</system:String>
<system:String x:Key="newVersionTips">A nova versão {0} está disponível, por favor reinicie o Flow.Launcher.</system:String>
<system:String x:Key="newVersionTips">A nova versão {0} está disponível, por favor reinicie o Flow Launcher.</system:String>
<system:String x:Key="checkUpdatesFailed">Falha ao procurar atualizações, confira sua conexão e configuração de proxy para api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed">
Falha ao baixar atualizações, confira sua conexão e configuração de proxy para github-cloud.s3.amazonaws.com,
ou acesse https://github.com/jjw24/Flow.Launcher/releases para baixar manualmente.
ou acesse https://github.com/Flow-Launcher/Flow.Launcher/releases para baixar manualmente.
</system:String>
<system:String x:Key="releaseNotes">Notas de Versão:</system:String>
@ -126,14 +126,14 @@
<system:String x:Key="reportWindow_sending">Enviando</system:String>
<system:String x:Key="reportWindow_report_succeed">Relatório enviado com sucesso</system:String>
<system:String x:Key="reportWindow_report_failed">Falha ao enviar relatório</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher apresentou um erro</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher apresentou um erro</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">A nova versão {0} do Flow.Launcher agora está disponível</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">A nova versão {0} do Flow Launcher agora está disponível</system:String>
<system:String x:Key="update_flowlauncher_update_error">Ocorreu um erro ao tentar instalar atualizações do progama</system:String>
<system:String x:Key="update_flowlauncher_update">Atualizar</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Cancelar</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Essa atualização reiniciará o Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Essa atualização reiniciará o Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Os seguintes arquivos serão atualizados</system:String>
<system:String x:Key="update_flowlauncher_update_files">Atualizar arquivos</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Atualizar descrição</system:String>

View file

@ -11,14 +11,14 @@
<system:String x:Key="lastExecuteTime">Последний раз выполнен в:{0}</system:String>
<system:String x:Key="iconTrayOpen">Открыть</system:String>
<system:String x:Key="iconTraySettings">Настройки</system:String>
<system:String x:Key="iconTrayAbout">О Flow.Launcher</system:String>
<system:String x:Key="iconTrayAbout">О Flow Launcher</system:String>
<system:String x:Key="iconTrayExit">Закрыть</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Настройки Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_settings">Настройки Flow Launcher</system:String>
<system:String x:Key="general">Общие</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Запускать Flow.Launcher при запуске системы</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Скрывать Flow.Launcher если потерян фокус</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Запускать Flow Launcher при запуске системы</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Скрывать Flow Launcher если потерян фокус</system:String>
<system:String x:Key="dontPromptUpdateMsg">Не отображать сообщение об обновлении когда доступна новая версия</system:String>
<system:String x:Key="rememberLastLocation">Запомнить последнее место запуска</system:String>
<system:String x:Key="language">Язык</system:String>
@ -27,7 +27,7 @@
<system:String x:Key="pythonDirectory">Python Directory</system:String>
<system:String x:Key="autoUpdates">Auto Update</system:String>
<system:String x:Key="selectPythonDirectory">Select</system:String>
<system:String x:Key="hideOnStartup">Hide Flow.Launcher on startup</system:String>
<system:String x:Key="hideOnStartup">Hide Flow Launcher on startup</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Плагины</system:String>
@ -42,7 +42,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Темы</system:String>
<system:String x:Key="browserMoreThemes">Найти больше тем</system:String>
<system:String x:Key="helloFlow.Launcher">Привет Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Привет Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Шрифт запросов</system:String>
<system:String x:Key="resultItemFont">Шрифт результатов</system:String>
<system:String x:Key="windowMode">Оконный режим</system:String>
@ -50,7 +50,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Горячие клавиши</system:String>
<system:String x:Key="flowlauncherHotkey">Горячая клавиша Flow.Launcher</system:String>
<system:String x:Key="flowlauncherHotkey">Горячая клавиша Flow Launcher</system:String>
<system:String x:Key="customQueryHotkey">Задаваемые горячие клавиши для запросов</system:String>
<system:String x:Key="delete">Удалить</system:String>
<system:String x:Key="edit">Изменить</system:String>
@ -75,10 +75,10 @@
<system:String x:Key="proxyConnectFailed">Подключение к прокси серверу не удалось</system:String>
<!--Setting About-->
<system:String x:Key="about">О Flow.Launcher</system:String>
<system:String x:Key="about">О Flow Launcher</system:String>
<system:String x:Key="website">Сайт</system:String>
<system:String x:Key="version">Версия</system:String>
<system:String x:Key="about_activate_times">Вы воспользовались Flow.Launcher уже {0} раз</system:String>
<system:String x:Key="about_activate_times">Вы воспользовались Flow Launcher уже {0} раз</system:String>
<system:String x:Key="checkUpdates">Check for Updates</system:String>
<system:String x:Key="newVersionTips">New version {0} avaiable, please restart flowlauncher</system:String>
<system:String x:Key="releaseNotes">Release Notes:</system:String>
@ -117,14 +117,14 @@
<system:String x:Key="reportWindow_sending">Отправляем</system:String>
<system:String x:Key="reportWindow_report_succeed">Отчёт успешно отправлен</system:String>
<system:String x:Key="reportWindow_report_failed">Не удалось отправить отчёт</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Произошёл сбой в Flow.Launcher</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Произошёл сбой в Flow Launcher</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Доступна новая версия Flow.Launcher V{0}</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Доступна новая версия Flow Launcher V{0}</system:String>
<system:String x:Key="update_flowlauncher_update_error">Произошла ошибка при попытке установить обновление</system:String>
<system:String x:Key="update_flowlauncher_update">Обновить</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Отмена</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Это обновление перезапустит Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Это обновление перезапустит Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Следующие файлы будут обновлены</system:String>
<system:String x:Key="update_flowlauncher_update_files">Обновить файлы</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Описание обновления</system:String>

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Nepodarilo sa registrovať klávesovú skratku {0}</system:String>
<system:String x:Key="couldnotStartCmd">Nepodarilo sa spustiť {0}</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Neplatný formát súboru pre plugin Flow.Launcher</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Neplatný formát súboru pre plugin Flow Launcher</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Pri tomto dopyte umiestniť navrchu</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Zrušiť umiestnenie navrchu pri tomto dopyte</system:String>
<system:String x:Key="executeQuery">Spustiť dopyt: {0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Ukončiť</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Nastavenia Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_settings">Nastavenia Flow Launcher</system:String>
<system:String x:Key="general">Všeobecné</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Spustiť Flow.Launcher po štarte systému</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Schovať Flow.Launcher po strate fokusu</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Spustiť Flow Launcher po štarte systému</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Schovať Flow Launcher po strate fokusu</system:String>
<system:String x:Key="dontPromptUpdateMsg">Nezobrazovať upozornenia na novú verziu</system:String>
<system:String x:Key="rememberLastLocation">Zapamätať si posledné umiestnenie</system:String>
<system:String x:Key="language">Jazyk</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Priečinok s Pythonom</system:String>
<system:String x:Key="autoUpdates">Automatická aktualizácia</system:String>
<system:String x:Key="selectPythonDirectory">Vybrať</system:String>
<system:String x:Key="hideOnStartup">Schovať Flow.Launcher po spustení</system:String>
<system:String x:Key="hideOnStartup">Schovať Flow Launcher po spustení</system:String>
<system:String x:Key="hideNotifyIcon">Schovať ikonu v oblasti oznámení</system:String>
<!--Setting Plugin-->
@ -47,7 +47,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Motív</system:String>
<system:String x:Key="browserMoreThemes">Prehliadať viac motívov</system:String>
<system:String x:Key="helloFlow.Launcher">Ahoj Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Ahoj Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Písmo poľa pre dopyt</system:String>
<system:String x:Key="resultItemFont">Písmo výsledkov</system:String>
<system:String x:Key="windowMode">Režim okno</system:String>
@ -55,7 +55,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Klávesová skratka</system:String>
<system:String x:Key="flowlauncherHotkey">Klávesová skratka pre Flow.Launcher</system:String>
<system:String x:Key="flowlauncherHotkey">Klávesová skratka pre Flow Launcher</system:String>
<system:String x:Key="customQueryHotkey">Vlastná klávesová skratka pre dopyt</system:String>
<system:String x:Key="delete">Odstrániť</system:String>
<system:String x:Key="edit">Upraviť</system:String>
@ -83,13 +83,13 @@
<system:String x:Key="about">O aplikácii</system:String>
<system:String x:Key="website">Webstránka</system:String>
<system:String x:Key="version">Verzia</system:String>
<system:String x:Key="about_activate_times">Flow.Launcher bol aktivovaný {0}-krát</system:String>
<system:String x:Key="about_activate_times">Flow Launcher bol aktivovaný {0}-krát</system:String>
<system:String x:Key="checkUpdates">Skontrolovať aktualizácie</system:String>
<system:String x:Key="newVersionTips">Je dostupná nová verzia {0}, prosím, reštartujte Flow.Launcher.</system:String>
<system:String x:Key="newVersionTips">Je dostupná nová verzia {0}, prosím, reštartujte Flow Launcher.</system:String>
<system:String x:Key="checkUpdatesFailed">Kontrola aktualizácií zlyhala, prosím, skontrolujte pripojenie na internet a nastavenie proxy k api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed">
Sťahovanie aktualizácií zlyhalo, skontrolujte pripojenie na internet a nastavenie proxy k github-cloud.s3.amazonaws.com,
alebo prejdite na https://github.com/jjw24/Flow.Launcher/releases pre manuálne stiahnutie aktualizácií.
alebo prejdite na https://github.com/Flow-Launcher/Flow.Launcher/releases pre manuálne stiahnutie aktualizácií.
</system:String>
<system:String x:Key="releaseNotes">Poznámky k vydaniu:</system:String>
@ -127,14 +127,14 @@
<system:String x:Key="reportWindow_sending">Odosiela sa</system:String>
<system:String x:Key="reportWindow_report_succeed">Hlásenie bolo úspešne odoslané</system:String>
<system:String x:Key="reportWindow_report_failed">Odoslanie hlásenia zlyhalo</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher zaznamenal chybu</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher zaznamenal chybu</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Je dostupné nové vydanie Flow.Launcher {0}</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Je dostupné nové vydanie Flow Launcher {0}</system:String>
<system:String x:Key="update_flowlauncher_update_error">Počas inštalácie aktualizácií došlo k chybe</system:String>
<system:String x:Key="update_flowlauncher_update">Aktualizovať</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Zrušiť</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Tento upgrade reštartuje Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Tento upgrade reštartuje Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Nasledujúce súbory budú aktualizované</system:String>
<system:String x:Key="update_flowlauncher_update_files">Aktualizovať súbory</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Aktualizovať popis</system:String>

View file

@ -4,21 +4,21 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Neuspešno registrovana prečica: {0}</system:String>
<system:String x:Key="couldnotStartCmd">Neuspešno pokretanje {0}</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Nepravilni Flow.Launcher plugin format datoteke</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Nepravilni Flow Launcher plugin format datoteke</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Postavi kao najviši u ovom upitu</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Poništi najviši u ovom upitu</system:String>
<system:String x:Key="executeQuery">Izvrši upit: {0}</system:String>
<system:String x:Key="lastExecuteTime">Vreme poslednjeg izvršenja: {0}</system:String>
<system:String x:Key="iconTrayOpen">Otvori</system:String>
<system:String x:Key="iconTraySettings">Podešavanja</system:String>
<system:String x:Key="iconTrayAbout">O Flow.Launcher-u</system:String>
<system:String x:Key="iconTrayAbout">O Flow Launcher-u</system:String>
<system:String x:Key="iconTrayExit">Izlaz</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher Podešavanja</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher Podešavanja</system:String>
<system:String x:Key="general">Opšte</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Pokreni Flow.Launcher pri podizanju sistema</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Sakri Flow.Launcher kada se izgubi fokus</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Pokreni Flow Launcher pri podizanju sistema</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Sakri Flow Launcher kada se izgubi fokus</system:String>
<system:String x:Key="dontPromptUpdateMsg">Ne prikazuj obaveštenje o novoj verziji</system:String>
<system:String x:Key="rememberLastLocation">Zapamti lokaciju poslednjeg pokretanja</system:String>
<system:String x:Key="language">Jezik</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Python direktorijum</system:String>
<system:String x:Key="autoUpdates">Auto ažuriranje</system:String>
<system:String x:Key="selectPythonDirectory">Izaberi</system:String>
<system:String x:Key="hideOnStartup">Sakrij Flow.Launcher pri podizanju sistema</system:String>
<system:String x:Key="hideOnStartup">Sakrij Flow Launcher pri podizanju sistema</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Plugin</system:String>
@ -46,7 +46,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Tema</system:String>
<system:String x:Key="browserMoreThemes">Pretražite još tema</system:String>
<system:String x:Key="helloFlow.Launcher">Zdravo Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Zdravo Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Font upita</system:String>
<system:String x:Key="resultItemFont">Font rezultata</system:String>
<system:String x:Key="windowMode">Režim prozora</system:String>
@ -54,7 +54,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Prečica</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher prečica</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher prečica</system:String>
<system:String x:Key="customQueryHotkey">prečica za ručno dodat upit</system:String>
<system:String x:Key="delete">Obriši</system:String>
<system:String x:Key="edit">Izmeni</system:String>
@ -79,16 +79,16 @@
<system:String x:Key="proxyConnectFailed">Veza sa proksijem neuspešna</system:String>
<!--Setting About-->
<system:String x:Key="about">O Flow.Launcher-u</system:String>
<system:String x:Key="about">O Flow Launcher-u</system:String>
<system:String x:Key="website">Veb sajt</system:String>
<system:String x:Key="version">Verzija</system:String>
<system:String x:Key="about_activate_times">Aktivirali ste Flow.Launcher {0} puta</system:String>
<system:String x:Key="about_activate_times">Aktivirali ste Flow Launcher {0} puta</system:String>
<system:String x:Key="checkUpdates">Proveri ažuriranja</system:String>
<system:String x:Key="newVersionTips">Nove verzija {0} je dostupna, molim Vas ponovo pokrenite Flow.Launcher.</system:String>
<system:String x:Key="newVersionTips">Nove verzija {0} je dostupna, molim Vas ponovo pokrenite Flow Launcher.</system:String>
<system:String x:Key="checkUpdatesFailed">Neuspešna provera ažuriranja, molim Vas proverite vašu vezu i podešavanja za proksi prema api.github.com.</system:String>
<system:String x:Key="downloadUpdatesFailed">
Neuspešno preuzimanje ažuriranja, molim Vas proverite vašu vezu i podešavanja za proksi prema github-cloud.s3.amazonaws.com,
ili posetite https://github.com/jjw24/Flow.Launcher/releases da preuzmete ažuriranja ručno.
ili posetite https://github.com/Flow-Launcher/Flow.Launcher/releases da preuzmete ažuriranja ručno.
</system:String>
<system:String x:Key="releaseNotes">U novoj verziji:</system:String>
@ -126,14 +126,14 @@
<system:String x:Key="reportWindow_sending">Slanje</system:String>
<system:String x:Key="reportWindow_report_succeed">Izveštaj uspešno poslat</system:String>
<system:String x:Key="reportWindow_report_failed">Izveštaj neuspešno poslat</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher je dobio grešku</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher je dobio grešku</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Nova verzija Flow.Launcher-a {0} je dostupna</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Nova verzija Flow Launcher-a {0} je dostupna</system:String>
<system:String x:Key="update_flowlauncher_update_error">Došlo je do greške prilokom instalacije ažuriranja</system:String>
<system:String x:Key="update_flowlauncher_update">Ažuriraj</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Otkaži</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Ova nadogradnja će ponovo pokrenuti Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Ova nadogradnja će ponovo pokrenuti Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Sledeće datoteke će biti ažurirane</system:String>
<system:String x:Key="update_flowlauncher_update_files">Ažuriraj datoteke</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Opis ažuriranja</system:String>

View file

@ -4,7 +4,7 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Kısayol tuşu ataması başarısız oldu: {0}</system:String>
<system:String x:Key="couldnotStartCmd">{0} başlatılamıyor</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Geçersiz Flow.Launcher eklenti dosyası formatı</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Geçersiz Flow Launcher eklenti dosyası formatı</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Bu sorgu için başa sabitle</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Sabitlemeyi kaldır</system:String>
<system:String x:Key="executeQuery">Sorguyu çalıştır: {0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">Çıkış</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher Ayarları</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher Ayarları</system:String>
<system:String x:Key="general">Genel</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Flow.Launcher'u başlangıçta başlat</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Odak pencereden ayrıldığında Flow.Launcher'u gizle</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Flow Launcher'u başlangıçta başlat</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Odak pencereden ayrıldığında Flow Launcher'u gizle</system:String>
<system:String x:Key="dontPromptUpdateMsg">Güncelleme bildirimlerini gösterme</system:String>
<system:String x:Key="rememberLastLocation">Pencere konumunu hatırla</system:String>
<system:String x:Key="language">Dil</system:String>
@ -31,7 +31,7 @@
<system:String x:Key="pythonDirectory">Python Konumu</system:String>
<system:String x:Key="autoUpdates">Otomatik Güncelle</system:String>
<system:String x:Key="selectPythonDirectory">Seç</system:String>
<system:String x:Key="hideOnStartup">Başlangıçta Flow.Launcher'u gizle</system:String>
<system:String x:Key="hideOnStartup">Başlangıçta Flow Launcher'u gizle</system:String>
<system:String x:Key="hideNotifyIcon">Sistem çekmecesi simgesini gizle</system:String>
<system:String x:Key="querySearchPrecision">Sorgu Arama Hassasiyeti</system:String>
@ -48,7 +48,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Temalar</system:String>
<system:String x:Key="browserMoreThemes">Daha fazla tema bul</system:String>
<system:String x:Key="helloFlow.Launcher">Merhaba Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Merhaba Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Pencere Yazı Tipi</system:String>
<system:String x:Key="resultItemFont">Sonuç Yazı Tipi</system:String>
<system:String x:Key="windowMode">Pencere Modu</system:String>
@ -58,7 +58,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Kısayol Tuşu</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher Kısayolu</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher Kısayolu</system:String>
<system:String x:Key="customQueryHotkey">Özel Sorgu Kısayolları</system:String>
<system:String x:Key="delete">Sil</system:String>
<system:String x:Key="edit">Düzenle</system:String>
@ -86,13 +86,13 @@
<system:String x:Key="about">Hakkında</system:String>
<system:String x:Key="website">Web Sitesi</system:String>
<system:String x:Key="version">Sürüm</system:String>
<system:String x:Key="about_activate_times">Şu ana kadar Flow.Launcher'u {0} kez aktifleştirdiniz.</system:String>
<system:String x:Key="about_activate_times">Şu ana kadar Flow Launcher'u {0} kez aktifleştirdiniz.</system:String>
<system:String x:Key="checkUpdates">Güncellemeleri Kontrol Et</system:String>
<system:String x:Key="newVersionTips">Uygulamanın yeni sürümü ({0}) mevcut, Lütfen Flow.Launcher'u yeniden başlatın.</system:String>
<system:String x:Key="newVersionTips">Uygulamanın yeni sürümü ({0}) mevcut, Lütfen Flow Launcher'u yeniden başlatın.</system:String>
<system:String x:Key="checkUpdatesFailed">Güncelleme kontrolü başarısız oldu. Lütfen bağlantınız ve vekil sunucu ayarlarınızın api.github.com adresine ulaşabilir olduğunu kontrol edin.</system:String>
<system:String x:Key="downloadUpdatesFailed">
Güncellemenin yüklenmesi başarısız oldu. Lütfen bağlantınız ve vekil sunucu ayarlarınızın github-cloud.s3.amazonaws.com
adresine ulaşabilir olduğunu kontrol edin ya da https://github.com/jjw24/Flow.Launcher/releases adresinden güncellemeyi elle indirin.
adresine ulaşabilir olduğunu kontrol edin ya da https://github.com/Flow-Launcher/Flow.Launcher/releases adresinden güncellemeyi elle indirin.
</system:String>
<system:String x:Key="releaseNotes">Sürüm Notları:</system:String>
@ -130,14 +130,14 @@
<system:String x:Key="reportWindow_sending">Gönderiliyor</system:String>
<system:String x:Key="reportWindow_report_succeed">Hata raporu başarıyla gönderildi</system:String>
<system:String x:Key="reportWindow_report_failed">Hata raporu gönderimi başarısız oldu</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher'ta bir hata oluştu</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher'ta bir hata oluştu</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Flow.Launcher'un yeni bir sürümü ({0}) mevcut</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Flow Launcher'un yeni bir sürümü ({0}) mevcut</system:String>
<system:String x:Key="update_flowlauncher_update_error">Güncellemelerin kurulması sırasında bir hata oluştu</system:String>
<system:String x:Key="update_flowlauncher_update">Güncelle</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">İptal</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Bu güncelleme Flow.Launcher'u yeniden başlatacaktır</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Bu güncelleme Flow Launcher'u yeniden başlatacaktır</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Aşağıdaki dosyalar güncelleştirilecektir</system:String>
<system:String x:Key="update_flowlauncher_update_files">Güncellenecek dosyalar</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Güncelleme açıklaması</system:String>

View file

@ -4,21 +4,21 @@
<!--MainWindow-->
<system:String x:Key="registerHotkeyFailed">Реєстрація хоткея {0} не вдалася</system:String>
<system:String x:Key="couldnotStartCmd">Не вдалося запустити {0}</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Невірний формат файлу плагіна Flow.Launcher</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">Невірний формат файлу плагіна Flow Launcher</system:String>
<system:String x:Key="setAsTopMostInThisQuery">Відображати першим при такому ж запиті</system:String>
<system:String x:Key="cancelTopMostInThisQuery">Відмінити відображення першим при такому ж запиті</system:String>
<system:String x:Key="executeQuery">Виконати запит: {0}</system:String>
<system:String x:Key="lastExecuteTime">Час останнього використання: {0}</system:String>
<system:String x:Key="iconTrayOpen">Відкрити</system:String>
<system:String x:Key="iconTraySettings">Налаштування</system:String>
<system:String x:Key="iconTrayAbout">Про Flow.Launcher</system:String>
<system:String x:Key="iconTrayAbout">Про Flow Launcher</system:String>
<system:String x:Key="iconTrayExit">Закрити</system:String>
<!--Setting General-->
<system:String x:Key="flowlauncher_settings">Налаштування Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_settings">Налаштування Flow Launcher</system:String>
<system:String x:Key="general">Основні</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Запускати Flow.Launcher при запуску системи</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Сховати Flow.Launcher якщо втрачено фокус</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">Запускати Flow Launcher при запуску системи</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">Сховати Flow Launcher якщо втрачено фокус</system:String>
<system:String x:Key="dontPromptUpdateMsg">Не повідомляти про доступні нові версії</system:String>
<system:String x:Key="rememberLastLocation">Запам'ятати останнє місце запуску</system:String>
<system:String x:Key="language">Мова</system:String>
@ -27,7 +27,7 @@
<system:String x:Key="pythonDirectory">Директорія Python</system:String>
<system:String x:Key="autoUpdates">Автоматичне оновлення</system:String>
<system:String x:Key="selectPythonDirectory">Вибрати</system:String>
<system:String x:Key="hideOnStartup">Сховати Flow.Launcher при запуску системи</system:String>
<system:String x:Key="hideOnStartup">Сховати Flow Launcher при запуску системи</system:String>
<!--Setting Plugin-->
<system:String x:Key="plugin">Плагіни</system:String>
@ -42,7 +42,7 @@
<!--Setting Theme-->
<system:String x:Key="theme">Теми</system:String>
<system:String x:Key="browserMoreThemes">Знайти більше тем</system:String>
<system:String x:Key="helloFlow.Launcher">Привіт Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">Привіт Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">Шрифт запитів</system:String>
<system:String x:Key="resultItemFont">Шрифт результатів</system:String>
<system:String x:Key="windowMode">Віконний режим</system:String>
@ -50,7 +50,7 @@
<!--Setting Hotkey-->
<system:String x:Key="hotkey">Гарячі клавіші</system:String>
<system:String x:Key="flowlauncherHotkey">Гаряча клавіша Flow.Launcher</system:String>
<system:String x:Key="flowlauncherHotkey">Гаряча клавіша Flow Launcher</system:String>
<system:String x:Key="customQueryHotkey">Задані гарячі клавіші для запитів</system:String>
<system:String x:Key="delete">Видалити</system:String>
<system:String x:Key="edit">Змінити</system:String>
@ -75,12 +75,12 @@
<system:String x:Key="proxyConnectFailed">Невдале підключення Proxy</system:String>
<!--Setting About-->
<system:String x:Key="about">Про Flow.Launcher</system:String>
<system:String x:Key="about">Про Flow Launcher</system:String>
<system:String x:Key="website">Сайт</system:String>
<system:String x:Key="version">Версия</system:String>
<system:String x:Key="about_activate_times">Ви скористалися Flow.Launcher вже {0} разів</system:String>
<system:String x:Key="about_activate_times">Ви скористалися Flow Launcher вже {0} разів</system:String>
<system:String x:Key="checkUpdates">Перевірити наявність оновлень</system:String>
<system:String x:Key="newVersionTips">Доступна нова версія {0}, будь ласка, перезавантажте Flow.Launcher</system:String>
<system:String x:Key="newVersionTips">Доступна нова версія {0}, будь ласка, перезавантажте Flow Launcher</system:String>
<system:String x:Key="releaseNotes">Примітки до поточного релізу:</system:String>
<!--Action Keyword Setting Dialog-->
@ -117,14 +117,14 @@
<system:String x:Key="reportWindow_sending">Відправити</system:String>
<system:String x:Key="reportWindow_report_succeed">Звіт успішно відправлено</system:String>
<system:String x:Key="reportWindow_report_failed">Не вдалося відправити звіт</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Стався збій в додатоку Flow.Launcher</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Стався збій в додатоку Flow Launcher</system:String>
<!--update-->
<system:String x:Key="update_flowlauncher_update_new_version_available">Доступна нова версія Flow.Launcher V{0}</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">Доступна нова версія Flow Launcher V{0}</system:String>
<system:String x:Key="update_flowlauncher_update_error">Сталася помилка під час спроби встановити оновлення</system:String>
<system:String x:Key="update_flowlauncher_update">Оновити</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">Скасувати</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Це оновлення перезавантажить Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">Це оновлення перезавантажить Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">Ці файли будуть оновлені</system:String>
<system:String x:Key="update_flowlauncher_update_files">Оновити файли</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">Опис оновлення</system:String>

View file

@ -4,7 +4,7 @@
<!--主窗体-->
<system:String x:Key="registerHotkeyFailed">注册热键:{0} 失败</system:String>
<system:String x:Key="couldnotStartCmd">启动命令 {0} 失败</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">不是合法的Flow.Launcher插件格式</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">不是合法的Flow Launcher插件格式</system:String>
<system:String x:Key="setAsTopMostInThisQuery">在当前查询中置顶</system:String>
<system:String x:Key="cancelTopMostInThisQuery">取消置顶</system:String>
<system:String x:Key="executeQuery">执行查询:{0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">退出</system:String>
<!--设置,通用-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher设置</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher设置</system:String>
<system:String x:Key="general">通用</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">开机启动</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">失去焦点时自动隐藏Flow.Launcher</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">失去焦点时自动隐藏Flow Launcher</system:String>
<system:String x:Key="dontPromptUpdateMsg">不显示新版本提示</system:String>
<system:String x:Key="rememberLastLocation">记住上次启动位置</system:String>
<system:String x:Key="language">语言</system:String>
@ -47,7 +47,7 @@
<!--设置,主题-->
<system:String x:Key="theme">主题</system:String>
<system:String x:Key="browserMoreThemes">浏览更多主题</system:String>
<system:String x:Key="helloFlow.Launcher">你好Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">你好Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">查询框字体</system:String>
<system:String x:Key="resultItemFont">结果项字体</system:String>
<system:String x:Key="windowMode">窗口模式</system:String>
@ -57,7 +57,7 @@
<!--设置,热键-->
<system:String x:Key="hotkey">热键</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher激活热键</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher激活热键</system:String>
<system:String x:Key="customQueryHotkey">自定义查询热键</system:String>
<system:String x:Key="delete">删除</system:String>
<system:String x:Key="edit">编辑</system:String>
@ -85,7 +85,7 @@
<system:String x:Key="about">关于</system:String>
<system:String x:Key="website">网站</system:String>
<system:String x:Key="version">版本</system:String>
<system:String x:Key="about_activate_times">你已经激活了Flow.Launcher {0} 次</system:String>
<system:String x:Key="about_activate_times">你已经激活了Flow Launcher {0} 次</system:String>
<system:String x:Key="checkUpdates">检查更新</system:String>
<system:String x:Key="newVersionTips">发现新版本 {0} , 请重启 flowlauncher。</system:String>
<system:String x:Key="releaseNotes">更新说明:</system:String>
@ -124,14 +124,14 @@
<system:String x:Key="reportWindow_sending">发送中</system:String>
<system:String x:Key="reportWindow_report_succeed">发送成功</system:String>
<system:String x:Key="reportWindow_report_failed">发送失败</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher出错啦</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher出错啦</system:String>
<!--更新-->
<system:String x:Key="update_flowlauncher_update_new_version_available">发现Flow.Launcher新版本 V{0}</system:String>
<system:String x:Key="update_flowlauncher_update_error">更新Flow.Launcher出错</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">发现Flow Launcher新版本 V{0}</system:String>
<system:String x:Key="update_flowlauncher_update_error">更新Flow Launcher出错</system:String>
<system:String x:Key="update_flowlauncher_update">更新</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">取消</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">此更新需要重启Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">此更新需要重启Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">下列文件会被更新</system:String>
<system:String x:Key="update_flowlauncher_update_files">更新文件</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">更新日志</system:String>

View file

@ -4,7 +4,7 @@
<!--主視窗-->
<system:String x:Key="registerHotkeyFailed">登錄快速鍵:{0} 失敗</system:String>
<system:String x:Key="couldnotStartCmd">啟動命令 {0} 失敗</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">無效的 Flow.Launcher 外掛格式</system:String>
<system:String x:Key="invalidFlow.LauncherPluginFileFormat">無效的 Flow Launcher 外掛格式</system:String>
<system:String x:Key="setAsTopMostInThisQuery">在目前查詢中置頂</system:String>
<system:String x:Key="cancelTopMostInThisQuery">取消置頂</system:String>
<system:String x:Key="executeQuery">執行查詢:{0}</system:String>
@ -15,10 +15,10 @@
<system:String x:Key="iconTrayExit">結束</system:String>
<!--設定,一般-->
<system:String x:Key="flowlauncher_settings">Flow.Launcher 設定</system:String>
<system:String x:Key="flowlauncher_settings">Flow Launcher 設定</system:String>
<system:String x:Key="general">一般</system:String>
<system:String x:Key="startFlow.LauncherOnSystemStartup">開機時啟動</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">失去焦點時自動隱藏 Flow.Launcher</system:String>
<system:String x:Key="hideFlow.LauncherWhenLoseFocus">失去焦點時自動隱藏 Flow Launcher</system:String>
<system:String x:Key="dontPromptUpdateMsg">不顯示新版本提示</system:String>
<system:String x:Key="rememberLastLocation">記住上次啟動位置</system:String>
<system:String x:Key="language">語言</system:String>
@ -42,7 +42,7 @@
<!--設定,主題-->
<system:String x:Key="theme">主題</system:String>
<system:String x:Key="browserMoreThemes">瀏覽更多主題</system:String>
<system:String x:Key="helloFlow.Launcher">你好Flow.Launcher</system:String>
<system:String x:Key="helloFlow.Launcher">你好Flow Launcher</system:String>
<system:String x:Key="queryBoxFont">查詢框字體</system:String>
<system:String x:Key="resultItemFont">結果項字體</system:String>
<system:String x:Key="windowMode">視窗模式</system:String>
@ -50,7 +50,7 @@
<!--設置,熱鍵-->
<system:String x:Key="hotkey">熱鍵</system:String>
<system:String x:Key="flowlauncherHotkey">Flow.Launcher 執行熱鍵</system:String>
<system:String x:Key="flowlauncherHotkey">Flow Launcher 執行熱鍵</system:String>
<system:String x:Key="customQueryHotkey">自定義熱鍵查詢</system:String>
<system:String x:Key="delete">刪除</system:String>
<system:String x:Key="edit">編輯</system:String>
@ -78,9 +78,9 @@
<system:String x:Key="about">關於</system:String>
<system:String x:Key="website">網站</system:String>
<system:String x:Key="version">版本</system:String>
<system:String x:Key="about_activate_times">您已經啟動了 Flow.Launcher {0} 次</system:String>
<system:String x:Key="about_activate_times">您已經啟動了 Flow Launcher {0} 次</system:String>
<system:String x:Key="checkUpdates">檢查更新</system:String>
<system:String x:Key="newVersionTips">發現有新版本 {0} 請重新啟動 Flow.Launcher。</system:String>
<system:String x:Key="newVersionTips">發現有新版本 {0} 請重新啟動 Flow Launcher。</system:String>
<system:String x:Key="releaseNotes">更新說明:</system:String>
<!--Action Keyword 設定對話框-->
@ -117,14 +117,14 @@
<system:String x:Key="reportWindow_sending">傳送中</system:String>
<system:String x:Key="reportWindow_report_succeed">傳送成功</system:String>
<system:String x:Key="reportWindow_report_failed">傳送失敗</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow.Launcher 出錯啦</system:String>
<system:String x:Key="reportWindow_flowlauncher_got_an_error">Flow Launcher 出錯啦</system:String>
<!--更新-->
<system:String x:Key="update_flowlauncher_update_new_version_available">發現 Flow.Launcher 新版本 V{0}</system:String>
<system:String x:Key="update_flowlauncher_update_error">更新 Flow.Launcher 出錯</system:String>
<system:String x:Key="update_flowlauncher_update_new_version_available">發現 Flow Launcher 新版本 V{0}</system:String>
<system:String x:Key="update_flowlauncher_update_error">更新 Flow Launcher 出錯</system:String>
<system:String x:Key="update_flowlauncher_update">更新</system:String>
<system:String x:Key="update_flowlauncher_update_cancel">取消</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">此更新需要重新啟動 Flow.Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_restart_flowlauncher_tip">此更新需要重新啟動 Flow Launcher</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_files">下列檔案會被更新</system:String>
<system:String x:Key="update_flowlauncher_update_files">更新檔案</system:String>
<system:String x:Key="update_flowlauncher_update_upadte_description">更新日誌</system:String>

View file

@ -146,7 +146,7 @@ namespace Flow.Launcher
public event FlowLauncherGlobalKeyboardEventHandler GlobalKeyboardEvent;
[Obsolete("This will be removed in Flow.Launcher 1.3")]
[Obsolete("This will be removed in Flow Launcher 1.3")]
public void PushResults(Query query, PluginMetadata plugin, List<Result> results)
{
results.ForEach(o =>

View file

@ -99,7 +99,7 @@ namespace Flow.Launcher
if (File.Exists(pythonPath))
{
_settings.PluginSettings.PythonDirectory = pythonDirectory;
MessageBox.Show("Remember to restart Flow.Launcher use new Python path");
MessageBox.Show("Remember to restart Flow Launcher use new Python path");
}
else
{

View file

@ -566,7 +566,7 @@ namespace Flow.Launcher.ViewModel
}
/// <summary>
/// Checks if Flow.Launcher should ignore any hotkeys
/// Checks if Flow Launcher should ignore any hotkeys
/// </summary>
/// <returns></returns>
private bool ShouldIgnoreHotkeys()

View file

@ -37,10 +37,10 @@
Known problems for 1.3.183:
We are aware of the following issues and the following workarounds exist:
1. `System.NullReferenceException`: https://github.com/Flow.Launcher-launcher/Flow.Launcher/releases/tag/v1.3.475
1. `System.NullReferenceException`: https://github.com/Wox-launcher/Wox/releases/tag/v1.3.475
2. `System.UriFormatException`: delete your old theme file
3. `System.Threading.Tasks.TaskCanceledException`: https://github.com/Flow.Launcher-launcher/Flow.Launcher/releases/tag/v1.3.475
4. `System.AggregateException`: see https://github.com/Flow.Launcher-launcher/Flow.Launcher/issues/1777
3. `System.Threading.Tasks.TaskCanceledException`: https://github.com/Wox-launcher/Wox/releases/tag/v1.3.475
4. `System.AggregateException`: see https://github.com/Wox-launcher/Wox/issues/1777
If none of them match your case, please continue.
@ -63,11 +63,11 @@
2.
3.
### Flow.Launcher Error Window text
### Flow Launcher Error Window text
<!--
Paste below the logs generated by the Flow.Launcher error reporter.
请在此处粘贴 Flow.Launcher 错误报告程序提供的日志。
请在此处粘贴 Flow Launcher 错误报告程序提供的日志。
-->
(paste here)

View file

@ -3,7 +3,7 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_caculator_plugin_name">Rechner</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Stellt mathematische Berechnungen bereit.(Versuche 5*3-2 in Flow.Launcher)</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Stellt mathematische Berechnungen bereit.(Versuche 5*3-2 in Flow Launcher)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_not_a_number">Keine Zahl (NaN)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_expression_not_complete">Ausdruck falsch oder nicht vollständig (Klammern vergessen?)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_copy_number_to_clipboard">Diese Zahl in die Zwischenablage kopieren</system:String>

View file

@ -3,7 +3,7 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_caculator_plugin_name">Calculator</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Allows to do mathematical calculations.(Try 5*3-2 in Flow.Launcher)</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Allows to do mathematical calculations.(Try 5*3-2 in Flow Launcher)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_not_a_number">Not a number (NaN)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_expression_not_complete">Expression wrong or incomplete (Did you forget some parentheses?)</system:String>
<system:String x:Key="flowlauncher_plugin_calculator_copy_number_to_clipboard">Copy this number to the clipboard</system:String>

View file

@ -3,6 +3,6 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_caculator_plugin_name">Kalkulator</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Szybkie wykonywanie obliczeń matematycznych. (Spróbuj wpisać 5*3-2 w oknie Flow.Launchera)</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">Szybkie wykonywanie obliczeń matematycznych. (Spróbuj wpisać 5*3-2 w oknie Flow Launchera)</system:String>
</ResourceDictionary>

View file

@ -3,6 +3,6 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_caculator_plugin_name">计算器</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">为Flow.Launcher提供数学计算能力。(试着在Flow.Launcher输入 5*3-2)</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">为Flow Launcher提供数学计算能力。(试着在Flow Launcher输入 5*3-2)</system:String>
</ResourceDictionary>

View file

@ -3,6 +3,6 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_caculator_plugin_name">計算機</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">為 Flow.Launcher 提供數學計算功能。(試著在 Flow.Launcher 輸入 5*3-2)</system:String>
<system:String x:Key="flowlauncher_plugin_caculator_plugin_description">為 Flow Launcher 提供數學計算功能。(試著在 Flow Launcher 輸入 5*3-2)</system:String>
</ResourceDictionary>

View file

@ -3,6 +3,6 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_color_plugin_name">Farben</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">Stellt eine HEX-Farben Vorschau bereit. (Versuche #000 in Flow.Launcher)</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">Stellt eine HEX-Farben Vorschau bereit. (Versuche #000 in Flow Launcher)</system:String>
</ResourceDictionary>

View file

@ -3,6 +3,6 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_color_plugin_name">Colors</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">Allows to preview colors using hex values.(Try #000 in Flow.Launcher)</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">Allows to preview colors using hex values.(Try #000 in Flow Launcher)</system:String>
</ResourceDictionary>

View file

@ -3,6 +3,6 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_color_plugin_name">Kolory</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">Podgląd kolorów po wpisaniu ich kodu szesnastkowego. (Spróbuj wpisać #000 w oknie Flow.Launchera)</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">Podgląd kolorów po wpisaniu ich kodu szesnastkowego. (Spróbuj wpisać #000 w oknie Flow Launchera)</system:String>
</ResourceDictionary>

View file

@ -3,6 +3,6 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_color_plugin_name">颜色</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">提供在Flow.Launcher查询hex颜色。(尝试在Flow.Launcher中输入#000)</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">提供在Flow Launcher查询hex颜色。(尝试在Flow Launcher中输入#000)</system:String>
</ResourceDictionary>

View file

@ -3,5 +3,5 @@
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_color_plugin_name">顏色</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">提供在 Flow.Launcher 查詢 hex 顏色。(試著在 Flow.Launcher 中輸入 #000)</system:String>
<system:String x:Key="flowlauncher_plugin_color_plugin_description">提供在 Flow Launcher 查詢 hex 顏色。(試著在 Flow Launcher 中輸入 #000)</system:String>
</ResourceDictionary>

View file

@ -10,6 +10,6 @@
<system:String x:Key="flowlauncher_plugin_folder_delete_folder_link">Bist du sicher {0} zu löschen?</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_name">Ordner</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">Öffne deine Lieblingsordner direkt von Flow.Launcher aus</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">Öffne deine Lieblingsordner direkt von Flow Launcher aus</system:String>
</ResourceDictionary>

View file

@ -10,6 +10,6 @@
<system:String x:Key="flowlauncher_plugin_folder_delete_folder_link">Are you sure you want to delete {0}?</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_name">Folder</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">Open favorite folder from Flow.Launcher directly</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">Open favorite folder from Flow Launcher directly</system:String>
</ResourceDictionary>

View file

@ -10,6 +10,6 @@
<system:String x:Key="flowlauncher_plugin_folder_delete_folder_link">Czy jesteś pewien że chcesz usunąć {0}?</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_name">Foldery</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">Otwórz ulubione foldery bezpośrednio z poziomu Flow.Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">Otwórz ulubione foldery bezpośrednio z poziomu Flow Launchera</system:String>
</ResourceDictionary>

View file

@ -10,6 +10,6 @@
<system:String x:Key="flowlauncher_plugin_folder_delete_folder_link">{0} bağlantısını silmek istediğinize emin misiniz?</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_name">Klasör</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">Favori klasörünüzü doğrudan Flow.Launcher'tan açın</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">Favori klasörünüzü doğrudan Flow Launcher'tan açın</system:String>
</ResourceDictionary>

View file

@ -10,6 +10,6 @@
<system:String x:Key="flowlauncher_plugin_folder_delete_folder_link">你确定要删除{0}吗?</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_name">文件夹</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">在Flow.Launcher中直接打开收藏的文件夹</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">在Flow Launcher中直接打开收藏的文件夹</system:String>
</ResourceDictionary>

View file

@ -10,6 +10,6 @@
<system:String x:Key="flowlauncher_plugin_folder_delete_folder_link">你確認要刪除{0}嗎?</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_name">資料夾</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">在 Flow.Launcher 中直接開啟收藏的資料夾</system:String>
<system:String x:Key="flowlauncher_plugin_folder_plugin_description">在 Flow Launcher 中直接開啟收藏的資料夾</system:String>
</ResourceDictionary>

View file

@ -2,7 +2,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow.Launcher Plugin Verwaltung</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">Installiere/Entferne/Aktualisiere Flow.Launcher Plugins</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow Launcher Plugin Verwaltung</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">Installiere/Entferne/Aktualisiere Flow Launcher Plugins</system:String>
</ResourceDictionary>

View file

@ -2,7 +2,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow.Launcher Plugin Management</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">Install, remove or update Flow.Launcher plugins</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow Launcher Plugin Management</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">Install, remove or update Flow Launcher plugins</system:String>
</ResourceDictionary>

View file

@ -2,7 +2,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Zarządzanie wtyczkami Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Zarządzanie wtyczkami Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">Pozwala na instalacje, usuwanie i aktualizacje wtyczek</system:String>
</ResourceDictionary>

View file

@ -2,7 +2,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow.Launcher Eklenti Yöneticisi</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">Flow.Launcher eklentilerini kurun, kaldırın ya da güncelleyin</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow Launcher Eklenti Yöneticisi</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">Flow Launcher eklentilerini kurun, kaldırın ya da güncelleyin</system:String>
</ResourceDictionary>

View file

@ -2,7 +2,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow.Launcher插件管理</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">安装/卸载/更新Flow.Launcher插件</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow Launcher插件管理</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">安装/卸载/更新Flow Launcher插件</system:String>
</ResourceDictionary>

View file

@ -2,7 +2,7 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib">
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow.Launcher 外掛管理</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">安裝/解除安裝/更新 Flow.Launcher 外掛</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_name">Flow Launcher 外掛管理</system:String>
<system:String x:Key="flowlauncher_plugin_plugin_management_plugin_description">安裝/解除安裝/更新 Flow Launcher 外掛</system:String>
</ResourceDictionary>

View file

@ -119,8 +119,8 @@ namespace Flow.Launcher.Plugin.PluginManagement
catch (WebException e)
{
//todo happlebao add option in log to decide give user prompt or not
context.API.ShowMsg("PluginManagement.ResultForInstallPlugin: Can't connect to Flow.Launcher plugin website, check your conenction");
Log.Exception("|PluginManagement.ResultForInstallPlugin|Can't connect to Flow.Launcher plugin website, check your conenction", e);
context.API.ShowMsg("PluginManagement.ResultForInstallPlugin: Can't connect to Wox plugin website, check your conenction");
Log.Exception("|PluginManagement.ResultForInstallPlugin|Can't connect to Wox plugin website, check your conenction", e);
return new List<Result>();
}
List<FlowLauncherPluginResult> searchedPlugins;
@ -131,7 +131,7 @@ namespace Flow.Launcher.Plugin.PluginManagement
catch (JsonSerializationException e)
{
context.API.ShowMsg("PluginManagement.ResultForInstallPlugin: Coundn't parse api search results, Please update your Flow.Launcher!");
Log.Exception("|PluginManagement.ResultForInstallPlugin|Coundn't parse api search results, Please update your Flow.Launcher!", e);
Log.Exception("|PluginManagement.ResultForInstallPlugin|Coundn't parse api search results, Please update your Flow Launcher!", e);
return results;
}
@ -212,11 +212,11 @@ namespace Flow.Launcher.Plugin.PluginManagement
$"Name: {plugin.Name}{Environment.NewLine}" +
$"Version: {plugin.Version}{Environment.NewLine}" +
$"Author: {plugin.Author}";
if (MessageBox.Show(content, "Flow.Launcher", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
if (MessageBox.Show(content, "Flow Launcher", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
{
File.Create(Path.Combine(plugin.PluginDirectory, "NeedDelete.txt")).Close();
var result = MessageBox.Show($"You have uninstalled plugin {plugin.Name} successfully.{Environment.NewLine}" +
"Restart Flow.Launcher to take effect?",
"Restart Flow Launcher to take effect?",
"Install plugin", MessageBoxButton.YesNo, MessageBoxImage.Question);
if (result == MessageBoxResult.Yes)
{

View file

@ -1,7 +1,7 @@
{
"ID":"D2D2C23B084D422DB66FE0C79D6C2A6A",
"ActionKeyword":"wpm",
"Name":"Flow.Launcher Plugin Management",
"Name":"Flow Launcher Plugin Management",
"Description":"Install/Remove/Update Flow Launcher plugins",
"Author":"qianlifeng",
"Version":"1.0",

View file

@ -23,7 +23,7 @@
<system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">Bitte wähle eine Programmquelle</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">Aktualisieren</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow.Launcher indexiert nur Datien mit folgenden Endungen:</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow Launcher indexiert nur Datien mit folgenden Endungen:</system:String>
<system:String x:Key="flowlauncher_plugin_program_split_by_tip">(Jede Endung muss durch ein ; getrennt werden)</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Dateiendungen wurden erfolgreich aktualisiert</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">Dateiendungen dürfen nicht leer sein</system:String>
@ -32,6 +32,6 @@
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Enthaltenden Ordner öffnen</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Programm</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Suche Programme mit Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Suche Programme mit Flow Launcher</system:String>
</ResourceDictionary>

View file

@ -26,7 +26,7 @@
<system:String x:Key="flowlauncher_plugin_program_delete_program_source">Are you sure you want to delete the selected program sources?</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">Update</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow.Launcher will only index files that end with the following suffixes:</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow Launcher will only index files that end with the following suffixes:</system:String>
<system:String x:Key="flowlauncher_plugin_program_split_by_tip">(Each suffix should split by ';' )</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Successfully updated file suffixes</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">File suffixes can't be empty</system:String>
@ -37,7 +37,7 @@
<system:String x:Key="flowlauncher_plugin_program_disable_program">Disable this program from displaying</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Program</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Search programs in Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Search programs in Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_program_invalid_path">Invalid Path</system:String>

View file

@ -24,7 +24,7 @@
<system:String x:Key="flowlauncher_plugin_program_delete_program_source">Are your sure to delete {0}?</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">Update</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow.Launcher will only index files that end with following suffixes:</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow Launcher will only index files that end with following suffixes:</system:String>
<system:String x:Key="flowlauncher_plugin_program_split_by_tip">(Each suffix should split by ;)</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Sucessfully update file suffixes</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">File suffixes can't be empty</system:String>
@ -33,6 +33,6 @@
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Open containing folder</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Program</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Search programs in Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Search programs in Flow Launcher</system:String>
</ResourceDictionary>

View file

@ -23,7 +23,7 @@
<system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">Musisz wybrać katalog programu</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">Aktualizuj</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow.Launcher będzie indeksował tylko te pliki z podanymi rozszerzeniami:</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow Launcher będzie indeksował tylko te pliki z podanymi rozszerzeniami:</system:String>
<system:String x:Key="flowlauncher_plugin_program_split_by_tip">(Każde rozszerzenie musi być oddzielone ;)</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Pomyślnie zaktualizowano rozszerzenia plików</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">Musisz podać rozszerzenia plików</system:String>
@ -32,6 +32,6 @@
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">Otwórz folder zawierający</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Programy</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Szukaj i uruchamiaj programy z poziomu Flow.Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Szukaj i uruchamiaj programy z poziomu Flow Launchera</system:String>
</ResourceDictionary>

View file

@ -23,7 +23,7 @@
<system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">İşlem yapmak istediğiniz klasörü seçin.</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">Güncelle</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow.Launcher yalnızca aşağıdaki uzantılara sahip dosyaları indeksleyecektir:</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow Launcher yalnızca aşağıdaki uzantılara sahip dosyaları indeksleyecektir:</system:String>
<system:String x:Key="flowlauncher_plugin_program_split_by_tip">(Her uzantıyı ; işareti ile ayırın)</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Dosya uzantıları başarıyla güncellendi</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">Dosya uzantıları boş olamaz</system:String>
@ -32,7 +32,7 @@
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">İçeren Klasörü Aç</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">Program</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Programları Flow.Launcher'tan arayın</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">Programları Flow Launcher'tan arayın</system:String>
<system:String x:Key="flowlauncher_plugin_program_invalid_path">Geçersiz Konum</system:String>

View file

@ -23,7 +23,7 @@
<system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">请先选择一项</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">更新</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow.Launcher仅索引下列后缀的文件</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow Launcher仅索引下列后缀的文件</system:String>
<system:String x:Key="flowlauncher_plugin_program_split_by_tip">(每个后缀以英文状态下的分号分隔)</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">成功更新索引文件后缀</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">文件后缀不能为空</system:String>
@ -32,7 +32,7 @@
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">打开所属文件夹</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">程序</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">在Flow.Launcher中搜索程序</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">在Flow Launcher中搜索程序</system:String>
<system:String x:Key="flowlauncher_plugin_program_invalid_path">无效路径</system:String>

View file

@ -23,7 +23,7 @@
<system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">請先選擇一項</system:String>
<system:String x:Key="flowlauncher_plugin_program_update">更新</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow.Launcher 僅索引下列副檔名的檔案:</system:String>
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Flow Launcher 僅索引下列副檔名的檔案:</system:String>
<system:String x:Key="flowlauncher_plugin_program_split_by_tip">(每個副檔名以英文的分號分隔)</system:String>
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">成功更新索引副檔名清單</system:String>
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">副檔名不能為空</system:String>
@ -32,5 +32,5 @@
<system:String x:Key="flowlauncher_plugin_program_open_containing_folder">開啟檔案位置</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_name">程式</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">在 Flow.Launcher 中搜尋程式</system:String>
<system:String x:Key="flowlauncher_plugin_program_plugin_description">在 Flow Launcher 中搜尋程式</system:String>
</ResourceDictionary>

View file

@ -12,7 +12,7 @@ using Flow.Launcher.Infrastructure.UserSettings;
namespace Flow.Launcher.Plugin.Program.Logger
{
/// <summary>
/// The Program plugin has seen many issues recorded in the Flow.Launcher repo related to various loading of Windows programs.
/// The Program plugin has seen many issues recorded in the Flow Launcher repo related to various loading of Windows programs.
/// This is a dedicated logger for this Program plugin with the aim to output a more friendlier message and clearer
/// log that will allow debugging to be quicker and easier.
/// </summary>
@ -63,7 +63,7 @@ namespace Flow.Launcher.Plugin.Program.Logger
{
if (IsKnownWinProgramError(e, callingMethodName) || IsKnownUWPProgramError(e, callingMethodName))
{
possibleResolution = "Can be ignored and Flow.Launcher should still continue, however the program may not be loaded";
possibleResolution = "Can be ignored and Flow Launcher should still continue, however the program may not be loaded";
errorStatus = "KNOWN";
}
@ -92,7 +92,7 @@ namespace Flow.Launcher.Plugin.Program.Logger
/// <summary>
/// Please follow exception format: |class name|calling method name|loading program path|user friendly message that explains the error
/// => Example: |Win32|LnkProgram|c:\..\chrome.exe|Permission denied on directory, but Flow.Launcher should continue
/// => Example: |Win32|LnkProgram|c:\..\chrome.exe|Permission denied on directory, but Flow Launcher should continue
/// </summary>
[MethodImpl(MethodImplOptions.Synchronized)]
internal static void LogException(string message, Exception e)

View file

@ -377,7 +377,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
if (!string.IsNullOrWhiteSpace(resourceReference) && resourceReference.StartsWith(prefix))
{
// magic comes from @talynone
// https://github.com/talynone/Flow.Launcher.Plugin.WindowsUniversalAppLauncher/blob/master/StoreAppLauncher/Helpers/NativeApiHelper.cs#L139-L153
// https://github.com/talynone/Wox.Plugin.WindowsUniversalAppLauncher/blob/master/StoreAppLauncher/Helpers/NativeApiHelper.cs#L139-L153
string key = resourceReference.Substring(prefix.Length);
string parsed;
if (key.StartsWith("//"))
@ -413,7 +413,7 @@ namespace Flow.Launcher.Plugin.Program.Programs
}
else
{
// https://github.com/Flow.Launcher-launcher/Flow.Launcher/issues/964
// https://github.com/Wox-launcher/Wox/issues/964
// known hresult 2147942522:
// 'Microsoft Corporation' violates pattern constraint of '\bms-resource:.{1,256}'.
// for

View file

@ -5,7 +5,7 @@
<system:String x:Key="flowlauncher_plugin_cmd_relace_winr">Ersetzt Win+R</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">Schließe die Kommandozeilte nicht nachdem der Befehl ausgeführt wurde</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Kommandozeile</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Bereitstellung der Kommandozeile in Flow.Launcher. Befehle müssem mit > starten</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Bereitstellung der Kommandozeile in Flow Launcher. Befehle müssem mit > starten</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">Dieser Befehl wurde {0} mal ausgeführt</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">Führe Befehle mittels Kommandozeile aus</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Als Administrator ausführen</system:String>

View file

@ -7,7 +7,7 @@
<system:String x:Key="flowlauncher_plugin_cmd_always_run_as_administrator">Always run as administrator</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_different_user">Run as different user</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Shell</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Allows to execute system commands from Flow.Launcher. Commands should start with ></system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Allows to execute system commands from Flow Launcher. Commands should start with ></system:String>
<system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">this command has been executed {0} times</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">execute command through command shell</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Run As Administrator</system:String>

View file

@ -5,7 +5,7 @@
<system:String x:Key="flowlauncher_plugin_cmd_relace_winr">Zastąp Win+R</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">Nie zamykaj wiersza poleceń po wykonaniu polecenia</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Wiersz poleceń</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Pozwala wykonywać komend wiersza polecania z Flow.Launchera. Polecania zaczynają się od ></system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Pozwala wykonywać komend wiersza polecania z Flow Launchera. Polecania zaczynają się od ></system:String>
<system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">to polecenie zostało wykonane {0} razy</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">wykonaj to polecenie w wierszu poleceń</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Uruchom jako administrator</system:String>

View file

@ -5,7 +5,7 @@
<system:String x:Key="flowlauncher_plugin_cmd_relace_winr">Win+R kısayolunu kullan</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">Çalıştırma sona erdikten sonra komut istemini kapatma</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_name">Kabuk</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Flow.Launcher üzerinden komut istemini kullanmanızı sağlar. Komutlar > işareti ile başlamalıdır.</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">Flow Launcher üzerinden komut istemini kullanmanızı sağlar. Komutlar > işareti ile başlamalıdır.</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">Bu komut {0} kez çalıştırıldı</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">Komut isteminde çalıştır</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">Yönetici Olarak Çalıştır</system:String>

View file

@ -5,7 +5,7 @@
<system:String x:Key="flowlauncher_plugin_cmd_relace_winr">替换 Win+R</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">执行后不关闭命令窗口</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_name">命令行</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">提供从Flow.Launcher中执行命令行的能力命令应该以>开头</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">提供从Flow Launcher中执行命令行的能力命令应该以>开头</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">此命令已经被执行了 {0} 次</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">执行此命令</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">以管理员身份运行</system:String>

View file

@ -5,7 +5,7 @@
<system:String x:Key="flowlauncher_plugin_cmd_relace_winr">取代 Win+R</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_leave_cmd_open">執行後不關閉命令提示字元視窗</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_name">命令提示字元</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">提供從 Flow.Launcher 中執行命令提示字元的功能,指令應該以>開頭</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_plugin_description">提供從 Flow Launcher 中執行命令提示字元的功能,指令應該以>開頭</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_cmd_has_been_executed_times">此指令已執行了 {0} 次</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_execute_through_shell">執行指令</system:String>
<system:String x:Key="flowlauncher_plugin_cmd_run_as_administrator">以系統管理員身分執行</system:String>

View file

@ -2,7 +2,7 @@
"ID":"D409510CD0D2481F853690A07E6DC426",
"ActionKeyword":">",
"Name":"Shell",
"Description":"Provide executing commands from Flow.Launcher. Commands should start with >",
"Description":"Provide executing commands from Flow Launcher. Commands should start with >",
"Author":"qianlifeng",
"Version":"1.0.0",
"Language":"csharp",

View file

@ -9,8 +9,8 @@
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">Computer neu starten</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">Abmelden</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">Computer sperren</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Flow.Launcher schließen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Flow.Launcher neu starten</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Flow Launcher schließen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Flow Launcher neu starten</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">Anwendung beschleunigen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">Computer in Schlafmodus versetzen</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Papierkorb leeren</system:String>

View file

@ -10,18 +10,18 @@
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">Restart Computer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">Log off</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">Lock this computer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Close Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Restart Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Close Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Restart Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">Tweak this app</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">Put computer to sleep</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Empty recycle bin</system:String>
<system:String x:Key="flowlauncher_plugin_sys_hibernate">Hibernate computer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Save all Flow.Launcher settings</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Reloads plugin data with new content added after Flow.Launcher started. Plugins need to have this feature already added.</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Save all Flow Launcher settings</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Reloads plugin data with new content added after Flow Launcher started. Plugins need to have this feature already added.</system:String>
<!--Dialogs-->
<system:String x:Key="flowlauncher_plugin_sys_dlgtitle_success">Success</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">All Flow.Launcher settings saved</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">All Flow Launcher settings saved</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_applicableplugins_reloaded">Reloaded all applicable plugin data</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_shutdown_computer">Are you sure you want to shut the computer down?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer">Are you sure you want to restart the computer?</system:String>

View file

@ -9,8 +9,8 @@
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">コンピュータを再起動する</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">ログオフ</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">このコンピュータをロックする</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Flow.Launcherを終了する</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Flow.Launcherを再起動する</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Flow Launcherを終了する</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Flow Launcherを再起動する</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">このアプリの設定</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">スリープ</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">ゴミ箱を空にする</system:String>

View file

@ -9,8 +9,8 @@
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">Uruchom ponownie komputer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">Wyloguj się</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">Zablokuj ten komputer</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Wyłącz Flow.Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Uruchom ponownie Flow.Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Wyłącz Flow Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Uruchom ponownie Flow Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">Dostosuj ustawienia</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">Przełącz komputer w tryb uśpienia</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Opróżnij kosz</system:String>

View file

@ -10,18 +10,18 @@
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">Yeniden Başlat</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">Oturumu Kapat</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">Bilgisayarı Kilitle</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Flow.Launcher'u Kapat</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Flow.Launcher'u Yeniden Başlat</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">Flow.Launcher Ayarlarını Aç</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">Flow Launcher'u Kapat</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">Flow Launcher'u Yeniden Başlat</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">Flow Launcher Ayarlarını Aç</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">Bilgisayarı Uyku Moduna Al</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">Geri Dönüşüm Kutusunu Boşalt</system:String>
<system:String x:Key="flowlauncher_plugin_sys_hibernate">Bilgisayarı Askıya Al</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Tüm Flow.Launcher Ayarlarını Kaydet</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Eklentilerin verilerini Flow.Launcher'un açılışından sonra yapılan değişiklikleri için günceller. Eklentilerin bu özelliği zaten eklemiş olması gerekir.</system:String>
<system:String x:Key="flowlauncher_plugin_sys_save_all_settings">Tüm Flow Launcher Ayarlarını Kaydet</system:String>
<system:String x:Key="flowlauncher_plugin_sys_reload_plugin_data">Eklentilerin verilerini Flow Launcher'un açılışından sonra yapılan değişiklikleri için günceller. Eklentilerin bu özelliği zaten eklemiş olması gerekir.</system:String>
<!--Diyaloglar-->
<system:String x:Key="flowlauncher_plugin_sys_dlgtitle_success">Başarılı</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">Tüm Flow.Launcher ayarları kaydedildi.</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_all_settings_saved">Tüm Flow Launcher ayarları kaydedildi.</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_shutdown_computer">Bilgisayarı kapatmak istediğinize emin misiniz?</system:String>
<system:String x:Key="flowlauncher_plugin_sys_dlgtext_restart_computer">Bilgisayarı yeniden başlatmak istediğinize emin misiniz?</system:String>

View file

@ -9,8 +9,8 @@
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">重启这台电脑</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">注销</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">锁定这台电脑</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">退出Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">重启Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">退出Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">重启Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">设置</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">休眠这台电脑</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">清空回收站</system:String>

View file

@ -9,8 +9,8 @@
<system:String x:Key="flowlauncher_plugin_sys_restart_computer">電腦重新啟動</system:String>
<system:String x:Key="flowlauncher_plugin_sys_log_off">登出</system:String>
<system:String x:Key="flowlauncher_plugin_sys_lock">鎖定電腦</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">退出Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">重新啟動 Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_exit">退出Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_restart">重新啟動 Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_sys_setting">設定</system:String>
<system:String x:Key="flowlauncher_plugin_sys_sleep">睡眠</system:String>
<system:String x:Key="flowlauncher_plugin_sys_emptyrecyclebin">清空資源回收桶</system:String>

View file

@ -200,7 +200,7 @@ namespace Flow.Launcher.Plugin.Sys
},
new Result
{
Title = "Restart Flow.Launcher",
Title = "Restart Flow Launcher",
SubTitle = context.API.GetTranslation("flowlauncher_plugin_sys_restart"),
IcoPath = "Images\\app.png",
Action = c =>
@ -238,7 +238,7 @@ namespace Flow.Launcher.Plugin.Sys
new Result
{
Title = "Check For Update",
SubTitle = "Check for new Flow.Launcher update",
SubTitle = "Check for new Flow Launcher update",
IcoPath = "Images\\checkupdate.png",
Action = c =>
{

View file

@ -6,6 +6,6 @@
<system:String x:Key="flowlauncher_plugin_url_canot_open_url">Kann URL nicht öffnen:{0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Öffne eine eingegebene URL mit Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Öffne eine eingegebene URL mit Flow Launcher</system:String>
</ResourceDictionary>

View file

@ -6,7 +6,7 @@
<system:String x:Key="flowlauncher_plugin_url_canot_open_url">Can't open url:{0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Open the typed URL from Flow.Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Open the typed URL from Flow Launcher</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_set_tip">Please set your browser path:</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_choose">Choose</system:String>

View file

@ -6,6 +6,6 @@
<system:String x:Key="flowlauncher_plugin_url_canot_open_url">次のURLを開くことができません:{0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">入力したURLをFlow.Launcherから開くプラグインです。</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">入力したURLをFlow Launcherから開くプラグインです。</system:String>
</ResourceDictionary>

View file

@ -6,6 +6,6 @@
<system:String x:Key="flowlauncher_plugin_url_canot_open_url">Nie udało się otworzyć adresu: {0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Otwórz wpisany adres URL z poziomu Flow.Launchera</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Otwórz wpisany adres URL z poziomu Flow Launchera</system:String>
</ResourceDictionary>

View file

@ -6,7 +6,7 @@
<system:String x:Key="flowlauncher_plugin_url_canot_open_url">URL Açılamıyor: {0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Flow.Launcher'a yazılan URL'leri açar</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">Flow Launcher'a yazılan URL'leri açar</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_set_tip">Tarayıcınızın konumunu ayarlayın:</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_choose">Seç</system:String>

View file

@ -6,7 +6,7 @@
<system:String x:Key="flowlauncher_plugin_url_canot_open_url">无法打开链接:{0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">从Flow.Launcher打开链接</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">从Flow Launcher打开链接</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_set_tip">请设置你的浏览器路径:</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_choose">选择</system:String>

View file

@ -6,6 +6,6 @@
<system:String x:Key="flowlauncher_plugin_url_canot_open_url">無法開啟連結:{0}</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_name">URL</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">從 Flow.Launcher 開啟連結</system:String>
<system:String x:Key="flowlauncher_plugin_url_plugin_description">從 Flow Launcher 開啟連結</system:String>
</ResourceDictionary>

View file

@ -2,7 +2,7 @@
"ID":"0308FD86DE0A4DEE8D62B9B535370992",
"ActionKeyword":"*",
"Name":"URL",
"Description":"Open the typed URL from Flow.Launcher",
"Description":"Open the typed URL from Flow Launcher",
"Author":"qianlifeng",
"Version":"1.0.0",
"Language":"csharp",

View file

@ -6,7 +6,7 @@
"Author":"happlebao",
"Version":"1.0.0",
"Language":"csharp",
"Website":"https://github.com/Flow.Launcher-launcher/Flow.Launcher",
"Website":"https://github.com/Wox-launcher/Wox",
"ExecuteFileName":"HelloWorldCSharp.dll",
"IcoPath":"app.png",
"Disabled": true

View file

@ -6,7 +6,7 @@
"Author":"happlebao",
"Version":"1.0",
"Language":"python",
"Website":"https://github.com/Flow.Launcher-launcher/Flow.Launcher",
"Website":"https://github.com/wox-launcher/wox",
"IcoPath":"Images\\app.png",
"ExecuteFileName":"main.py"
}

View file

@ -2,13 +2,13 @@
<package>
<metadata>
<id>Flow.Launcher-JJW24</id>
<title>Flow.Launcher</title>
<title>Flow Launcher</title>
<version>$version$</version>
<authors>happlebao, Jeremy Wu</authors>
<projectUrl>https://github.com/jjw24/Flow.Launcher</projectUrl>
<iconUrl>https://raw.githubusercontent.com/jjw24/Flow.Launcher/master/Flow.Launcher/Images/app.png</iconUrl>
<projectUrl>https://github.com/Flow-Launcher/Flow.Launcher</projectUrl>
<iconUrl>https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher/master/Flow.Launcher/Images/app.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Flow.Launcher - a launcher for windows</description>
<description>Flow Launcher - a launcher for windows</description>
</metadata>
<files>
<file src="**\*.*" target="lib\net45\" exclude="Flow.Launcher.vshost.exe;Flow.Launcher.vshost.exe.config;Flow.Launcher.vshost.exe.manifest;*.nupkg;Setup.exe;RELEASES"/>

View file

@ -4,8 +4,8 @@
<id>Flow.Launcher.Plugin</id>
<version>$version$</version>
<authors>qianlifeng, Jeremy Wu</authors>
<licenseUrl>https://github.com/jjw24/Flow.Launcher/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/jjw24/Flow.Launcher</projectUrl>
<licenseUrl>https://github.com/Flow-Launcher/Flow.Launcher/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/Flow-Launcher/Flow.Launcher</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Reference this library if you want to develop a Flow Launcher plugin</description>
<tags>flowlauncher</tags>

View file

@ -4,14 +4,14 @@ using System.Runtime.InteropServices;
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
[assembly: AssemblyDescription("Debug build, https://github.com/jjw24/Flow.Launcher")]
[assembly: AssemblyDescription("Debug build, https://github.com/Flow-Launcher/Flow.Launcher")]
#else
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyDescription("Release build, https://github.com/jjw24/Flow.Launcher")]
[assembly: AssemblyDescription("Release build, https://github.com/Flow-Launcher/Flow.Launcher")]
#endif
[assembly: AssemblyCompany("Flow.Launcher")]
[assembly: AssemblyProduct("Flow.Launcher")]
[assembly: AssemblyCompany("Flow Launcher")]
[assembly: AssemblyProduct("Flow Launcher")]
[assembly: AssemblyCopyright("The MIT License (MIT)")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]