Mercurial > pidgin
annotate plugins/mono/api/GaimPlugin.cs @ 13545:cfc2f7fcb3dd
[gaim-migrate @ 15922]
Way more changes that I initially thought I was going to make. I apologize
for the commit message spam. These changes bring a lot of consistency to
our capitalization and punctuation, especially of words like "e-mail".
For reference, I've used these rules (after discussing in #gaim):
e-mail, a case of two words joined:
"e-mail" - in the middle of a sentence caps context
"E-mail" - start of text in a sentence caps context
"E-Mail" - in a header (title) caps context
re-enable, a single word, would be:
"re-enable", "Re-enable", and "Re-enable" (respectively)
The reason this changeset exploded is that, as I went through and verified
these changes, I realized we were using improper capitalization (e.g. header
instead of sentence) in a number of dialogs. I fixed a number of these
cases before, and this corrects another pile.
This looks like I've made a LOT of work for the translators, but the impact
is significantly mitigated by three factors: 1) Many of these changes use
strings that already exist, or change one string in many places. 2) I've
used sed to correct the .po files where possible. 3) The actual changes
are extremely trivial.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Tue, 21 Mar 2006 04:32:45 +0000 |
| parents | a3302d271199 |
| children |
| rev | line source |
|---|---|
| 11660 | 1 namespace Gaim |
| 2 { | |
| 3 public class GaimPluginInfo | |
| 4 { | |
| 5 private string name; | |
| 6 private string version; | |
| 7 private string summary; | |
| 8 private string description; | |
| 9 private string author; | |
| 10 private string homepage; | |
| 11 | |
| 12 public GaimPluginInfo(string name, string version, string summary, string description, string author, string homepage) | |
| 13 { | |
| 14 this.name = name; | |
| 15 this.version = version; | |
| 16 this.summary = summary; | |
| 17 this.description = description; | |
| 18 this.author = author; | |
| 19 this.homepage = homepage; | |
| 20 } | |
| 21 | |
| 22 public string Name { get { return name; } } | |
| 23 public string Version { get { return version; } } | |
| 24 public string Summary { get { return summary; } } | |
| 25 public string Description { get { return description; } } | |
| 26 public string Author { get { return author; } } | |
| 27 public string Homepage { get { return homepage; } } | |
| 28 } | |
| 29 | |
| 30 abstract public class GaimPlugin | |
| 31 { | |
| 32 public abstract void Load(); | |
| 33 public abstract void Unload(); | |
| 34 public abstract void Destroy(); | |
| 35 | |
| 36 public abstract GaimPluginInfo Info(); | |
| 37 } | |
| 38 } |
