-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage-tap.i18n
More file actions
20 lines (16 loc) · 849 Bytes
/
package-tap.i18n
File metadata and controls
20 lines (16 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
// The name for the translation function that
// will be available in package's namespace.
"translation_function_name": "__",
// the name for the package templates' translation helper
"helper_name": "_",
// tap:i18n automatically separates the translation strings of each package to a
// namespace dedicated to that package, which is used by the package's translation
// function and helper. Use the namespace option to set a custom namespace for
// the package. By using the name of another package you can use your package to
// add to that package or modify its translations. You can also set the namespace to
// "project" to add translations that will be available in the project level.
"namespace": "project",
"supported_languages" : ["en", "de"],
"languages_files_dir": "/i18n"
}