mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-07-10 13:29:52 -04:00
Compare commits
2 commits
a5853b1173
...
7d88ab4ef4
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7d88ab4ef4 | ||
|
|
d6d4ff7af2 |
4 changed files with 40 additions and 8 deletions
|
|
@ -15312,13 +15312,13 @@
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
id: LANG_VOICED_DATE_FORMAT
|
id: LANG_VOICED_DATE_FORMAT
|
||||||
desc: format string for how dates will be read back. Y == 4-digit year, A == month name, m == numeric month, d == numeric day. For example, "AdY" will read "January 21 2021"
|
desc: format string for how dates will be read back. Y == 4-digit year (grouped), y == 4-digit year (numeric), A == month name, m == numeric month, d == numeric day. For example, for 2021-01-05, "AdY" will be voiced as "January 5 twenty twenty-one" and "dmy" will be voiced as "5 1 two thousand twenty one
|
||||||
user: core
|
user: core
|
||||||
<source>
|
<source>
|
||||||
*: "dAY"
|
*: "dAY"
|
||||||
</source>
|
</source>
|
||||||
<dest>
|
<dest>
|
||||||
*: "dAY"
|
*: "~dAY"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: ""
|
||||||
|
|
@ -16965,3 +16965,17 @@
|
||||||
*: "Anunțare stare"
|
*: "Anunțare stare"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
|
<phrase>
|
||||||
|
id: LANG_KEEP_DIRECTORY
|
||||||
|
desc: file browser setting
|
||||||
|
user: core
|
||||||
|
<source>
|
||||||
|
*: "Always remember last folder"
|
||||||
|
</source>
|
||||||
|
<dest>
|
||||||
|
*: "Ține minte mereu ultimul dosar"
|
||||||
|
</dest>
|
||||||
|
<voice>
|
||||||
|
*: "Ține minte mereu ultimul dosar"
|
||||||
|
</voice>
|
||||||
|
</phrase>
|
||||||
|
|
|
||||||
|
|
@ -15312,13 +15312,13 @@
|
||||||
</phrase>
|
</phrase>
|
||||||
<phrase>
|
<phrase>
|
||||||
id: LANG_VOICED_DATE_FORMAT
|
id: LANG_VOICED_DATE_FORMAT
|
||||||
desc: format string for how dates will be read back. Y == 4-digit year, A == month name, m == numeric month, d == numeric day. For example, "AdY" will read "January 21 2021"
|
desc: format string for how dates will be read back. Y == 4-digit year (grouped), y == 4-digit year (numeric), A == month name, m == numeric month, d == numeric day. For example, for 2021-01-05, "AdY" will be voiced as "January 5 twenty twenty-one" and "dmy" will be voiced as "5 1 two thousand twenty one
|
||||||
user: core
|
user: core
|
||||||
<source>
|
<source>
|
||||||
*: "dAY"
|
*: "dAY"
|
||||||
</source>
|
</source>
|
||||||
<dest>
|
<dest>
|
||||||
*: "dAY"
|
*: "~dAY"
|
||||||
</dest>
|
</dest>
|
||||||
<voice>
|
<voice>
|
||||||
*: ""
|
*: ""
|
||||||
|
|
@ -16965,3 +16965,17 @@
|
||||||
*: "Anunțare stare"
|
*: "Anunțare stare"
|
||||||
</voice>
|
</voice>
|
||||||
</phrase>
|
</phrase>
|
||||||
|
<phrase>
|
||||||
|
id: LANG_KEEP_DIRECTORY
|
||||||
|
desc: file browser setting
|
||||||
|
user: core
|
||||||
|
<source>
|
||||||
|
*: "Always remember last folder"
|
||||||
|
</source>
|
||||||
|
<dest>
|
||||||
|
*: "Ține minte mereu ultimul dosar"
|
||||||
|
</dest>
|
||||||
|
<voice>
|
||||||
|
*: "Ține minte mereu ultimul dosar"
|
||||||
|
</voice>
|
||||||
|
</phrase>
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ ifeq ($(APP_TYPE),ctru-app)
|
||||||
is_app_build =
|
is_app_build =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef SELECTED_PLUGINS_SRC
|
ifneq ($(SELECTED_PLUGINS_SRC),DEFAULT)
|
||||||
PLUGINS_SRC = $(SELECTED_PLUGINS_SRC)
|
PLUGINS_SRC = $(SELECTED_PLUGINS_SRC)
|
||||||
else
|
else
|
||||||
ifdef is_app_build
|
ifdef is_app_build
|
||||||
|
|
@ -28,7 +28,7 @@ PLUGINS_SRC = $(call preprocess, $(APPSDIR)/plugins/SOURCES.app_build)
|
||||||
else
|
else
|
||||||
PLUGINS_SRC = $(call preprocess, $(APPSDIR)/plugins/SOURCES)
|
PLUGINS_SRC = $(call preprocess, $(APPSDIR)/plugins/SOURCES)
|
||||||
endif
|
endif
|
||||||
endif # ifdef SELECTED_PLUGINS_SRC
|
endif # if SELECTED_PLUGINS_SRC
|
||||||
OTHER_SRC += $(PLUGINS_SRC)
|
OTHER_SRC += $(PLUGINS_SRC)
|
||||||
ROCKS1 := $(PLUGINS_SRC:.c=.rock)
|
ROCKS1 := $(PLUGINS_SRC:.c=.rock)
|
||||||
ROCKS1 := $(call full_path_subst,$(ROOTDIR)/%,$(BUILDDIR)/%,$(ROCKS1))
|
ROCKS1 := $(call full_path_subst,$(ROOTDIR)/%,$(BUILDDIR)/%,$(ROCKS1))
|
||||||
|
|
@ -62,7 +62,7 @@ endif
|
||||||
OTHER_SRC += $(ROOTDIR)/apps/plugins/plugin_crt0.c
|
OTHER_SRC += $(ROOTDIR)/apps/plugins/plugin_crt0.c
|
||||||
PLUGIN_CRT0 := $(BUILDDIR)/apps/plugins/plugin_crt0.o
|
PLUGIN_CRT0 := $(BUILDDIR)/apps/plugins/plugin_crt0.o
|
||||||
# multifile plugins (subdirs):
|
# multifile plugins (subdirs):
|
||||||
ifdef SELECTED_PLUGINS_SUBDIRS
|
ifneq ($(SELECTED_PLUGINS_SUBDIRS),DEFAULT)
|
||||||
PLUGINSUBDIRS := $(SELECTED_PLUGINS_SUBDIRS)
|
PLUGINSUBDIRS := $(SELECTED_PLUGINS_SUBDIRS)
|
||||||
else
|
else
|
||||||
ifdef is_app_build
|
ifdef is_app_build
|
||||||
|
|
@ -70,7 +70,7 @@ PLUGINSUBDIRS := $(call preprocess, $(APPSDIR)/plugins/SUBDIRS.app_build)
|
||||||
else
|
else
|
||||||
PLUGINSUBDIRS := $(call preprocess, $(APPSDIR)/plugins/SUBDIRS)
|
PLUGINSUBDIRS := $(call preprocess, $(APPSDIR)/plugins/SUBDIRS)
|
||||||
endif
|
endif
|
||||||
endif # ifdef SELECTED_PLUGINS_SUBDIRS
|
endif # if SELECTED_PLUGINS_SUBDIRS
|
||||||
|
|
||||||
PLUGIN_LIBS := $(PLUGINLIB) $(PLUGINBITMAPLIB) $(SETJMPLIB) $(FIXEDPOINTLIB)
|
PLUGIN_LIBS := $(PLUGINLIB) $(PLUGINBITMAPLIB) $(SETJMPLIB) $(FIXEDPOINTLIB)
|
||||||
|
|
||||||
|
|
|
||||||
4
tools/configure
vendored
4
tools/configure
vendored
|
|
@ -4848,6 +4848,10 @@ if [ -n "$ARG_PLUGINS" ]; then
|
||||||
echo "Warning: Plugin '$p' found neither as file nor directory in $chk_plugin_dir. Use ':' as the separator."
|
echo "Warning: Plugin '$p' found neither as file nor directory in $chk_plugin_dir. Use ':' as the separator."
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
else
|
||||||
|
# Build the default set of plugins
|
||||||
|
selected_src="DEFAULT"
|
||||||
|
selected_subdirs="DEFAULT"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
### end of cmdline
|
### end of cmdline
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue