/[drupal]/contributions/modules/i18n/i18ncontent/i18ncontent.module
ViewVC logotype

Log of /contributions/modules/i18n/i18ncontent/i18ncontent.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Tag:

Revision 1.1.2.16 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Nov 3 17:53:24 2009 UTC (3 weeks ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-2
Changes since 1.1.2.15: +5 -6 lines
Diff to previous 1.1.2.15 , to branch point 1.1
- Fixed: Some text groups losing strings when refreshed, #442428
- Fixed: Checkboxes fields are not translating in profile view pages, by neochief, #520692

Revision 1.1.2.15 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Aug 29 21:08:24 2009 UTC (2 months, 3 weeks ago) by hass
Branch: DRUPAL-6--1
Changes since 1.1.2.14: +6 -6 lines
Diff to previous 1.1.2.14 , to branch point 1.1
Removed trailing white space (code style fixes)

Revision 1.1.2.14 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Apr 27 16:50:49 2009 UTC (6 months, 4 weeks ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-1
Changes since 1.1.2.13: +2 -2 lines
Diff to previous 1.1.2.13 , to branch point 1.1
- Fixed missing brackets around table name in query, #371429
- Fixed incompatible table locking, using proper API, #416912

Revision 1.1.2.13 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jan 25 17:13:13 2009 UTC (9 months, 4 weeks ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-0
Changes since 1.1.2.12: +37 -21 lines
Diff to previous 1.1.2.12 , to branch point 1.1
- Added localization for content types and taxonomy in advanced search form, #363384

Revision 1.1.2.12 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Jan 22 15:07:06 2009 UTC (10 months ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.1.2.11: +34 -13 lines
Diff to previous 1.1.2.11 , to branch point 1.1
- Fixed multiple translation issues for node/add pages, included #353912
- Fixed Undefined function i18n_taxonomy_localize_terms(), by roborn, #362559

Revision 1.1.2.11 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Jan 14 16:33:31 2009 UTC (10 months, 1 week ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.1.2.10: +52 -30 lines
Diff to previous 1.1.2.10 , to branch point 1.1
Index: i18nblocks/i18nblocks.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/i18n/i18nblocks/i18nblocks.module,v
retrieving revision 1.7.2.12
diff -u -p -r1.7.2.12 i18nblocks.module
--- i18nblocks/i18nblocks.module	16 Nov 2008 13:37:11 -0000	1.7.2.12
+++ i18nblocks/i18nblocks.module	14 Jan 2009 14:13:00 -0000
@@ -96,6 +96,28 @@ function i18nblocks_locale($op = 'groups
 }

 /**
+ * Implementation of hook_form_FORM_ID_alter().
+ */
+function i18nblocks_form_block_box_delete_alter(&$form, $form_state) {
+  $delta = db_result(db_query('SELECT ibid FROM i18n_blocks WHERE delta = %d', arg(4)));
+  $form['delta'] = array(
+    '#type' => 'value',
+    '#value' => $delta,
+  );
+  $form['#submit'][] = 'i18nblocks_block_delete_submit';
+}
+
+/**
+ * Remove strings for deleted custom blocks.
+ */
+function i18nblocks_block_delete_submit(&$form, $form_state) {
+  $delta = $form_state['values']['delta'];
+  // Delete stored strings for the title and content fields.
+  i18nstrings_remove_string("blocks:block:$delta:title");
+  i18nstrings_remove_string("blocks:block:$delta:content");
+}
+
+/**
  * Implementation of block form_alter().
  *
  * Remove block title for multilingual blocks.
@@ -342,4 +364,4 @@ function _i18nblocks_list($langcode = ''
     }
   }
   return $list[$index];
-}
\ No newline at end of file
+}

Revision 1.1.2.10 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jan 9 20:23:34 2009 UTC (10 months, 2 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.1.2.9: +6 -6 lines
Diff to previous 1.1.2.9 , to branch point 1.1
- Fixed duplicated 'ts' function (CiviCRM), renamed to 'i18nstrings_ts', by mfb, #298154
- Move all admin settings to one place under Language, by stella, #343557

Revision 1.1.2.9 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jan 3 18:23:04 2009 UTC (10 months, 3 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.1.2.8: +17 -16 lines
Diff to previous 1.1.2.8 , to branch point 1.1
- Fixed multiple issues with content type strings translations, #343335
- Added some more parameter checking for i18nviews module, #294278

Revision 1.1.2.8 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Oct 3 11:32:23 2008 UTC (13 months, 3 weeks ago) by hass
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-0-BETA5, DRUPAL-6--1-0-BETA6
Changes since 1.1.2.7: +8 -8 lines
Diff to previous 1.1.2.7 , to branch point 1.1
Code style fixes

Revision 1.1.2.7 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Oct 2 21:33:53 2008 UTC (13 months, 3 weeks ago) by hass
Branch: DRUPAL-6--1
Changes since 1.1.2.6: +23 -22 lines
Diff to previous 1.1.2.6 , to branch point 1.1
Code style fixes, missing ID tags, +++

Revision 1.1.2.6 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Oct 2 19:47:34 2008 UTC (13 months, 3 weeks ago) by hass
Branch: DRUPAL-6--1
Changes since 1.1.2.5: +9 -9 lines
Diff to previous 1.1.2.5 , to branch point 1.1
Trailing spaces cleanup (code style)

Revision 1.1.2.5 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Sep 25 19:16:12 2008 UTC (13 months, 4 weeks ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-0-BETA4
Changes since 1.1.2.4: +2 -2 lines
Diff to previous 1.1.2.4 , to branch point 1.1
More localization fixes by hass

Revision 1.1.2.4 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Sep 25 16:09:28 2008 UTC (13 months, 4 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.1.2.3: +3 -2 lines
Diff to previous 1.1.2.3 , to branch point 1.1
- Renamed some modules, updated descriptions
- Fixed / improved some module help texts.
- Fixed multiple localization issues, by hass, #310852

Revision 1.1.2.3 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Mar 10 23:27:51 2008 UTC (20 months, 2 weeks ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-0-BETA1, DRUPAL-6--1-0-BETA2, DRUPAL-6--1-0-BETA3
Changes since 1.1.2.2: +22 -2 lines
Diff to previous 1.1.2.2 , to branch point 1.1
- Fixed Call-time-pass-by reference, http://drupal.org/node/231856
- New refresh and update feature for i18nstrings (implemented for taxonomy and content)

Revision 1.1.2.2 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Feb 21 20:26:20 2008 UTC (21 months ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.1.2.1: +128 -0 lines
Diff to previous 1.1.2.1 , to branch point 1.1
Resync with head branch. Moving on on this one from now

Revision 1.1.2.1
Thu Feb 21 20:14:23 2008 UTC (21 months ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.1: +0 -128 lines
FILE REMOVED
file i18ncontent.module was added on branch DRUPAL-6--1 on 2008-02-21 20:26:20 +0000

Revision 1.1 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Feb 21 20:14:23 2008 UTC (21 months ago) by jareyero
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
- Added (Upgraded) i18ncontent, fully reworked, much cleaner now
- Improved i18nstrings, translation of strings without source, debug facility
- Replaced taxonomy term pages with localized version

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

  ViewVC Help
Powered by ViewVC 1.1.2