[dw-free] Crosspost label text says "xpost" instead of something user-friendly, in core1 s
[commit: http://hg.dwscoalition.org/dw-free/rev/15d34a83ff84]
http://bugs.dwscoalition.org/show_bug.cgi?id=2672
Give core1 some text to display for the xpost item so it's not so barren.
Patch by
kareila.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=2672
Give core1 some text to display for the xpost item so it's not so barren.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- bin/upgrading/s2layers/core1.s2
-------------------------------------------------------------------------------- diff -r 25acdc474362 -r 15d34a83ff84 bin/upgrading/s2layers/core1.s2 --- a/bin/upgrading/s2layers/core1.s2 Wed Jun 09 17:17:46 2010 +0000 +++ b/bin/upgrading/s2layers/core1.s2 Wed Jun 09 17:19:36 2010 +0000 @@ -1131,6 +1131,11 @@ property string text_meta_groups { des = "Text for 'Custom Access Groups'"; } set text_meta_groups = "Custom Access Groups"; + +property string text_meta_xpost { + des = "Text for 'Crossposts'"; +} +set text_meta_xpost = "Crossposts"; property string text_copyr_agree { des = "Text for copyright post agree"; } @@ -1945,6 +1950,9 @@ function lang_metadata_title(string whic elseif ($which == "groups") { return $*text_meta_groups; } + elseif ($which == "xpost") { + return $*text_meta_xpost; + } else { return $which; } --------------------------------------------------------------------------------