annotate src/protocols/silc/Makefile.am @ 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 7bef0fa7d4aa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9353
b8138f3959dc [gaim-migrate @ 10161]
Ethan Blanton <elb@pidgin.im>
parents: 9061
diff changeset
1 EXTRA_DIST = README TODO Makefile.mingw
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
2
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
3 pkgdir = $(libdir)/gaim
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
4
12059
7bef0fa7d4aa [gaim-migrate @ 14354]
Ethan Blanton <elb@pidgin.im>
parents: 10889
diff changeset
5 SILCSOURCES = silc.c silcgaim.h buddy.c chat.c ft.c ops.c pk.c util.c wb.c wb.h
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
6
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
7 AM_CFLAGS = $(st)
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
8
10889
2cc05a9e944d [gaim-migrate @ 12597]
Stu Tomlinson <stu@nosnilmot.com>
parents: 9905
diff changeset
9 libsilcgaim_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
10
8857
15ddfb03f4c7 [gaim-migrate @ 9625]
Ethan Blanton <elb@pidgin.im>
parents: 8849
diff changeset
11 if STATIC_SILC
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
12
9905
3547fd2af609 [gaim-migrate @ 10797]
Luke Schierer <lschiere@pidgin.im>
parents: 9353
diff changeset
13 st = -DGAIM_STATIC_PRPL $(SILC_CFLAGS)
9061
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
14 noinst_LIBRARIES = libsilcgaim.a
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
15 pkg_LTLIBRARIES =
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
16
9061
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
17 libsilcgaim_a_SOURCES = $(SILCSOURCES)
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
18 libsilcgaim_a_CFLAGS = $(AM_CFLAGS)
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
19 libsilcgaim_a_LIBADD = $(SILC_LIBS)
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
20
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
21 else
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
22
9905
3547fd2af609 [gaim-migrate @ 10797]
Luke Schierer <lschiere@pidgin.im>
parents: 9353
diff changeset
23 st = $(SILC_CFLAGS)
9061
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
24 pkg_LTLIBRARIES = libsilcgaim.la
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
25 noinst_LIBRARIES =
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
26
9061
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
27 libsilcgaim_la_SOURCES = $(SILCSOURCES)
710302dae4e6 [gaim-migrate @ 9837]
Ethan Blanton <elb@pidgin.im>
parents: 8857
diff changeset
28 libsilcgaim_la_LIBADD = $(SILC_LIBS)
8849
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
29
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
30 endif
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
31
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
32 AM_CPPFLAGS = \
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
33 -I$(top_srcdir)/src \
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
34 $(GLIB_CFLAGS) \
50d0f76639e7 [gaim-migrate @ 9616]
Ethan Blanton <elb@pidgin.im>
parents:
diff changeset
35 $(DEBUG_CFLAGS)