Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

General fixes #16

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,18 @@
bin/
obj/
setup/

# Copied from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets
26 changes: 13 additions & 13 deletions ilSFV/Localization/Language.Generated.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
namespace ilSFV.Localization
{
public static partial class Language
{
public static General General { get; private set; }
public static Startup Startup { get; private set; }
public static MainForm MainForm { get; private set; }
public static PreferencesForm PreferencesForm { get; private set; }
public static ReleaseNotesForm ReleaseNotesForm { get; private set; }
public static RemoveDuplicatesForm RemoveDuplicatesForm { get; private set; }
public static ExceptionForm ExceptionForm { get; private set; }
}
}
namespace ilSFV.Localization
{
public static partial class Language
{
public static General General { get; private set; }
public static Startup Startup { get; private set; }
public static MainForm MainForm { get; private set; }
public static PreferencesForm PreferencesForm { get; private set; }
public static ReleaseNotesForm ReleaseNotesForm { get; private set; }
public static RemoveDuplicatesForm RemoveDuplicatesForm { get; private set; }
public static ExceptionForm ExceptionForm { get; private set; }
}
}
Loading