Skip to content

Commit c9a9e72

Browse files
SteveAmormark9064
authored andcommitted
Removes redundant words to save space
1 parent ba1934f commit c9a9e72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/displayapp/screens/WatchFaceAnalog.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ namespace Pinetime {
9191
template <>
9292
struct WatchFaceTraits<WatchFace::Analog> {
9393
static constexpr WatchFace watchFace = WatchFace::Analog;
94-
static constexpr const char* name = "Analog face";
94+
static constexpr const char* name = "Analog";
9595

9696
static Screens::Screen* Create(AppControllers& controllers) {
9797
return new Screens::WatchFaceAnalog(controllers.dateTimeController,

src/displayapp/screens/WatchFaceDigital.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ namespace Pinetime {
8080
template <>
8181
struct WatchFaceTraits<WatchFace::Digital> {
8282
static constexpr WatchFace watchFace = WatchFace::Digital;
83-
static constexpr const char* name = "Digital face";
83+
static constexpr const char* name = "Digital";
8484

8585
static Screens::Screen* Create(AppControllers& controllers) {
8686
return new Screens::WatchFaceDigital(controllers.dateTimeController,

src/displayapp/screens/WatchFaceInfineat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ namespace Pinetime {
104104
template <>
105105
struct WatchFaceTraits<WatchFace::Infineat> {
106106
static constexpr WatchFace watchFace = WatchFace::Infineat;
107-
static constexpr const char* name = "Infineat face";
107+
static constexpr const char* name = "Infineat";
108108

109109
static Screens::Screen* Create(AppControllers& controllers) {
110110
return new Screens::WatchFaceInfineat(controllers.dateTimeController,

0 commit comments

Comments
 (0)