Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev/core#495 Make admin settings field labels translatable #16233

Merged
merged 1 commit into from
Jan 8, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions settings/Directory.setting.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@
'quick_form_type' => 'Element',
'default' => NULL,
'add' => '4.1',
'title' => 'Temporary Files Directory',
'title' => ts('Temporary Files Directory'),
'is_domain' => 1,
'is_contact' => 0,
'description' => NULL,
'help_text' => 'File system path where temporary CiviCRM files - such as import data files - are uploaded.',
],
'imageUploadDir' => [
Expand All @@ -47,10 +46,10 @@
'quick_form_type' => 'Element',
'default' => NULL,
'add' => '4.1',
'title' => 'Image Directory',
'title' => ts('Image Directory'),
'is_domain' => 1,
'is_contact' => 0,
'description' => 'File system path where image files are uploaded. Currently, this path is used for images associated with premiums (CiviContribute thank-you gifts).',
'description' => ts('File system path where image files are uploaded. Currently, this path is used for images associated with premiums (CiviContribute thank-you gifts).'),
'help_text' => NULL,
],
'customFileUploadDir' => [
Expand All @@ -63,10 +62,10 @@
'quick_form_type' => 'Element',
'default' => NULL,
'add' => '4.1',
'title' => 'Custom Files Directory',
'title' => ts('Custom Files Directory'),
'is_domain' => 1,
'is_contact' => 0,
'description' => 'Path where documents and images which are attachments to contact records are stored (e.g. contact photos, resumes, contracts, etc.). These attachments are defined using \'file\' type custom fields.',
'description' => ts('Path where documents and images which are attachments to contact records are stored (e.g. contact photos, resumes, contracts, etc.). These attachments are defined using \'file\' type custom fields.'),
'help_text' => NULL,
],
'customTemplateDir' => [
Expand All @@ -79,10 +78,10 @@
'quick_form_type' => 'Element',
'default' => NULL,
'add' => '4.1',
'title' => 'Custom Template Directory',
'title' => ts('Custom Template Directory'),
'is_domain' => 1,
'is_contact' => 0,
'description' => 'Path where site specific templates are stored if any. This directory is searched first if set. Custom JavaScript code can be added to templates by creating files named templateFile.extra.tpl. (learn more...)',
'description' => ts('Path where site specific templates are stored if any. This directory is searched first if set. Custom JavaScript code can be added to templates by creating files named templateFile.extra.tpl. (learn more...)'),
'help_text' => NULL,
],
'customPHPPathDir' => [
Expand All @@ -95,10 +94,10 @@
'quick_form_type' => 'Element',
'default' => NULL,
'add' => '4.1',
'title' => 'Custom PHP Directory',
'title' => ts('Custom PHP Directory'),
'is_domain' => 1,
'is_contact' => 0,
'description' => 'Path where site specific PHP code files are stored if any. This directory is searched first if set.',
'description' => ts('Path where site specific PHP code files are stored if any. This directory is searched first if set.'),
'help_text' => NULL,
],
'extensionsDir' => [
Expand All @@ -111,10 +110,10 @@
'quick_form_type' => 'Element',
'default' => NULL,
'add' => '4.1',
'title' => 'Extensions Directory',
'title' => ts('Extensions Directory'),
'is_domain' => 1,
'is_contact' => 0,
'description' => 'Path where CiviCRM extensions are stored.',
'description' => ts('Path where CiviCRM extensions are stored.'),
'help_text' => NULL,
],

Expand Down