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 9aa454f..879b0e6 100644 --- a/Source/Favourites/FavouriteManager.cs +++ b/Source/Favourites/FavouriteManager.cs @@ -179,7 +179,7 @@ private static void LoadFavouriteFloatMenu(Pawn pawn) { () => LoadFavourite(f.path, 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)); }