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

Log of /contributions/modules/i18n/i18nstrings/i18nstrings.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.8.2.35 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Nov 24 15:53:44 2009 UTC (47 hours, 33 minutes ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.34: +132 -75 lines
Diff to previous 1.8.2.34 , to branch point 1.8 , to next main 1.9
- Reworked i18nstrings API using proper namespaces, kept tt() for compatibility

Revision 1.8.2.34 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Nov 24 14:07:38 2009 UTC (2 days, 1 hour ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.33: +43 -28 lines
Diff to previous 1.8.2.33 , to branch point 1.8
Fixed error when refreshing views strings #641282

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

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

Revision 1.8.2.31 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Jan 19 19:05:12 2009 UTC (10 months ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-0, DRUPAL-6--1-1
Changes since 1.8.2.30: +80 -5 lines
Diff to previous 1.8.2.30 , to branch point 1.8
Added support for l10n client, pending patch #361147

Revision 1.8.2.30 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jan 18 18:27:42 2009 UTC (10 months, 1 week ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.29: +2 -2 lines
Diff to previous 1.8.2.29 , to branch point 1.8
- Fixed: attached nodes synchronization not working, by doq, #359987
- Fixed: locale table growing on each request, issue with i18nstring_textgroup(), by drifter, #359249

Revision 1.8.2.29 - (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.8.2.28: +2 -1 lines
Diff to previous 1.8.2.28 , to branch point 1.8
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.8.2.28 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jan 11 17:12:26 2009 UTC (10 months, 2 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.27: +37 -4 lines
Diff to previous 1.8.2.27 , to branch point 1.8
- Mark translations a outdated when source string changes, by nedjo, #355366
- Changed default behavior: content types with multilingual support disabled are now language neutral, #270655

Revision 1.8.2.27 - (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.8.2.26: +7 -3 lines
Diff to previous 1.8.2.26 , to branch point 1.8
- 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.8.2.26 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jan 3 19:07:52 2009 UTC (10 months, 3 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.25: +30 -6 lines
Diff to previous 1.8.2.25 , to branch point 1.8
Added clean up feature for old strings

Revision 1.8.2.25 - (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.8.2.24: +17 -10 lines
Diff to previous 1.8.2.24 , to branch point 1.8
- Fixed multiple issues with content type strings translations, #343335
- Added some more parameter checking for i18nviews module, #294278

Revision 1.8.2.24 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jan 3 16:21:08 2009 UTC (10 months, 3 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.23: +4 -4 lines
Diff to previous 1.8.2.23 , to branch point 1.8
Added @db_query to prevent update errors, #277711

Revision 1.8.2.23 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Jan 3 16:03:16 2009 UTC (10 months, 3 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.22: +27 -9 lines
Diff to previous 1.8.2.22 , to branch point 1.8
- Fixed issues with i18nstrings and menu items, by smk-ka, catch, sun, nedjo, #339057
- Fixed i18ntaxonomy schema mismatch (missing schema_alter), #288994

Revision 1.8.2.22 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Dec 17 22:59:00 2008 UTC (11 months, 1 week ago) by nedjo
Branch: DRUPAL-6--1
Changes since 1.8.2.21: +8 -4 lines
Diff to previous 1.8.2.21 , to branch point 1.8
Issue #277711, prevent race condition error. For now, calling db_query without the @ used in similar cases in core, pending further information. Left a note in the code re this question.

Revision 1.9.2.6 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Nov 18 18:52:13 2008 UTC (12 months, 1 week ago) by jareyero
Branch: DRUPAL-5--3
Changes since 1.9.2.5: +3 -2 lines
Diff to previous 1.9.2.5 , to branch point 1.9
Fixed missing string on l10n clien list

Revision 1.9.2.5 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Nov 17 19:58:55 2008 UTC (12 months, 1 week ago) by jareyero
Branch: DRUPAL-5--3
Changes since 1.9.2.4: +4 -5 lines
Diff to previous 1.9.2.4 , to branch point 1.9
- Backported mixed selection from 6.x, renamed 'preferred' to 'mixed'
- Updated some wrong table names (i18n_strings)

Revision 1.8.2.21 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Nov 16 19:32:28 2008 UTC (12 months, 1 week ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.20: +6 -4 lines
Diff to previous 1.8.2.20 , to branch point 1.8
- Implemented workaround for race condition, #277711

Revision 1.8.2.20 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Nov 16 13:37:11 2008 UTC (12 months, 1 week ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-0-BETA5, DRUPAL-6--1-0-BETA6
Changes since 1.8.2.19: +2 -2 lines
Diff to previous 1.8.2.19 , to branch point 1.8
- Fixed multilingual blocks not translating, #305868
- Fixed notices, undefined variables, by eMPee584, #276161

Revision 1.8.2.19 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Nov 16 11:05:20 2008 UTC (12 months, 1 week ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.18: +4 -3 lines
Diff to previous 1.8.2.18 , to branch point 1.8
- Fixed warning illegal offset type, #294278
- Removed wrong version from info files, by Roger López, #319249
- Fixed help string, by Hass, #316784

Revision 1.9.2.4 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Oct 13 23:12:29 2008 UTC (13 months, 1 week ago) by jareyero
Branch: DRUPAL-5--3
Changes since 1.9.2.3: +19 -12 lines
Diff to previous 1.9.2.3 , to branch point 1.9
- Modified i18nstrings to use latest l10n client features (strings by lid)
- Removed ttext experimental module, not anymore for this version

Revision 1.8.2.18 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Oct 3 17:15:55 2008 UTC (13 months, 3 weeks ago) by hass
Branch: DRUPAL-6--1
Changes since 1.8.2.17: +2 -2 lines
Diff to previous 1.8.2.17 , to branch point 1.8
Use <EM> in place of <I>.

Revision 1.8.2.17 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Oct 3 11:40:19 2008 UTC (13 months, 3 weeks ago) by hass
Branch: DRUPAL-6--1
Changes since 1.8.2.16: +5 -5 lines
Diff to previous 1.8.2.16 , to branch point 1.8
Code style fixes

Revision 1.8.2.16 - (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
Changes since 1.8.2.15: +26 -26 lines
Diff to previous 1.8.2.15 , to branch point 1.8
Code style fixes

Revision 1.8.2.15 - (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.8.2.14: +118 -101 lines
Diff to previous 1.8.2.14 , to branch point 1.8
Code style fixes, missing ID tags, +++

Revision 1.8.2.14 - (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.8.2.13: +63 -63 lines
Diff to previous 1.8.2.13 , to branch point 1.8
Trailing spaces cleanup (code style)

Revision 1.8.2.13 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Oct 1 14:11:58 2008 UTC (13 months, 3 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.12: +12 -1 lines
Diff to previous 1.8.2.12 , to branch point 1.8
- Fixed: Synchronization not happening when creating a translation, #313605
- Added some help texts for i18nstrings and warnings about the site default language, #314035

Revision 1.8.2.12 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Sep 30 17:01:15 2008 UTC (13 months, 3 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.11: +48 -25 lines
Diff to previous 1.8.2.11 , to branch point 1.8
- Fixed: Column name conflict (oid) on PostgreSQL, #314126
- Fixed: Added English language to import/export page, #314035

Revision 1.8.2.11 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Sep 29 17:39:01 2008 UTC (13 months, 3 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.10: +2 -2 lines
Diff to previous 1.8.2.10 , to branch point 1.8
- Multiple bug fixes and code improvements, by stella, #314846, #314880, #314853

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

Revision 1.8.2.9 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Sep 25 18:28:13 2008 UTC (14 months ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.8: +4 -4 lines
Diff to previous 1.8.2.8 , to branch point 1.8
- Fixed postgresql compatibility issue, by miopa, #308554
- Fixed profile category string issues, #304451

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

Revision 1.8.2.7 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Aug 9 16:11:40 2008 UTC (15 months, 2 weeks ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-0-BETA3
Changes since 1.8.2.6: +2 -1 lines
Diff to previous 1.8.2.6 , to branch point 1.8
- Added some basic functionality to i18nviews module, wip
- Some clean up of update scripts, removed obsoleted functions.
- Moved selection mode initialization out of hook init, to first time it's needed.

Revision 1.8.2.6 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Jul 27 19:48:26 2008 UTC (16 months ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.5: +2 -2 lines
Diff to previous 1.8.2.5 , to branch point 1.8
Fixed bug with l10n client integration

Revision 1.8.2.5 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Jul 25 20:36:47 2008 UTC (16 months ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-0-BETA2
Changes since 1.8.2.4: +39 -130 lines
Diff to previous 1.8.2.4 , to branch point 1.8
- Commented out views hooks on i18ntaxonomy (not for the first version), #285660
- Fixed wrong duplicated translations (context/caching issue), #281471
- Added preliminary support for l10n client (Patch pending)
- Fixed missing dependency on i18nblocks, #279769
- Fixed i18npoll_nodeapi returning $node, breaking feeds and cron calls, #254022
- Fixed notice and possible i18n blocks not found, #278588

Revision 1.9.2.3 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Jul 24 22:02:05 2008 UTC (16 months ago) by jareyero
Branch: DRUPAL-5--3
Changes since 1.9.2.2: +108 -37 lines
Diff to previous 1.9.2.2 , to branch point 1.9
First usable alpha with new strings system.
Will work with l10n_client, whatever the default language.

Revision 1.9.2.2 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Jul 24 18:40:23 2008 UTC (16 months ago) by jareyero
Branch: DRUPAL-5--3
Changes since 1.9.2.1: +217 -0 lines
Diff to previous 1.9.2.1 , to branch point 1.9
First version, not really usable yet.
Reworking i18nstrings WIP

Revision 1.8.2.4 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Apr 16 12:30:32 2008 UTC (19 months, 1 week ago) by jareyero
Branch: DRUPAL-6--1
CVS Tags: DRUPAL-6--1-0-BETA1
Changes since 1.8.2.3: +3 -2 lines
Diff to previous 1.8.2.3 , to branch point 1.8
Fixed menu permissions for Drupal 6.2 upgrade

Revision 1.8.2.3 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Mar 14 22:03:14 2008 UTC (20 months, 1 week ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.2: +3 -2 lines
Diff to previous 1.8.2.2 , to branch point 1.8
- Fixed: i18nstrings_to() not changing location, http://drupal.org/node/230750
- Fixed: taxonomy vocabulary setting not saved when set to 'none'
- Updated README.txt and INSTALL.txt files

Revision 1.8.2.2 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Mar 10 23:27:50 2008 UTC (20 months, 2 weeks ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8.2.1: +30 -1 lines
Diff to previous 1.8.2.1 , to branch point 1.8
- 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.8.2.1 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Feb 21 20:26:21 2008 UTC (21 months ago) by jareyero
Branch: DRUPAL-6--1
Changes since 1.8: +52 -2 lines
Diff to previous 1.8
Resync with head branch. Moving on on this one from now

Revision 1.9.2.1
Thu Feb 21 20:14:23 2008 UTC (21 months ago) by jareyero
Branch: DRUPAL-5--3
Changes since 1.9: +0 -691 lines
FILE REMOVED
file i18nstrings.module was added on branch DRUPAL-5--3 on 2008-07-24 18:40:23 +0000

Revision 1.9 - (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-5--3
Changes since 1.8: +52 -2 lines
Diff to previous 1.8
- Added (Upgraded) i18ncontent, fully reworked, much cleaner now
- Improved i18nstrings, translation of strings without source, debug facility
- Replaced taxonomy term pages with localized version

Revision 1.8 - (view) (download) (as text) (annotate) - [select for diffs]
Tue Feb 19 19:43:55 2008 UTC (21 months, 1 week ago) by jareyero
Branch: MAIN
Branch point for: DRUPAL-6--1
Changes since 1.7: +9 -7 lines
Diff to previous 1.7
Fixed issues in i18nblocks
Reworked i18nmenu for Drupal 6
Fixed i18nstrings so string update returns real status value

Revision 1.7 - (view) (download) (as text) (annotate) - [select for diffs]
Mon Feb 18 13:09:10 2008 UTC (21 months, 1 week ago) by jareyero
Branch: MAIN
Changes since 1.6: +4 -2 lines
Diff to previous 1.6
Fixed multilingual taxonomy feature
Added update script

Revision 1.6 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Feb 17 18:09:01 2008 UTC (21 months, 1 week ago) by jareyero
Branch: MAIN
Changes since 1.5: +11 -2 lines
Diff to previous 1.5
Added i18nprofile upgrade scripts

Revision 1.5 - (view) (download) (as text) (annotate) - [select for diffs]
Sun Feb 17 17:25:39 2008 UTC (21 months, 1 week ago) by jareyero
Branch: MAIN
Changes since 1.4: +82 -14 lines
Diff to previous 1.4
Updated i18nprofile for Drupal 6.0
Improved strings, handling of source strings indexed by string.
Updated syntax for i18nviews.info.

Revision 1.4 - (view) (download) (as text) (annotate) - [select for diffs]
Fri Nov 2 02:05:12 2007 UTC (2 years ago) by jareyero
Branch: MAIN
Changes since 1.3: +160 -53 lines
Diff to previous 1.3
Completed upgrade of i18nprofile, beta 1
Improved i18nstrings to use location field

Revision 1.3 - (view) (download) (as text) (annotate) - [select for diffs]
Sat Oct 27 19:45:56 2007 UTC (2 years, 1 month ago) by jareyero
Branch: MAIN
Changes since 1.2: +7 -5 lines
Diff to previous 1.2
Upgraded i18nblocks module: Fully reworked
(Pending update script)

Revision 1.2 - (view) (download) (as text) (annotate) - [select for diffs]
Thu Oct 25 18:57:51 2007 UTC (2 years, 1 month ago) by jareyero
Branch: MAIN
Changes since 1.1: +154 -25 lines
Diff to previous 1.1
Upgrading for Drupal 6

Revision 1.1 - (view) (download) (as text) (annotate) - [select for diffs]
Wed Oct 24 18:06:16 2007 UTC (2 years, 1 month ago) by jareyero
Branch: MAIN
Upgrading for Drupal 6

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