Skip to content

Commit

Permalink
Added German translation & changed contact URL and mail.
Browse files Browse the repository at this point in the history
  • Loading branch information
markusdosch committed Feb 15, 2016
1 parent 13bf6cb commit 0bb4a26
Show file tree
Hide file tree
Showing 11 changed files with 209 additions and 210 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
### RegexRenamer
Fork from http://regexrenamer.sourceforge.net/. Because SourceForge is bloated with adware in nowadays, I put it on GitHub.
Fork from http://regexrenamer.sourceforge.net/. Because SourceForge is bloated with adware in nowadays, I put it on GitHub and added a German version. Right now you can either download the German or the English version, there is no language chooser.
6 changes: 3 additions & 3 deletions RegexRenamer/About.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions RegexRenamer/About.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* =============================================================================
* RegexRenamer Copyright (c) 2011 Xiperware
* http://regexrenamer.sourceforge.net/ xiperware@gmail.com
* https://github.com/Sukram21/RegexRenamer/ sukram.mueller@gmail.com
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License v2, as published by the Free
Expand Down Expand Up @@ -46,7 +46,7 @@ private void linkHomepage_LinkClicked( object sender, LinkLabelLinkClickedEventA
{
try
{
Process.Start( "http://regexrenamer.sourceforge.net/" );
Process.Start( "https://github.com/Sukram21/RegexRenamer/" );
}
catch( Exception e )
{
Expand All @@ -57,7 +57,7 @@ private void linkEmail_LinkClicked( object sender, LinkLabelLinkClickedEventArgs
{
try
{
Process.Start( "mailto:xiperware@gmail.com" );
Process.Start( "mailto:sukram.mueller@gmail.com" );
}
catch( Exception e )
{
Expand Down
8 changes: 4 additions & 4 deletions RegexRenamer/Classes.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* =============================================================================
* RegexRenamer Copyright (c) 2011 Xiperware
* http://regexrenamer.sourceforge.net/ xiperware@gmail.com
* https://github.com/Sukram21/RegexRenamer/ sukram.mueller@gmail.com
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License v2, as published by the Free
Expand Down Expand Up @@ -179,9 +179,9 @@ public void ReportError( string oldname, string newname, string error )
public void ShowErrorDialog( string strFile )
{
int countTotal = countSuccess + countErrors;
errorDialog.Message = "The following " + ( countErrors == 1 ? "error" : "errors" )
+ " occured during the batch rename.\n" + countSuccess + " of " + countTotal + " " + strFile
+ ( countTotal == 1 ? " was" : "s were" ) + " renamed successfully.";
errorDialog.Message = ( countErrors == 1 ? "Der folgende Fehler" : "Die folgenden Fehler" )
+ " traten während der Stapel-Umbenennung auf.\n" + countSuccess + " von " + countTotal + " " + strFile
+ ( countTotal == 1 ? " wurde" : " wurden" ) + " erfolgreich umbenannt.";
errorDialog.AutoSizeColumns();
errorDialog.ShowDialog();
}
Expand Down
Loading

0 comments on commit 0bb4a26

Please sign in to comment.