mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 09:46:54 +02:00
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Feedback from the design team: - Reduce any redundant or long text strings for better readability and localization - `Verb + noun` for most extensions - Sentence casing according to the Windows Writing Guidelines <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] Closes: #xxx - [ ] **Communication:** I've discussed this with core contributors already. If the work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end-user-facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed, or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed --------- Co-authored-by: Michael Jolley <mike@baldbeardedbuilder.com> Co-authored-by: Jiří Polášek <me@jiripolasek.com>
937 lines
38 KiB
C#
937 lines
38 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Runtime Version:4.0.30319.42000
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace Microsoft.CmdPal.Ext.TimeDate {
|
|
using System;
|
|
|
|
|
|
/// <summary>
|
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
|
/// </summary>
|
|
// This class was auto-generated by the StronglyTypedResourceBuilder
|
|
// class via a tool like ResGen or Visual Studio.
|
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
|
// with the /str option, or rebuild your VS project.
|
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
|
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
|
public class Resources {
|
|
|
|
private static global::System.Resources.ResourceManager resourceMan;
|
|
|
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
|
|
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
|
internal Resources() {
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the cached ResourceManager instance used by this class.
|
|
/// </summary>
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
public static global::System.Resources.ResourceManager ResourceManager {
|
|
get {
|
|
if (object.ReferenceEquals(resourceMan, null)) {
|
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.CmdPal.Ext.TimeDate.Properties.Resources", typeof(Resources).Assembly);
|
|
resourceMan = temp;
|
|
}
|
|
return resourceMan;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Overrides the current thread's CurrentUICulture property for all
|
|
/// resource lookups using this strongly typed resource class.
|
|
/// </summary>
|
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
public static global::System.Globalization.CultureInfo Culture {
|
|
get {
|
|
return resourceCulture;
|
|
}
|
|
set {
|
|
resourceCulture = value;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Copy failed.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_copy_failed {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_copy_failed", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Copy value (Ctrl+C).
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_CopyToClipboard {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_CopyToClipboard", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Date.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Date {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Date", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Date and time.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_DateAndTime {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_DateAndTime", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Date and time UTC.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_DateAndTimeUtc {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_DateAndTimeUtc", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Day (Week day).
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Day {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Day", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Month and day.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_DayMonth {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_DayMonth", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Day of the month.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_DayOfMonth {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_DayOfMonth", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Day of the week (Week day).
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_DayOfWeek {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_DayOfWeek", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Day of the year.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_DayOfYear {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_DayOfYear", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Days in month.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_DaysInMonth {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_DaysInMonth", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Era.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Era {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Era", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Era abbreviation.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_EraAbbreviation {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_EraAbbreviation", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Failed to convert into custom format.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_ErrorConvertCustomFormat {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_ErrorConvertCustomFormat", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Not a valid Windows file time.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_ErrorConvertWft {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_ErrorConvertWft", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Excel's 1900 date value.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Excel1900 {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Excel1900", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Excel's 1904 date value.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Excel1904 {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Excel1904", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Open Time Data Command.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_fallback_display_title {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_fallback_display_title", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Date and time in filename-compatible format.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_filename_compatible {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_filename_compatible", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Hour.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Hour {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Hour", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Invalid custom format:.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_InvalidCustomFormat {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_InvalidCustomFormat", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Supported input.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_InvalidInput_DetailsHeader {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_InvalidInput_DetailsHeader", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Error: Invalid input.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_InvalidInput_ErrorMessageTitle {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_InvalidInput_ErrorMessageTitle", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Cannot parse the input as Excel's 1900 date value because it is a fake date. (In Excel 0 stands for 0/1/1900 and this date doesn't exist. And 60 stands for 2/29/1900 and this date only exists in Excel for compatibility with Lotus 123.).
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_InvalidInput_FakeExcel1900 {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_InvalidInput_FakeExcel1900", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to A {0}format name{0}, a {0}valid date or time value{0}, or a {0}prefixed number{0}. To search for a format in a specific date/time please use the syntax {0}format::date/time/number{0}.{1}Supported prefixes:{2}'{0}u{0}' for Unix Timestamp{2}'{0}ums{0}' for Unix Timestamp in milliseconds{2}'{0}ft{0}' for Windows file time{2}'{0}oa{0}' for OLE Automation Date{2}'{0}exc{0}' for Excel's 1900 date value{2}'{0}exf{0}' for Excel's 1904 date value.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_InvalidInput_SupportedInput {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_InvalidInput_SupportedInput", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Your input for {0} is outside the range **from {1} to {2}**..
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_InvalidInput_SupportedRange {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_InvalidInput_SupportedRange", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to ISO 8601.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Iso8601 {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Iso8601", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to ISO 8601 UTC.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Iso8601Utc {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Iso8601Utc", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to ISO 8601 with time zone.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Iso8601Zone {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Iso8601Zone", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to ISO 8601 UTC with time zone.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Iso8601ZoneUtc {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Iso8601ZoneUtc", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Leap year.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_LeapYear {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_LeapYear", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Open.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_main_page_name {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_main_page_name", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Time and date.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_main_page_title {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_main_page_title", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Millisecond.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Millisecond {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Millisecond", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Minute.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Minute {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Minute", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Month.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Month {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Month", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Month of the year.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_MonthOfYear {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_MonthOfYear", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Month and year.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_MonthYear {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_MonthYear", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Not a leap year.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_NoLeapYear {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_NoLeapYear", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Now.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Now {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Now", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Now UTC.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_NowUtc {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_NowUtc", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to OLE Automation Date.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_OADate {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_OADate", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Search values or type a custom time stamp....
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_placeholder_text {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_placeholder_text", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Show time and date values in different formats.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_plugin_description {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_plugin_description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Calendar week.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_plugin_description_example_calendarWeek {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_plugin_description_example_calendarWeek", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Day.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_plugin_description_example_day {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_plugin_description_example_day", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Time.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_plugin_description_example_time {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_plugin_description_example_time", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Time and date.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_plugin_name {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_plugin_name", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to RFC1123.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Rfc1123 {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Rfc1123", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Date and time; Time and Date; Custom format.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagCustom {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagCustom", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Current date and time; Current time and date; Now; Custom format.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagCustomNow {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagCustomNow", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Date and time UTC; Time UTC and Date; Custom UTC format.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagCustomUtc {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagCustomUtc", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Current date and time UTC; Current time UTC and date; Now UTC; Custom UTC format.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagCustomUtcNow {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagCustomUtcNow", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Date.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagDate {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagDate", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Current date; Now.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagDateNow {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagDateNow", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Year; Calendar era; Date.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagEra {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagEra", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Current year; Current calendar era; Current date; Now.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagEraNow {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagEraNow", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Date and time; Time and Date.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagFormat {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagFormat", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Current date and time; Current time and date; Now.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagFormatNow {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagFormatNow", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Time.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagTime {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagTime", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Current Time; Now.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagTimeNow {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagTimeNow", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Current Week; Calendar week; Week of the year; Week.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SearchTagWeek {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SearchTagWeek", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Second.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Second {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Second", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Custom formats.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Setting_CustomFormats {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Setting_CustomFormats", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Use date and time string format syntax and {0} (Day of Week), {1} (Days in Month), {2} (Week of Month), {3} (Week of the year), {4} (Era abbreviation), {5} (Windows File Time), {6} (Unix Time), {7} (Unix Time in milliseconds), {8} (OLE Automation date), {9} (Excel's 1900 based date value), {10} (Excel's 1904 based date value). If the format starts with {11}, then Universal Time (UTC) is used. (Use a backslash to escape format sequences and the backslash character as text.).
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Setting_CustomFormatsDescription {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Setting_CustomFormatsDescription", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Use system setting.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Setting_UseSystemSetting {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Setting_UseSystemSetting", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Show date with weekday and name of month.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingDateWithWeekday {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingDateWithWeekday", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to This setting applies to the 'Date' and 'Now' result..
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingDateWithWeekday_Description {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingDateWithWeekday_Description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Enable fallback items for TimeDate (week, year, now, time, date).
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingEnableFallbackItems {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingEnableFallbackItems", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Show time and date results when typing keywords like "week", "year", "now", "time", or "date".
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingEnableFallbackItems_Description {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingEnableFallbackItems_Description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to First day of the week.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstDayOfWeek {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstDayOfWeek", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Friday.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstDayOfWeek_Friday {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstDayOfWeek_Friday", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Monday.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstDayOfWeek_Monday {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstDayOfWeek_Monday", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Saturday.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstDayOfWeek_Saturday {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstDayOfWeek_Saturday", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Sunday.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstDayOfWeek_Sunday {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstDayOfWeek_Sunday", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Thursday.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstDayOfWeek_Thursday {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstDayOfWeek_Thursday", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Tuesday.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstDayOfWeek_Tuesday {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstDayOfWeek_Tuesday", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Wednesday.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstDayOfWeek_Wednesday {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstDayOfWeek_Wednesday", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to First week of the year.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstWeekRule {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstWeekRule", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Configure the calendar rule for the first week of the year..
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstWeekRule_Description {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstWeekRule_Description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to First day of year.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstWeekRule_FirstDay {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstWeekRule_FirstDay", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to First four day week.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstWeekRule_FirstFourDayWeek {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstWeekRule_FirstFourDayWeek", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to First full week.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingFirstWeekRule_FirstFullWeek {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingFirstWeekRule_FirstFullWeek", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Show time with seconds.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingTimeWithSeconds {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingTimeWithSeconds", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to This setting applies to the 'Time' and 'Now' result..
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SettingTimeWithSeconds_Description {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SettingTimeWithSeconds_Description", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Select for more details..
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_show_details {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_show_details", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Select or press Ctrl+C to copy.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_SubTitleNote {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_SubTitleNote", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Time.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Time {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Time", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Time UTC.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_TimeUtc {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_TimeUtc", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Alternative search tags:.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_ToolTipAlternativeSearchTag {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_ToolTipAlternativeSearchTag", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Universal time format: YYYY-MM-DD hh:mm:ss.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_UniversalTime {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_UniversalTime", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Unix epoch time.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Unix {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Unix", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Unix epoch time in milliseconds.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Unix_Milliseconds {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Unix_Milliseconds", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Week of the month.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_WeekOfMonth {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_WeekOfMonth", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Week of the year (Calendar week, Week number).
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_WeekOfYear {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_WeekOfYear", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Windows file time (Int64 number).
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_WindowsFileTime {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_WindowsFileTime", resourceCulture);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Looks up a localized string similar to Year.
|
|
/// </summary>
|
|
public static string Microsoft_plugin_timedate_Year {
|
|
get {
|
|
return ResourceManager.GetString("Microsoft_plugin_timedate_Year", resourceCulture);
|
|
}
|
|
}
|
|
}
|
|
}
|