pub enum TranslationKey {
Show 84 variants
Title,
Score,
Best,
Moves,
Time,
NewGame,
Undo,
GameOver,
Congratulations,
YouWon,
PressRToRestart,
ContinuePlaying,
Controls,
MoveTiles,
Restart,
UndoMove,
CycleTheme,
SelectTheme,
ThemeHelp,
ReplayMode,
StatisticsCharts,
AIMode,
Help,
Quit,
ReplayModeTitle,
StartRecording,
LoadReplay,
ListReplays,
BackToMenu,
PlayPause,
StepThrough,
AdjustSpeed,
StopRecording,
AIModeTitle,
ToggleAutoPlay,
SwitchAlgorithm,
AdjustSpeedAI,
ExitImmediately,
Greedy,
Expectimax,
MCTS,
ChartsTitle,
Summary,
ScoreTrend,
EfficiencyTrend,
TileAchievements,
RecentGames,
NavigateCharts,
ToggleCharts,
Statistics,
GamesPlayed,
GamesWon,
WinRate,
HighestScore,
AverageScore,
TotalMoves,
AverageMoves,
TotalPlayTime,
AverageDuration,
HighestTile,
ScoreDistribution,
LowScore,
MediumScore,
HighScore,
VeryHighScore,
NoDataAvailable,
NoGamesPlayed,
NoRecentGames,
ThemeClassic,
ThemeDark,
ThemeNeon,
ThemeRetro,
ThemePastel,
AvailableThemes,
PressTToCycle,
PressNumbersToSelect,
Loading,
Error,
Success,
Warning,
Info,
Hours,
Minutes,
Seconds,
}Expand description
Translation keys
Variants§
Title
Score
Best
Moves
Time
NewGame
Undo
GameOver
Congratulations
YouWon
PressRToRestart
ContinuePlaying
Controls
MoveTiles
Restart
UndoMove
CycleTheme
SelectTheme
ThemeHelp
ReplayMode
StatisticsCharts
AIMode
Help
Quit
ReplayModeTitle
StartRecording
LoadReplay
ListReplays
BackToMenu
PlayPause
StepThrough
AdjustSpeed
StopRecording
AIModeTitle
ToggleAutoPlay
SwitchAlgorithm
AdjustSpeedAI
ExitImmediately
Greedy
Expectimax
MCTS
ChartsTitle
Summary
ScoreTrend
EfficiencyTrend
TileAchievements
RecentGames
ToggleCharts
Statistics
GamesPlayed
GamesWon
WinRate
HighestScore
AverageScore
TotalMoves
AverageMoves
TotalPlayTime
AverageDuration
HighestTile
ScoreDistribution
LowScore
MediumScore
HighScore
VeryHighScore
NoDataAvailable
NoGamesPlayed
NoRecentGames
ThemeClassic
ThemeDark
ThemeNeon
ThemeRetro
ThemePastel
AvailableThemes
PressTToCycle
PressNumbersToSelect
Loading
Error
Success
Warning
Info
Hours
Minutes
Seconds
Trait Implementations§
Source§impl Clone for TranslationKey
impl Clone for TranslationKey
Source§fn clone(&self) -> TranslationKey
fn clone(&self) -> TranslationKey
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TranslationKey
impl Debug for TranslationKey
Source§impl Hash for TranslationKey
impl Hash for TranslationKey
Source§impl PartialEq for TranslationKey
impl PartialEq for TranslationKey
impl Eq for TranslationKey
impl StructuralPartialEq for TranslationKey
Auto Trait Implementations§
impl Freeze for TranslationKey
impl RefUnwindSafe for TranslationKey
impl Send for TranslationKey
impl Sync for TranslationKey
impl Unpin for TranslationKey
impl UnwindSafe for TranslationKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more