Skip to content

Commit 1e905ea

Browse files
author
Patrick Samson
committed
translations
1 parent 60fd907 commit 1e905ea

File tree

6 files changed

+90
-91
lines changed

6 files changed

+90
-91
lines changed

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and with these convenient features:
1313
- Optional exchange filtering plug-ins (blacklists)
1414
- Multi-recipient writing is possible (can be disabled by configuration)
1515
with min/max constraints
16-
- Messages are managed in threads
16+
- Messages are managed by conversations
1717
- Messages in folders are sortable by sender|recipient|subject|date
1818
- 'Archives' folder in addition to classic Inbox, Sent and Trash folders
1919
- A Quick-Reply form to only ask for a response text

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Each user has access to a collection of messages, stored in folders:
2929
3030
In folders, messages can be presented in two modes:
3131

32-
* by **thread**, for a compact view: the original message and its replies are grouped in a set
32+
* by **conversation**, for a compact view: the original message and its replies are grouped in a set
3333
to constitute one sole entry.
3434
The lastest message (based on the time) is the representative of the set.
3535
* by **message**, for an expanded view: each message is considered by itself.
@@ -43,7 +43,7 @@ Here is a summary of features:
4343
* Optional exchange filtering plug-ins (blacklists)
4444
* Multi-recipient writing is possible (can be disabled by configuration)
4545
with min/max constraints
46-
* Messages are managed in threads
46+
* Messages are managed by conversations
4747
* Messages in folders are sortable by sender|recipient|subject|date
4848
* 'Archives' folder in addition to classic Inbox, Sent and Trash folders
4949
* A Quick-Reply form to only ask for a response text

docs/management.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ it is moved to a ``trash`` folder.
99
One reason is to allow a message to be undeleted if the user wants to retrieve it.
1010
Another reason is that there is only one copy of a message for both the sender and the recipient,
1111
so the message must be marked for deletion by the two parties before to be considered for a withdraw.
12-
An additional constraint is that a message may be a member of a thread and the reply chain
12+
An additional constraint is that a message may be a member of a conversation and the reply chain
1313
must be kept consistent.
1414

1515
So there are some criteria to fulfill by a record to be really deleted from the database:
1616

1717
* both the sender and the recipient must have marked the message as deleted
18-
* if the message is in a thread, all the messages of the thread must be marked for deletion
18+
* if the message is in a conversation, all the messages of the conversation must be marked for deletion
1919
* the action of deletion must have been done enough time ago
2020

2121
A management command is provided for this purpose:
@@ -24,15 +24,15 @@ A management command is provided for this purpose:
2424

2525
It can be run as a cron job or directly.
2626

27-
The ``--days`` option can be used to specify the minimal number of days a message/thread
27+
The ``--days`` option can be used to specify the minimal number of days a message/conversation
2828
must have been marked for deletion.
2929
Default value is 30 days.
3030

3131
postman_checkup
3232
---------------
3333

3434
A management command to run a test suite on the messages presently in the database.
35-
It checks messages and threads for possible inconsistencies, in a read-only mode.
35+
It checks messages and conversations for possible inconsistencies, in a read-only mode.
3636
No change is made on the data.
3737

3838
**django-admin.py postman_checkup**

postman/locale/en/LC_MESSAGES/django.po

Lines changed: 39 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
# This file is distributed under the same license as the PACKAGE package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
6-
#, fuzzy
76
msgid ""
87
msgstr ""
98
"Project-Id-Version: PACKAGE VERSION\n"
109
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2010-12-24 18:38+0100\n"
10+
"POT-Creation-Date: 2010-12-27 13:35+0100\n"
1211
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1312
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1413
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -57,7 +56,7 @@ msgid "Response date cannot be set without at least one reply."
5756
msgstr ""
5857

5958
#: .\admin.py:66
60-
msgid "The message cannot be replied without being in a thread."
59+
msgid "The message cannot be replied without being in a conversation."
6160
msgstr ""
6261

6362
#: .\admin.py:88 .\admin.py:157 .\templates\postman\view.html.py:5
@@ -104,28 +103,28 @@ msgstr ""
104103
msgid "Writing to some users is not possible: {users}."
105104
msgstr ""
106105

107-
#: .\forms.py:149 .\forms.py:161
106+
#: .\forms.py:148 .\forms.py:160
108107
msgid "Recipients"
109108
msgstr ""
110109

111-
#: .\forms.py:149 .\forms.py:161 .\templates\postman\base_folder.html.py:26
110+
#: .\forms.py:148 .\forms.py:160 .\templates\postman\base_folder.html.py:26
112111
#: .\templates\postman\reply.html.py:4
113112
msgid "Recipient"
114113
msgstr ""
115114

116-
#: .\forms.py:160
115+
#: .\forms.py:159
117116
msgid "Email"
118117
msgstr ""
119118

120-
#: .\forms.py:176
119+
#: .\forms.py:175
121120
msgid "Undefined recipient."
122121
msgstr ""
123122

124-
#: .\forms.py:195
123+
#: .\forms.py:194
125124
msgid "Additional recipients"
126125
msgstr ""
127126

