[damned-lies] Updated migrations to reflect help_text string changes



commit 7c33ee6ea11a6a63daef53bdb938dd50cdd4b614
Author: Claude Paroz <claude 2xlibre net>
Date:   Sat Mar 25 15:31:59 2017 +0100

    Updated migrations to reflect help_text string changes

 people/migrations/0001_initial.py                  |    4 ++--
 stats/migrations/0001_initial.py                   |    4 ++--
 stats/migrations/0006_add_domain_branch_from_to.py |    2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/people/migrations/0001_initial.py b/people/migrations/0001_initial.py
index 5999c41..8eac1ab 100644
--- a/people/migrations/0001_initial.py
+++ b/people/migrations/0001_initial.py
@@ -15,11 +15,11 @@ class Migration(migrations.Migration):
             fields=[
                 ('user_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, 
serialize=False, to=settings.AUTH_USER_MODEL, on_delete=models.CASCADE)),
                 ('svn_account', models.SlugField(max_length=20, null=True, blank=True)),
-                ('image', models.URLField(help_text='URL to an image file (.jpg, .png, ...) of an 
hackergotchi (max. 100x100 pixels)', null=True, verbose_name='Image', blank=True)),
+                ('image', models.URLField(help_text='URL to an image file (.jpg, .png, …) of an hackergotchi 
(max. 100×100 pixels)', null=True, verbose_name='Image', blank=True)),
                 ('use_gravatar', models.BooleanField(default=False, help_text='Display the image of your 
gravatar.com account')),
                 ('webpage_url', models.URLField(null=True, verbose_name='Web page', blank=True)),
                 ('irc_nick', models.SlugField(max_length=20, null=True, verbose_name='IRC nickname', 
blank=True)),
-                ('bugzilla_account', models.EmailField(help_text="This should be an email address, useful if 
not equal to 'E-mail address' field", max_length=254, null=True, verbose_name='Bugzilla account', 
blank=True)),
+                ('bugzilla_account', models.EmailField(help_text="This should be an email address, useful if 
not equal to “E-mail address” field", max_length=254, null=True, verbose_name='Bugzilla account', 
blank=True)),
                 ('activation_key', models.CharField(max_length=40, null=True, blank=True)),
             ],
             options={
diff --git a/stats/migrations/0001_initial.py b/stats/migrations/0001_initial.py
index cd79217..611069a 100644
--- a/stats/migrations/0001_initial.py
+++ b/stats/migrations/0001_initial.py
@@ -46,8 +46,8 @@ class Migration(migrations.Migration):
                 ('description', models.TextField(null=True, blank=True)),
                 ('dtype', models.CharField(default='ui', max_length=5, choices=[('ui', 'User Interface'), 
('doc', 'Documentation')])),
                 ('directory', models.CharField(max_length=50)),
-                ('pot_method', models.CharField(help_text='Leave blank for standard method (intltool for UI 
and gnome-doc-utils for DOC)', max_length=100, null=True, blank=True)),
-                ('linguas_location', models.CharField(help_text=b"Use 'no' for no LINGUAS check, or 
path/to/file#variable for a non-standard location.\n            Leave blank for standard location 
(ALL_LINGUAS in LINGUAS/configure.ac/.in for UI and DOC_LINGUAS in Makefile.am for DOC)", max_length=50, 
null=True, blank=True)),
+                ('pot_method', models.CharField(help_text="Leave blank for standard method (intltool for UI 
and gnome-doc-utils for DOC), or '&lt;gettext&gt;' for the pure xgettext-based extraction", max_length=100, 
null=True, blank=True)),
+                ('linguas_location', models.CharField(help_text="Use 'no' for no LINGUAS check, or 
path/to/file#variable for a non-standard location.\n            Leave blank for standard location 
(ALL_LINGUAS in LINGUAS/configure.ac/.in for UI and DOC_LINGUAS in Makefile.am for DOC)", max_length=50, 
null=True, blank=True)),
                 ('red_filter', models.TextField(help_text='pogrep filter to strip po file from unprioritized 
strings (format: location|string, "-" for no filter)', null=True, blank=True)),
             ],
             options={
diff --git a/stats/migrations/0006_add_domain_branch_from_to.py 
b/stats/migrations/0006_add_domain_branch_from_to.py
index 232b86c..05f6ece 100644
--- a/stats/migrations/0006_add_domain_branch_from_to.py
+++ b/stats/migrations/0006_add_domain_branch_from_to.py
@@ -22,6 +22,6 @@ class Migration(migrations.Migration):
         migrations.AlterField(
             model_name='domain',
             name='pot_method',
-            field=models.CharField(help_text="Leave blank for standard method (intltool for UI and 
gnome-doc-utils for DOC), or '<gettext>' for the pure xgettext-based extraction", max_length=100, null=True, 
blank=True),
+            field=models.CharField(help_text="Leave blank for standard method (intltool for UI and 
gnome-doc-utils for DOC), or '&lt;gettext&gt;' for the pure xgettext-based extraction", max_length=100, 
null=True, blank=True),
         ),
     ]


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]