added "Set file type" command.

This commit is contained in:
morkt
2015-08-23 07:35:05 +04:00
parent 31842bdea5
commit ab19d0b0e3
8 changed files with 90 additions and 6 deletions

View File

@@ -168,6 +168,15 @@ namespace GARbro.GUI.Strings {
}
}
/// <summary>
/// Looks up a localized string similar to Set file type.
/// </summary>
public static string CtxMenuFileType {
get {
return ResourceManager.GetString("CtxMenuFileType", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Open.
/// </summary>
@@ -1036,5 +1045,14 @@ namespace GARbro.GUI.Strings {
return ResourceManager.GetString("Type_directory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to none.
/// </summary>
public static string Type_NONE {
get {
return ResourceManager.GetString("Type_NONE", resourceCulture);
}
}
}
}