From: Andrew Dolgov Date: Sat, 19 Nov 2005 10:37:41 +0000 (+0100) Subject: tweak ALLOW_DUPLICATE_POSTS help text X-Git-Tag: schema_feature_freeze_for_1.1~194 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=45a2e092569c754588fded4dd6019a4ba04ce1c9;p=tt-rss.git tweak ALLOW_DUPLICATE_POSTS help text --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index 58789052..88f5dc90 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -171,7 +171,7 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ALLOW_DUPLICATE_POSTS', 1, 'true', 'Allow duplicate posts',1, 'This option is useful when you are reading several planet-type aggregators with partially colliding userbase. - When disabled, it forces same posts from different sources to appear only once'); + When disabled, it forces same posts from different feeds to appear only once'); create table ttrss_user_prefs ( owner_uid integer not null, diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql index 012ed336..0fc70615 100644 --- a/schema/ttrss_schema_pgsql.sql +++ b/schema/ttrss_schema_pgsql.sql @@ -162,7 +162,7 @@ insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) valu insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id,help_text) values('ALLOW_DUPLICATE_POSTS', 1, 'true', 'Allow duplicate posts',1, 'This option is useful when you are reading several planet-type aggregators with partially colliding userbase. - When disabled, it forces same posts from different sources to appear only once'); + When disabled, it forces same posts from different feeds to appear only once'); create table ttrss_user_prefs ( owner_uid integer not null references ttrss_users(id) on delete cascade,