diff --git a/Languages/English/Keyed/Keyed-English.xml b/Languages/English/Keyed/Keyed-English.xml index 1d18a97..0def170 100644 --- a/Languages/English/Keyed/Keyed-English.xml +++ b/Languages/English/Keyed/Keyed-English.xml @@ -21,6 +21,8 @@ Should times be shown in 12h (e.g. noon, 9p.m.) or 24h (e.g. 12:00, 21:00) mode? Levels of priority How many levels of priority should we use? (Limited to between 4 and 9) + Default priority + Which level of priority is assigned by default? Sounds Play sounds when a priority is changed? Crunchy sounds @@ -77,4 +79,4 @@ Very low priority Lowest priority - \ No newline at end of file + diff --git a/Source/Favourites/FavouriteManager.cs b/Source/Favourites/FavouriteManager.cs index ae256d9..f3890e9 100644 --- a/Source/Favourites/FavouriteManager.cs +++ b/Source/Favourites/FavouriteManager.cs @@ -179,7 +179,7 @@ private static void LoadFavouriteFloatMenu(Pawn pawn) .ToList(); if (options.Count == 0) { - options.Add(new FloatMenuOption("Fluffy.WorkTab.NoStoredFavourites", null)); + options.Add(new FloatMenuOption("Fluffy.WorkTab.NoStoredFavourites".Translate(), null)); } Find.WindowStack.Add(new FloatMenu(options)); } @@ -191,4 +191,4 @@ public override void ExposeData() Scribe_Collections.Look(ref _favourites, "FavouriteAssignments", LookMode.Reference, LookMode.Reference); } } -} \ No newline at end of file +}