128-
#: .\forms.py:195
127+
#: .\forms.py:194
129128
msgid "Additional recipient"
130129
msgstr ""
131130

@@ -149,87 +148,87 @@ msgstr ""
149148
msgid "body"
150149
msgstr ""
151150

152-
#: .\models.py:199 .\models.py:282
151+
#: .\models.py:199 .\models.py:281
153152
msgid "sender"
154153
msgstr ""
155154

156-
#: .\models.py:200 .\models.py:306
155+
#: .\models.py:200 .\models.py:305
157156
msgid "recipient"
158157
msgstr ""
159158

160-
#: .\models.py:202
159+
#: .\models.py:201
161160
msgid "visitor"
162161
msgstr ""
163162

164-
#: .\models.py:203
163+
#: .\models.py:202
165164
msgid "parent message"
166165
msgstr ""
167166

168-
#: .\models.py:204
167+
#: .\models.py:203
169168
msgid "root message"
170169
msgstr ""
171170

172-
#: .\models.py:205
171+
#: .\models.py:204
173172
msgid "sent at"
174173
msgstr ""
175174

176-
#: .\models.py:206
175+
#: .\models.py:205
177176
msgid "read at"
178177
msgstr ""
179178

180-
#: .\models.py:207
179+
#: .\models.py:206
181180
msgid "replied at"
182181
msgstr ""
183182

184-
#: .\models.py:208
183+
#: .\models.py:207
185184
msgid "archived by sender"
186185
msgstr ""
187186

188-
#: .\models.py:209
187+
#: .\models.py:208
189188
msgid "archived by recipient"
190189
msgstr ""
191190

192-
#: .\models.py:210
191+
#: .\models.py:209
193192
msgid "deleted by sender at"
194193
msgstr ""
195194

196-
#: .\models.py:211
195+
#: .\models.py:210
197196
msgid "deleted by recipient at"
198197
msgstr ""
199198

200-
#: .\models.py:213
199+
#: .\models.py:212
201200
msgid "status"
202201
msgstr ""
203202

204-
#: .\models.py:215
203+
#: .\models.py:214
205204
msgid "moderator"
206205
msgstr ""
207206

208-
#: .\models.py:216
207+
#: .\models.py:215
209208
msgid "moderated at"
210209
msgstr ""
211210

212-
#: .\models.py:217
211+
#: .\models.py:216
213212
msgid "rejection reason"
214213
msgstr ""
215214

216-
#: .\models.py:222
215+
#: .\models.py:221
217216
msgid "message"
218217
msgstr ""
219218

220-
#: .\models.py:223
219+
#: .\models.py:222
221220
msgid "messages"
222221
msgstr ""
223222

224-
#: .\models.py:334
223+
#: .\models.py:333
225224
msgid "Undefined sender."
226225
msgstr ""
227226

228-
#: .\models.py:478
227+
#: .\models.py:473
229228
msgid "pending message"
230229
msgstr ""
231230

232-
#: .\models.py:479
231+
#: .\models.py:474
233232
msgid "pending messages"
234233
msgstr ""
235234

@@ -257,20 +256,20 @@ msgstr ""
257256
msgid "Message rejected for at least one recipient."
258257
msgstr ""
259258

260-
#: .\views.py:277
259+
#: .\views.py:276
261260
msgid "Select at least one object."
262261
msgstr ""
263262

264-
#: .\views.py:283
265-
msgid "Message(s) or thread(s) successfully archived."
263+
#: .\views.py:282
264+
msgid "Message(s) or conversation(s) successfully archived."
266265
msgstr ""
267266

268-
#: .\views.py:288
269-
msgid "Message(s) or thread(s) successfully deleted."
267+
#: .\views.py:287
268+
msgid "Message(s) or conversation(s) successfully deleted."
270269
msgstr ""
271270

272-
#: .\views.py:293
273-
msgid "Message(s) or thread(s) successfully recovered."
271+
#: .\views.py:292
272+
msgid "Message(s) or conversation(s) successfully recovered."
274273
msgstr ""
275274

276275
#: .\management\__init__.py:14
@@ -350,7 +349,7 @@ msgid "Sorry, this page number is invalid."
350349
msgstr ""
351350

352351
#: .\templates\postman\base_folder.html.py:12
353-
msgid "by thread"
352+
msgid "by conversation"
354353
msgstr ""
355354

356355
#: .\templates\postman\base_folder.html.py:13
@@ -506,7 +505,7 @@ msgid ""
506505
msgstr ""
507506

508507
#: .\templates\postman\view.html.py:5
509-
msgid "Thread"
508+
msgid "Conversation"
510509
msgstr ""
511510

512511
#: .\templates\postman\view.html.py:13
@@ -517,6 +516,6 @@ msgstr ""
517516
msgid "Back"
518517
msgstr ""
519518

520-
#: .\templatetags\postman_tags.py:34
519+
#: .\templatetags\postman_tags.py:35
521520
msgid "<me>"
522521
msgstr ""
-11 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)