summaryrefslogtreecommitdiff
path: root/devlet_l10n.strongarm.inc
diff options
context:
space:
mode:
authorSilvio <silvio@devlet.com.br>2011-03-28 15:31:22 -0300
committerSilvio <silvio@devlet.com.br>2011-03-28 15:31:22 -0300
commit05b5f56991feffc2b51c648d7bd3aa7f5f43d5ae (patch)
treedf704d7e41c8fd8070d52cca78b5f375c7874d8e /devlet_l10n.strongarm.inc
downloaddevlet_l10n-05b5f56991feffc2b51c648d7bd3aa7f5f43d5ae.tar.gz
devlet_l10n-05b5f56991feffc2b51c648d7bd3aa7f5f43d5ae.tar.bz2
Initial import
Diffstat (limited to 'devlet_l10n.strongarm.inc')
-rw-r--r--devlet_l10n.strongarm.inc91
1 files changed, 91 insertions, 0 deletions
diff --git a/devlet_l10n.strongarm.inc b/devlet_l10n.strongarm.inc
new file mode 100644
index 0000000..9edf611
--- /dev/null
+++ b/devlet_l10n.strongarm.inc
@@ -0,0 +1,91 @@
+<?php
+
+/**
+ * Implementation of hook_strongarm().
+ */
+function devlet_l10n_strongarm() {
+ $export = array();
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'i18n_lock_node_page';
+ $strongarm->value = 0;
+
+ $export['i18n_lock_node_page'] = $strongarm;
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'i18n_newnode_current_page';
+ $strongarm->value = 0;
+
+ $export['i18n_newnode_current_page'] = $strongarm;
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'i18n_node_page';
+ $strongarm->value = 1;
+
+ $export['i18n_node_page'] = $strongarm;
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'i18n_required_node_page';
+ $strongarm->value = 0;
+
+ $export['i18n_required_node_page'] = $strongarm;
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'i18nsync_nodeapi_page';
+ $strongarm->value = array();
+
+ $export['i18nsync_nodeapi_page'] = $strongarm;
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'l10n_update_rebuild_projects';
+ $strongarm->value = 1;
+
+ $export['l10n_update_rebuild_projects'] = $strongarm;
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'language_content_type_page';
+ $strongarm->value = '2';
+
+ $export['language_content_type_page'] = $strongarm;
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'language_count';
+ $strongarm->value = 3;
+
+ $export['language_count'] = $strongarm;
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'language_default';
+ $strongarm->value = (object) array(
+ 'language' => 'en',
+ 'name' => 'English',
+ 'native' => 'English',
+ 'direction' => '0',
+ 'enabled' => 1,
+ 'plurals' => '0',
+ 'formula' => '',
+ 'domain' => '',
+ 'prefix' => 'en',
+ 'weight' => '0',
+ 'javascript' => '',
+);
+
+ $export['language_default'] = $strongarm;
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'language_negotiation';
+ $strongarm->value = '2';
+
+ $export['language_negotiation'] = $strongarm;
+ return $export;
+}