8d07dccd61e270e60470945d21c8b11a615166b6
[odoo/odoo.git] / addons / gamification / i18n / hu.po
1 # Hungarian translation for openobject-addons
2 # Copyright (c) 2014 Rosetta Contributors and Canonical Ltd 2014
3 # This file is distributed under the same license as the openobject-addons package.
4 # FIRST AUTHOR <EMAIL@ADDRESS>, 2014.
5 #
6 msgid ""
7 msgstr ""
8 "Project-Id-Version: openobject-addons\n"
9 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10 "POT-Creation-Date: 2014-09-23 16:27+0000\n"
11 "PO-Revision-Date: 2014-10-20 18:54+0000\n"
12 "Last-Translator: krnkris <Unknown>\n"
13 "Language-Team: Hungarian <hu@li.org>\n"
14 "MIME-Version: 1.0\n"
15 "Content-Type: text/plain; charset=UTF-8\n"
16 "Content-Transfer-Encoding: 8bit\n"
17 "X-Launchpad-Export-Date: 2014-10-21 07:53+0000\n"
18 "X-Generator: Launchpad (build 17203)\n"
19
20 #. module: gamification
21 #: model:email.template,body_html:gamification.email_template_badge_received
22 msgid ""
23 "\n"
24 "        <p>Congratulation, you have received the badge "
25 "<strong>${object.badge_id.name}</strong> !\n"
26 "            % if object.sender_id\n"
27 "                This badge was granted by "
28 "<strong>${object.sender_id.name}</strong>.\n"
29 "            % endif\n"
30 "        </p>\n"
31 "\n"
32 "        % if object.comment\n"
33 "            <p><em>${object.comment}</em></p>\n"
34 "        % endif\n"
35 "        "
36 msgstr ""
37 "\n"
38 "        <p>Gratulálunk, egy jelvényt kapott "
39 "<strong>${object.badge_id.name}</strong> !\n"
40 "            % if object.sender_id\n"
41 "                Ezt a jelvényt adományozta "
42 "<strong>${object.sender_id.name}</strong>.\n"
43 "            % endif\n"
44 "        </p>\n"
45 "\n"
46 "        % if object.comment\n"
47 "            <p><em>${object.comment}</em></p>\n"
48 "        % endif\n"
49 "        "
50
51 #. module: gamification
52 #: model:email.template,body_html:gamification.email_template_goal_reminder
53 msgid ""
54 "\n"
55 "    <header>\n"
56 "        <strong>Reminder ${object.name}</strong>\n"
57 "    </header>\n"
58 "    \n"
59 "    <p>You have not updated your progress for the goal "
60 "${object.definition_id.name} (currently reached at ${object.completeness}%) "
61 "for at least ${object.remind_update_delay} days. Do not forget to do "
62 "it.</p>\n"
63 "            "
64 msgstr ""
65 "\n"
66 "    <header>\n"
67 "        <strong>Emlékeztető${object.name}</strong>\n"
68 "    </header>\n"
69 "    \n"
70 "    <p>Nem frissítette a folyamatait a céljához ${object.definition_id.name} "
71 "(most elérte a ${object.completeness}%) legalább "
72 "${object.remind_update_delay} nappal. Ne felejtse el megcsinálni.</p>\n"
73 "            "
74
75 #. module: gamification
76 #: model:email.template,body_html:gamification.simple_report_template
77 msgid ""
78 "\n"
79 "<header>\n"
80 "    <strong>${object.name}</strong>\n"
81 "</header>\n"
82 "<p class=\"oe_grey\">The following message contains the current progress for "
83 "the challenge ${object.name}</p>\n"
84 "\n"
85 "% if object.visibility_mode == 'personal':\n"
86 "    <table width=\"100%\" border=\"1\">\n"
87 "    <tr>\n"
88 "        <th>Goal</th>\n"
89 "        <th>Target</th>\n"
90 "        <th>Current</th>\n"
91 "        <th>Completeness</th>\n"
92 "    </tr>\n"
93 "    % for line in ctx[\"challenge_lines\"]:\n"
94 "        <tr\n"
95 "            % if line['completeness'] >= 100:\n"
96 "                style=\"font-weight:bold;\"\n"
97 "            % endif\n"
98 "            >\n"
99 "            <td>${line['name']}</td>\n"
100 "            <td>${line['target']}\n"
101 "            % if line['suffix']:\n"
102 "                ${line['suffix']}\n"
103 "            % endif\n"
104 "            </td>\n"
105 "            <td>${line['current']}\n"
106 "            % if line['suffix']:\n"
107 "                ${line['suffix']}\n"
108 "            % endif\n"
109 "            </td>\n"
110 "            <td>${line['completeness']} %</td>\n"
111 "        </tr>\n"
112 "    % endfor\n"
113 "    </table>\n"
114 "% else:\n"
115 "    % for line in ctx[\"challenge_lines\"]:\n"
116 "        <table width=\"100%\" border=\"1\">\n"
117 "            <tr>\n"
118 "                <th colspan=\"4\">${line['name']}</th>\n"
119 "            </tr>\n"
120 "            <tr>\n"
121 "                <th>#</th>\n"
122 "                <th>Person</th>\n"
123 "                <th>Completeness</th>\n"
124 "                <th>Current</th>\n"
125 "            </tr>\n"
126 "            % for goal in line['goals']:\n"
127 "                <tr\n"
128 "                    % if goal.completeness >= 100:\n"
129 "                        style=\"font-weight:bold;\"\n"
130 "                    % endif\n"
131 "                    >\n"
132 "                    <td>${goal['rank']}</td>\n"
133 "                    <td>${goal['name']}</td>\n"
134 "                    <td>${goal['completeness']}%</td>\n"
135 "                    <td>${goal['current']}/${line['target']}\n"
136 "                    % if line['suffix']:\n"
137 "                        ${line['suffix']}\n"
138 "                    % endif\n"
139 "                    </td>\n"
140 "                </tr>\n"
141 "            % endfor\n"
142 "        </table>\n"
143 "\n"
144 "        <br/><br/>\n"
145 "\n"
146 "    % endfor\n"
147 "% endif\n"
148 "            "
149 msgstr ""
150 "\n"
151 "<header>\n"
152 "    <strong>${object.name}</strong>\n"
153 "</header>\n"
154 "<p class=\"oe_grey\">A következő üzenet tartalmazza a jelenlegi kihívás "
155 "folyamatait ${object.name}</p>\n"
156 "\n"
157 "% if object.visibility_mode == 'personal':\n"
158 "    <table width=\"100%\" border=\"1\">\n"
159 "    <tr>\n"
160 "        <th>Cél</th>\n"
161 "        <th>Célkitűzés</th>\n"
162 "        <th>Jelenlegi</th>\n"
163 "        <th>Teljesítés</th>\n"
164 "    </tr>\n"
165 "    % for line in ctx[\"challenge_lines\"]:\n"
166 "        <tr\n"
167 "            % if line['completeness'] >= 100:\n"
168 "                style=\"font-weight:bold;\"\n"
169 "            % endif\n"
170 "            >\n"
171 "            <td>${line['name']}</td>\n"
172 "            <td>${line['target']}\n"
173 "            % if line['suffix']:\n"
174 "                ${line['suffix']}\n"
175 "            % endif\n"
176 "            </td>\n"
177 "            <td>${line['current']}\n"
178 "            % if line['suffix']:\n"
179 "                ${line['suffix']}\n"
180 "            % endif\n"
181 "            </td>\n"
182 "            <td>${line['completeness']} %</td>\n"
183 "        </tr>\n"
184 "    % endfor\n"
185 "    </table>\n"
186 "% else:\n"
187 "    % for line in ctx[\"challenge_lines\"]:\n"
188 "        <table width=\"100%\" border=\"1\">\n"
189 "            <tr>\n"
190 "                <th colspan=\"4\">${line['name']}</th>\n"
191 "            </tr>\n"
192 "            <tr>\n"
193 "                <th>#</th>\n"
194 "                <th>Személy</th>\n"
195 "                <th>Teljesítés</th>\n"
196 "                <th>Jelenlegi</th>\n"
197 "            </tr>\n"
198 "            % a cél tételsorban['goals']:\n"
199 "                <tr\n"
200 "                    % if goal.completeness >= 100:\n"
201 "                        style=\"font-weight:bold;\"\n"
202 "                    % endif\n"
203 "                    >\n"
204 "                    <td>${goal['rank']}</td>\n"
205 "                    <td>${goal['name']}</td>\n"
206 "                    <td>${goal['completeness']}%</td>\n"
207 "                    <td>${goal['current']}/${line['target']}\n"
208 "                    % if line['suffix']:\n"
209 "                        ${line['suffix']}\n"
210 "                    % endif\n"
211 "                    </td>\n"
212 "                </tr>\n"
213 "            % endfor\n"
214 "        </table>\n"
215 "\n"
216 "        <br/><br/>\n"
217 "\n"
218 "    % endfor\n"
219 "% endif\n"
220 "            "
221
222 #. module: gamification
223 #: selection:gamification.challenge.line,condition:0
224 msgid "<="
225 msgstr "<="
226
227 #. module: gamification
228 #: code:addons/gamification/models/challenge.py:745
229 #, python-format
230 msgid ""
231 "<br/>Nobody has succeeded to reach every goal, no badge is rewared for this "
232 "challenge."
233 msgstr ""
234 "<br/>Senkinek nem sikerült az összes cél, nem történt jelvény kiosztás ehhez "
235 "a kihíváshoz."
236
237 #. module: gamification
238 #: code:addons/gamification/models/challenge.py:743
239 #, python-format
240 msgid "<br/>Reward (badge %s) for every succeeding user was sent to %s."
241 msgstr ""
242 "<br/>Jutalom (jelvény %s) az összes sikeres felhasználóhoz kiküldve %s."
243
244 #. module: gamification
245 #: code:addons/gamification/models/challenge.py:752
246 #, python-format
247 msgid ""
248 "<br/>Special rewards were sent to the top competing users. The ranking for "
249 "this challenge is :"
250 msgstr ""
251
252 #. module: gamification
253 #: model:ir.actions.act_window,help:gamification.badge_list_action
254 msgid ""
255 "<p class=\"oe_view_nocontent_create\">\n"
256 "                    Click to create a badge. \n"
257 "                </p>\n"
258 "                <p>\n"
259 "                    A badge is a symbolic token granted to a user as a sign "
260 "of reward.\n"
261 "                    It can be deserved automatically when some conditions "
262 "are met or manually by users.\n"
263 "                    Some badges are harder than others to get with specific "
264 "conditions.\n"
265 "                </p>\n"
266 "            "
267 msgstr ""
268
269 #. module: gamification
270 #: model:ir.actions.act_window,help:gamification.challenge_list_action
271 msgid ""
272 "<p class=\"oe_view_nocontent_create\">\n"
273 "                    Click to create a challenge. \n"
274 "                </p>\n"
275 "                <p>\n"
276 "                    Assign a list of goals to chosen users to evaluate "
277 "them.\n"
278 "                    The challenge can use a period (weekly, monthly...) for "
279 "automatic creation of goals.\n"
280 "                    The goals are created for the specified users or member "
281 "of the group.\n"
282 "                </p>\n"
283 "            "
284 msgstr ""
285 "<p class=\"oe_view_nocontent_create\">\n"
286 "                    Kattintson egy kihívás létrehozásához. \n"
287 "                </p>\n"
288 "                <p>\n"
289 "                    Hozzárendelhet egy, a felhasználók által kiválasztható \n"
290 "                    cál listát, melyből kiértékelheti Őket.\n"
291 "                    A kihívás használhat egy időszakot (heti, havi...) a "
292 "célok automatikus létrehozásához.\n"
293 "                    A célt az ide vonatkozó felhasználóhóz vagy egy csoport "
294 "tagjához hozza létre.\n"
295 "                </p>\n"
296 "            "
297
298 #. module: gamification
299 #: model:ir.actions.act_window,help:gamification.goal_definition_list_action
300 msgid ""
301 "<p class=\"oe_view_nocontent_create\">\n"
302 "                    Click to create a goal definition. \n"
303 "                </p>\n"
304 "                <p>\n"
305 "                    A goal definition is a technical model of goal defining "
306 "a condition to reach.\n"
307 "                    The dates, values to reach or users are defined in goal "
308 "instance.\n"
309 "                </p>\n"
310 "            "
311 msgstr ""
312
313 #. module: gamification
314 #: model:ir.actions.act_window,help:gamification.goal_list_action
315 msgid ""
316 "<p class=\"oe_view_nocontent_create\">\n"
317 "                    Click to create a goal. \n"
318 "                </p>\n"
319 "                <p>\n"
320 "                    A goal is defined by a user and a goal definition.\n"
321 "                    Goals can be created automatically by using challenges.\n"
322 "                </p>\n"
323 "            "
324 msgstr ""
325
326 #. module: gamification
327 #: model:ir.actions.act_window,help:gamification.goals_from_challenge_act
328 msgid ""
329 "<p>\n"
330 "                There is no goals associated to this challenge matching your "
331 "search.\n"
332 "                Make sure that your challenge is active and assigned to at "
333 "least one user.\n"
334 "              </p>\n"
335 "            "
336 msgstr ""
337
338 #. module: gamification
339 #: selection:gamification.challenge.line,condition:0
340 msgid ">="
341 msgstr ""
342
343 #. module: gamification
344 #: help:gamification.goal.definition,condition:0
345 msgid ""
346 "A goal is considered as completed when the current value is compared to the "
347 "value to reach"
348 msgstr ""
349
350 #. module: gamification
351 #: selection:gamification.badge,rule_auth:0
352 msgid "A selected list of users"
353 msgstr ""
354
355 #. module: gamification
356 #: view:gamification.challenge:gamification.view_challenge_wizard
357 msgid "Accept"
358 msgstr ""
359
360 #. module: gamification
361 #: field:gamification.goal.definition,action_id:0
362 msgid "Action"
363 msgstr ""
364
365 #. module: gamification
366 #: field:gamification.badge,active:0
367 msgid "Active"
368 msgstr ""
369
370 #. module: gamification
371 #: view:gamification.challenge:gamification.challenge_form_view
372 msgid "Advanced Options"
373 msgstr ""
374
375 #. module: gamification
376 #: field:gamification.badge,rule_auth:0
377 msgid "Allowance to Grant"
378 msgstr ""
379
380 #. module: gamification
381 #: help:gamification.challenge,user_domain:0
382 msgid "Alternative to a list of users"
383 msgstr ""
384
385 #. module: gamification
386 #: field:gamification.challenge,category:0
387 msgid "Appears in"
388 msgstr ""
389
390 #. module: gamification
391 #: view:gamification.challenge:gamification.challenge_form_view
392 msgid "Assign Challenge To"
393 msgstr ""
394
395 #. module: gamification
396 #: field:gamification.badge,rule_auth_user_ids:0
397 msgid "Authorized Users"
398 msgstr ""
399
400 #. module: gamification
401 #: selection:gamification.goal.definition,computation_mode:0
402 msgid "Automatic: execute a specific Python code"
403 msgstr ""
404
405 #. module: gamification
406 #: selection:gamification.goal.definition,computation_mode:0
407 msgid "Automatic: number of records"
408 msgstr ""
409
410 #. module: gamification
411 #: selection:gamification.goal.definition,computation_mode:0
412 msgid "Automatic: sum on a field"
413 msgstr ""
414
415 #. module: gamification
416 #: view:gamification.badge:gamification.badge_form_view
417 #: field:gamification.badge,name:0
418 #: field:gamification.badge.user,badge_id:0
419 #: field:gamification.badge.user.wizard,badge_id:0
420 msgid "Badge"
421 msgstr ""
422
423 #. module: gamification
424 #: view:gamification.badge:gamification.badge_form_view
425 msgid "Badge Description"
426 msgstr ""
427
428 #. module: gamification
429 #: model:mail.message.subtype,description:gamification.mt_badge_granted
430 #: model:mail.message.subtype,name:gamification.mt_badge_granted
431 msgid "Badge Granted"
432 msgstr ""
433
434 #. module: gamification
435 #: view:gamification.badge:gamification.badge_list_view
436 msgid "Badge List"
437 msgstr ""
438
439 #. module: gamification
440 #: field:gamification.badge.user,badge_name:0
441 msgid "Badge Name"
442 msgstr ""
443
444 #. module: gamification
445 #: model:ir.actions.act_window,name:gamification.badge_list_action
446 #: model:ir.ui.menu,name:gamification.gamification_badge_menu
447 msgid "Badges"
448 msgstr ""
449
450 #. module: gamification
451 #: view:gamification.challenge:gamification.challenge_form_view
452 msgid ""
453 "Badges are granted when a challenge is finished. This is either at the end "
454 "of a running period (eg: end of the month for a monthly challenge), at the "
455 "end date of a challenge (if no periodicity is set) or when the challenge is "
456 "manually closed."
457 msgstr ""
458
459 #. module: gamification
460 #: field:gamification.goal.definition,batch_mode:0
461 msgid "Batch Mode"
462 msgstr ""
463
464 #. module: gamification
465 #: model:gamification.badge,name:gamification.badge_idea
466 msgid "Brilliant"
467 msgstr ""
468
469 #. module: gamification
470 #: view:gamification.badge:gamification.badge_kanban_view
471 msgid "Can not grant"
472 msgstr ""
473
474 #. module: gamification
475 #: code:addons/gamification/models/goal.py:453
476 #, python-format
477 msgid "Can not modify the configuration of a started goal"
478 msgstr ""
479
480 #. module: gamification
481 #: view:gamification.badge.user.wizard:gamification.view_badge_wizard_grant
482 #: view:gamification.goal.wizard:gamification.view_goal_wizard_update_current
483 msgid "Cancel"
484 msgstr ""
485
486 #. module: gamification
487 #: selection:gamification.goal,state:0
488 msgid "Canceled"
489 msgstr ""
490
491 #. module: gamification
492 #: view:gamification.challenge:gamification.challenge_form_view
493 msgid "Category"
494 msgstr ""
495
496 #. module: gamification
497 #: view:gamification.challenge:gamification.view_challenge_wizard
498 #: field:gamification.challenge.line,challenge_id:0
499 #: field:gamification.goal,challenge_id:0
500 msgid "Challenge"
501 msgstr ""
502
503 #. module: gamification
504 #: model:ir.actions.act_window,name:gamification.challenge_wizard
505 msgid "Challenge Description"
506 msgstr ""
507
508 #. module: gamification
509 #: field:gamification.goal,line_id:0
510 msgid "Challenge Line"
511 msgstr ""
512
513 #. module: gamification
514 #: view:gamification.challenge:gamification.view_challenge_wizard
515 #: view:gamification.challenge.line:gamification.challenge_line_list_view
516 msgid "Challenge Lines"
517 msgstr ""
518
519 #. module: gamification
520 #: field:gamification.challenge,name:0
521 msgid "Challenge Name"
522 msgstr ""
523
524 #. module: gamification
525 #: field:gamification.badge.user,challenge_id:0
526 msgid "Challenge originating"
527 msgstr ""
528
529 #. module: gamification
530 #: help:gamification.goal,challenge_id:0
531 msgid ""
532 "Challenge that generated the goal, assign challenge to users to generate "
533 "goals with a value in this field."
534 msgstr ""
535
536 #. module: gamification
537 #: view:gamification.challenge:gamification.view_challenge_kanban
538 #: model:ir.actions.act_window,name:gamification.challenge_list_action
539 #: model:ir.ui.menu,name:gamification.gamification_challenge_menu
540 msgid "Challenges"
541 msgstr ""
542
543 #. module: gamification
544 #: help:gamification.badge,rule_max:0
545 msgid "Check to set a monthly limit per person of sending this badge"
546 msgstr ""
547
548 #. module: gamification
549 #: view:gamification.goal.definition:gamification.goal_definition_form_view
550 msgid "Clickable Goals"
551 msgstr ""
552
553 #. module: gamification
554 #: field:gamification.goal,closed:0
555 msgid "Closed goal"
556 msgstr ""
557
558 #. module: gamification
559 #: field:gamification.badge.user,comment:0
560 #: field:gamification.badge.user.wizard,comment:0
561 msgid "Comment"
562 msgstr ""
563
564 #. module: gamification
565 #: model:gamification.challenge,name:gamification.challenge_base_discover
566 msgid "Complete your Profile"
567 msgstr ""
568
569 #. module: gamification
570 #: field:gamification.goal,completeness:0
571 msgid "Completeness"
572 msgstr ""
573
574 #. module: gamification
575 #: view:gamification.goal.definition:gamification.goal_definition_search_view
576 #: field:gamification.goal.definition,computation_mode:0
577 msgid "Computation Mode"
578 msgstr ""
579
580 #. module: gamification
581 #: field:gamification.goal,computation_mode:0
582 msgid "Computation mode"
583 msgstr ""
584
585 #. module: gamification
586 #: field:gamification.challenge.line,condition:0
587 msgid "Condition"
588 msgstr ""
589
590 #. module: gamification
591 #: model:ir.actions.act_window,name:gamification.action_new_simplified_res_users
592 msgid "Create User"
593 msgstr ""
594
595 #. module: gamification
596 #: model:ir.actions.act_window,help:gamification.action_new_simplified_res_users
597 msgid ""
598 "Create and manage users that will connect to the system. Users can be "
599 "deactivated should there be a period of time during which they will/should "
600 "not connect to the system. You can assign them groups in order to give them "
601 "specific access to the applications they need to use in the system."
602 msgstr ""
603
604 #. module: gamification
605 #: field:gamification.badge.user,create_date:0
606 msgid "Created"
607 msgstr ""
608
609 #. module: gamification
610 #: field:gamification.badge,create_uid:0
611 #: field:gamification.badge.user.wizard,create_uid:0
612 #: field:gamification.challenge,create_uid:0
613 #: field:gamification.challenge.line,create_uid:0
614 #: field:gamification.goal,create_uid:0
615 #: field:gamification.goal.definition,create_uid:0
616 #: field:gamification.goal.wizard,create_uid:0
617 msgid "Created by"
618 msgstr ""
619
620 #. module: gamification
621 #: field:gamification.badge,create_date:0
622 #: field:gamification.badge.user.wizard,create_date:0
623 #: field:gamification.challenge,create_date:0
624 #: field:gamification.challenge.line,create_date:0
625 #: field:gamification.goal,create_date:0
626 #: field:gamification.goal.definition,create_date:0
627 #: field:gamification.goal.wizard,create_date:0
628 msgid "Created on"
629 msgstr ""
630
631 #. module: gamification
632 #: field:gamification.badge.user,create_uid:0
633 msgid "Creator"
634 msgstr ""
635
636 #. module: gamification
637 #: field:gamification.goal.wizard,current:0
638 msgid "Current"
639 msgstr ""
640
641 #. module: gamification
642 #: field:gamification.goal,current:0
643 msgid "Current Value"
644 msgstr ""
645
646 #. module: gamification
647 #: selection:gamification.challenge,period:0
648 #: selection:gamification.challenge,report_message_frequency:0
649 msgid "Daily"
650 msgstr ""
651
652 #. module: gamification
653 #: view:gamification.goal:gamification.goal_form_view
654 msgid "Data"
655 msgstr ""
656
657 #. module: gamification
658 #: field:gamification.goal.definition,field_date_id:0
659 msgid "Date Field"
660 msgstr ""
661
662 #. module: gamification
663 #: help:gamification.badge,message_last_post:0
664 #: help:gamification.challenge,message_last_post:0
665 msgid "Date of the last message posted on the record."
666 msgstr ""
667
668 #. module: gamification
669 #: help:gamification.challenge,category:0
670 msgid "Define the visibility of the challenge through menus"
671 msgstr ""
672
673 #. module: gamification
674 #: help:gamification.goal.definition,computation_mode:0
675 msgid ""
676 "Defined how will be computed the goals. The result of the operation will be "
677 "stored in the field 'Current'."
678 msgstr ""
679
680 #. module: gamification
681 #: field:gamification.goal,definition_condition:0
682 msgid "Definition Condition"
683 msgstr ""
684
685 #. module: gamification
686 #: field:gamification.goal,definition_description:0
687 msgid "Definition Description"
688 msgstr ""
689
690 #. module: gamification
691 #: view:gamification.challenge:gamification.challenge_form_view
692 msgid "Depending on the Display mode, reports will be individual or shared."
693 msgstr ""
694
695 #. module: gamification
696 #: view:gamification.challenge:gamification.challenge_form_view
697 msgid ""
698 "Describe the challenge: what is does, who it targets, why it matters..."
699 msgstr ""
700
701 #. module: gamification
702 #: view:gamification.badge.user.wizard:gamification.view_badge_wizard_grant
703 msgid "Describe what they did and why it matters (will be public)"
704 msgstr ""
705
706 #. module: gamification
707 #: field:gamification.badge,description:0
708 #: field:gamification.challenge,description:0
709 msgid "Description"
710 msgstr ""
711
712 #. module: gamification
713 #: field:gamification.challenge,visibility_mode:0
714 #: field:gamification.goal,definition_display:0
715 msgid "Display Mode"
716 msgstr ""
717
718 #. module: gamification
719 #: field:gamification.goal.definition,display_mode:0
720 msgid "Displayed as"
721 msgstr ""
722
723 #. module: gamification
724 #: field:gamification.goal.definition,batch_distinctive_field:0
725 msgid "Distinctive field for batch user"
726 msgstr ""
727
728 #. module: gamification
729 #: help:gamification.goal.definition,domain:0
730 msgid ""
731 "Domain for filtering records. General rule, not user depending, e.g. "
732 "[('state', '=', 'done')]. The expression can contain reference to 'user' "
733 "which is a browse record of the current user if not in batch mode."
734 msgstr ""
735
736 #. module: gamification
737 #: selection:gamification.challenge,state:0
738 #: view:gamification.goal:gamification.goal_search_view
739 msgid "Done"
740 msgstr ""
741
742 #. module: gamification
743 #: selection:gamification.challenge,state:0
744 #: view:gamification.goal:gamification.goal_search_view
745 #: selection:gamification.goal,state:0
746 msgid "Draft"
747 msgstr ""
748
749 #. module: gamification
750 #: field:gamification.challenge,end_date:0
751 #: view:gamification.goal:gamification.goal_search_view
752 #: field:gamification.goal,end_date:0
753 msgid "End Date"
754 msgstr ""
755
756 #. module: gamification
757 #: code:addons/gamification/models/challenge.py:553
758 #: code:addons/gamification/models/goal.py:148
759 #: code:addons/gamification/models/goal.py:453
760 #, python-format
761 msgid "Error!"
762 msgstr ""
763
764 #. module: gamification
765 #: help:gamification.goal.definition,batch_mode:0
766 msgid "Evaluate the expression in batch instead of once for each user"
767 msgstr ""
768
769 #. module: gamification
770 #: field:gamification.goal.definition,batch_user_expression:0
771 msgid "Evaluted expression for batch mode"
772 msgstr ""
773
774 #. module: gamification
775 #: view:gamification.challenge:gamification.view_challenge_wizard
776 msgid "Even if the challenge is failed, best challengers will be rewarded"
777 msgstr ""
778
779 #. module: gamification
780 #: selection:gamification.badge,rule_auth:0
781 msgid "Everyone"
782 msgstr ""
783
784 #. module: gamification
785 #: selection:gamification.goal.definition,display_mode:0
786 msgid "Exclusive (done or not-done)"
787 msgstr ""
788
789 #. module: gamification
790 #: selection:gamification.goal,state:0
791 msgid "Failed"
792 msgstr ""
793
794 #. module: gamification
795 #: field:gamification.goal.definition,field_id:0
796 msgid "Field to Sum"
797 msgstr ""
798
799 #. module: gamification
800 #: field:gamification.goal.definition,domain:0
801 msgid "Filter Domain"
802 msgstr ""
803
804 #. module: gamification
805 #: field:gamification.badge,message_follower_ids:0
806 #: field:gamification.challenge,message_follower_ids:0
807 msgid "Followers"
808 msgstr ""
809
810 #. module: gamification
811 #: field:gamification.challenge,reward_first_id:0
812 msgid "For 1st user"
813 msgstr ""
814
815 #. module: gamification
816 #: field:gamification.challenge,reward_second_id:0
817 msgid "For 2nd user"
818 msgstr ""
819
820 #. module: gamification
821 #: field:gamification.challenge,reward_third_id:0
822 msgid "For 3rd user"
823 msgstr ""
824
825 #. module: gamification
826 #: field:gamification.challenge,reward_id:0
827 msgid "For Every Succeding User"
828 msgstr ""
829
830 #. module: gamification
831 #: view:gamification.goal.definition:gamification.goal_definition_form_view
832 msgid "Formating Options"
833 msgstr ""
834
835 #. module: gamification
836 #: view:gamification.goal:gamification.goal_kanban_view
837 msgid "From"
838 msgstr ""
839
840 #. module: gamification
841 #: field:gamification.goal.definition,full_suffix:0
842 msgid "Full Suffix"
843 msgstr ""
844
845 #. module: gamification
846 #: model:ir.module.category,name:gamification.module_goal_category
847 msgid "Gamification"
848 msgstr ""
849
850 #. module: gamification
851 #: model:ir.ui.menu,name:gamification.gamification_menu
852 msgid "Gamification Tools"
853 msgstr ""
854
855 #. module: gamification
856 #: model:ir.model,name:gamification.model_gamification_badge
857 msgid "Gamification badge"
858 msgstr ""
859
860 #. module: gamification
861 #: model:ir.model,name:gamification.model_gamification_challenge
862 msgid "Gamification challenge"
863 msgstr ""
864
865 #. module: gamification
866 #: model:ir.model,name:gamification.model_gamification_challenge_line
867 msgid "Gamification generic goal for challenge"
868 msgstr ""
869
870 #. module: gamification
871 #: model:ir.model,name:gamification.model_gamification_goal_definition
872 msgid "Gamification goal definition"
873 msgstr ""
874
875 #. module: gamification
876 #: model:ir.model,name:gamification.model_gamification_goal
877 msgid "Gamification goal instance"
878 msgstr ""
879
880 #. module: gamification
881 #: model:ir.model,name:gamification.model_gamification_badge_user
882 msgid "Gamification user badge"
883 msgstr ""
884
885 #. module: gamification
886 #: view:gamification.challenge:gamification.view_challenge_kanban
887 #: view:gamification.goal:gamification.goal_form_view
888 #: field:gamification.goal.wizard,goal_id:0
889 msgid "Goal"
890 msgstr ""
891
892 #. module: gamification
893 #: field:gamification.challenge.line,definition_id:0
894 #: view:gamification.goal:gamification.goal_search_view
895 #: field:gamification.goal,definition_id:0
896 #: field:gamification.goal.definition,name:0
897 msgid "Goal Definition"
898 msgstr ""
899
900 #. module: gamification
901 #: view:gamification.goal.definition:gamification.goal_definition_list_view
902 #: model:ir.actions.act_window,name:gamification.goal_definition_list_action
903 #: model:ir.ui.menu,name:gamification.gamification_definition_menu
904 msgid "Goal Definitions"
905 msgstr ""
906
907 #. module: gamification
908 #: field:gamification.goal.definition,description:0
909 msgid "Goal Description"
910 msgstr ""
911
912 #. module: gamification
913 #: view:gamification.goal:gamification.goal_form_view
914 msgid "Goal Failed"
915 msgstr ""
916
917 #. module: gamification
918 #: view:gamification.goal:gamification.goal_list_view
919 msgid "Goal List"
920 msgstr ""
921
922 #. module: gamification
923 #: field:gamification.goal.definition,condition:0
924 msgid "Goal Performance"
925 msgstr ""
926
927 #. module: gamification
928 #: view:gamification.goal:gamification.goal_form_view
929 msgid "Goal Reached"
930 msgstr ""
931
932 #. module: gamification
933 #: view:gamification.challenge:gamification.challenge_form_view
934 #: view:gamification.challenge:gamification.challenge_list_view
935 #: view:gamification.goal.definition:gamification.goal_definition_form_view
936 msgid "Goal definitions"
937 msgstr ""
938
939 #. module: gamification
940 #: view:gamification.challenge:gamification.challenge_form_view
941 #: view:gamification.challenge:gamification.view_challenge_kanban
942 #: view:gamification.challenge:gamification.view_challenge_wizard
943 #: model:ir.actions.act_window,name:gamification.goal_list_action
944 #: model:ir.ui.menu,name:gamification.gamification_goal_menu
945 msgid "Goals"
946 msgstr ""
947
948 #. module: gamification
949 #: model:gamification.badge,name:gamification.badge_good_job
950 msgid "Good Job"
951 msgstr ""
952
953 #. module: gamification
954 #: view:gamification.badge:gamification.badge_kanban_view
955 msgid "Grant"
956 msgstr ""
957
958 #. module: gamification
959 #: view:gamification.badge.user.wizard:gamification.view_badge_wizard_grant
960 #: model:ir.actions.act_window,name:gamification.action_grant_wizard
961 msgid "Grant Badge"
962 msgstr ""
963
964 #. module: gamification
965 #: view:gamification.badge.user.wizard:gamification.view_badge_wizard_grant
966 #: view:gamification.goal.wizard:gamification.view_goal_wizard_update_current
967 msgid "Grant Badge To"
968 msgstr ""
969
970 #. module: gamification
971 #: view:gamification.badge:gamification.badge_form_view
972 msgid "Grant this Badge"
973 msgstr ""
974
975 #. module: gamification
976 #: view:gamification.badge.user:gamification.badge_user_kanban_view
977 msgid "Granted by"
978 msgstr ""
979
980 #. module: gamification
981 #: view:gamification.badge:gamification.badge_form_view
982 msgid "Granting"
983 msgstr ""
984
985 #. module: gamification
986 #: view:gamification.challenge:gamification.challenge_search_view
987 #: view:gamification.goal:gamification.goal_search_view
988 #: view:gamification.goal.definition:gamification.goal_definition_search_view
989 msgid "Group By"
990 msgstr ""
991
992 #. module: gamification
993 #: help:gamification.challenge,report_message_group_id:0
994 msgid "Group that will receive a copy of the report in addition to the user"
995 msgstr ""
996
997 #. module: gamification
998 #: view:gamification.challenge:gamification.challenge_search_view
999 msgid "HR Challenges"
1000 msgstr ""
1001
1002 #. module: gamification
1003 #: model:gamification.badge,name:gamification.badge_hidden
1004 msgid "Hidden"
1005 msgstr ""
1006
1007 #. module: gamification
1008 #: help:gamification.badge,message_summary:0
1009 #: help:gamification.challenge,message_summary:0
1010 msgid ""
1011 "Holds the Chatter summary (number of messages, ...). This summary is "
1012 "directly in html format in order to be inserted in kanban views."
1013 msgstr ""
1014
1015 #. module: gamification
1016 #: view:gamification.goal.definition:gamification.goal_definition_form_view
1017 msgid "How to compute the goal?"
1018 msgstr ""
1019
1020 #. module: gamification
1021 #: field:gamification.badge,id:0
1022 #: field:gamification.badge.user,id:0
1023 #: field:gamification.badge.user.wizard,id:0
1024 #: field:gamification.challenge,id:0
1025 #: field:gamification.challenge.line,id:0
1026 #: field:gamification.goal,id:0
1027 #: field:gamification.goal.definition,id:0
1028 #: field:gamification.goal.wizard,id:0
1029 msgid "ID"
1030 msgstr ""
1031
1032 #. module: gamification
1033 #: field:gamification.goal.definition,res_id_field:0
1034 msgid "ID Field of user"
1035 msgstr ""
1036
1037 #. module: gamification
1038 #: help:gamification.badge,remaining_sending:0
1039 msgid "If a maxium is set"
1040 msgstr ""
1041
1042 #. module: gamification
1043 #: help:gamification.badge,message_unread:0
1044 #: help:gamification.challenge,message_unread:0
1045 msgid "If checked new messages require your attention."
1046 msgstr ""
1047
1048 #. module: gamification
1049 #: help:gamification.badge.user,challenge_id:0
1050 msgid "If this badge was rewarded through a challenge"
1051 msgstr ""
1052
1053 #. module: gamification
1054 #: field:gamification.badge,image:0
1055 msgid "Image"
1056 msgstr ""
1057
1058 #. module: gamification
1059 #: selection:gamification.challenge,state:0
1060 msgid "In Progress"
1061 msgstr ""
1062
1063 #. module: gamification
1064 #: view:gamification.goal.definition:gamification.goal_definition_form_view
1065 msgid ""
1066 "In batch mode, the domain is evaluated globally. If enabled, do not use "
1067 "keyword 'user' in above filter domain."
1068 msgstr ""
1069
1070 #. module: gamification
1071 #: help:gamification.goal.definition,batch_distinctive_field:0
1072 msgid ""
1073 "In batch mode, this indicates which field distinct one user form the other, "
1074 "e.g. user_id, partner_id..."
1075 msgstr ""
1076
1077 #. module: gamification
1078 #: help:gamification.goal,last_update:0
1079 msgid ""
1080 "In case of manual goal, reminders are sent if the goal as not been updated "
1081 "for a while (defined in challenge). Ignored in case of non-manual goal or "
1082 "goal not linked to a challenge."
1083 msgstr ""
1084
1085 #. module: gamification
1086 #: selection:gamification.goal,state:0
1087 msgid "In progress"
1088 msgstr ""
1089
1090 #. module: gamification
1091 #: selection:gamification.challenge,visibility_mode:0
1092 msgid "Individual Goals"
1093 msgstr ""
1094
1095 #. module: gamification
1096 #: field:gamification.goal.definition,model_inherited_model_ids:0
1097 msgid "Inherited models"
1098 msgstr ""
1099
1100 #. module: gamification
1101 #: code:addons/gamification/models/goal.py:319
1102 #, python-format
1103 msgid "Invalid return content from the evaluation of code for definition %s"
1104 msgstr ""
1105
1106 #. module: gamification
1107 #: model:gamification.goal.definition,name:gamification.definition_base_invite
1108 msgid "Invite new Users"
1109 msgstr ""
1110
1111 #. module: gamification
1112 #: view:gamification.challenge:gamification.view_challenge_wizard
1113 msgid "Invited"
1114 msgstr ""
1115
1116 #. module: gamification
1117 #. openerp-web
1118 #: code:addons/gamification/static/src/xml/gamification.xml:105
1119 #, python-format
1120 msgid "Invited Challenges"
1121 msgstr ""
1122
1123 #. module: gamification
1124 #: field:gamification.badge,message_is_follower:0
1125 #: field:gamification.challenge,message_is_follower:0
1126 msgid "Is a Follower"
1127 msgstr ""
1128
1129 #. module: gamification
1130 #: field:gamification.badge,message_last_post:0
1131 #: field:gamification.challenge,message_last_post:0
1132 msgid "Last Message Date"
1133 msgstr ""
1134
1135 #. module: gamification
1136 #: field:gamification.challenge,last_report_date:0
1137 msgid "Last Report Date"
1138 msgstr ""
1139
1140 #. module: gamification
1141 #: field:gamification.goal,last_update:0
1142 msgid "Last Update"
1143 msgstr ""
1144
1145 #. module: gamification
1146 #: field:gamification.badge,write_uid:0
1147 #: field:gamification.badge.user,write_uid:0
1148 #: field:gamification.badge.user.wizard,write_uid:0
1149 #: field:gamification.challenge,write_uid:0
1150 #: field:gamification.challenge.line,write_uid:0
1151 #: field:gamification.goal,write_uid:0
1152 #: field:gamification.goal.definition,write_uid:0
1153 #: field:gamification.goal.wizard,write_uid:0
1154 msgid "Last Updated by"
1155 msgstr ""
1156
1157 #. module: gamification
1158 #: field:gamification.badge,write_date:0
1159 #: field:gamification.badge.user,write_date:0
1160 #: field:gamification.badge.user.wizard,write_date:0
1161 #: field:gamification.challenge,write_date:0
1162 #: field:gamification.challenge.line,write_date:0
1163 #: field:gamification.goal,write_date:0
1164 #: field:gamification.goal.definition,write_date:0
1165 #: field:gamification.goal.wizard,write_date:0
1166 msgid "Last Updated on"
1167 msgstr ""
1168
1169 #. module: gamification
1170 #: selection:gamification.challenge,visibility_mode:0
1171 msgid "Leader Board (Group Ranking)"
1172 msgstr ""
1173
1174 #. module: gamification
1175 #: field:gamification.badge,rule_max_number:0
1176 msgid "Limitation Number"
1177 msgstr ""
1178
1179 #. module: gamification
1180 #: view:gamification.challenge:gamification.challenge_form_view
1181 msgid "Line List"
1182 msgstr ""
1183
1184 #. module: gamification
1185 #: field:gamification.challenge,line_ids:0
1186 msgid "Lines"
1187 msgstr ""
1188
1189 #. module: gamification
1190 #: help:gamification.challenge,line_ids:0
1191 msgid "List of goals that will be set"
1192 msgstr ""
1193
1194 #. module: gamification
1195 #: help:gamification.challenge,user_ids:0
1196 msgid "List of users participating to the challenge"
1197 msgstr ""
1198
1199 #. module: gamification
1200 #: model:gamification.goal.definition,name:gamification.definition_nbr_following
1201 msgid "Mail Group Following"
1202 msgstr ""
1203
1204 #. module: gamification
1205 #: model:res.groups,name:gamification.group_goal_manager
1206 msgid "Manager"
1207 msgstr ""
1208
1209 #. module: gamification
1210 #: field:gamification.badge,message_ids:0
1211 #: field:gamification.challenge,message_ids:0
1212 msgid "Messages"
1213 msgstr ""
1214
1215 #. module: gamification
1216 #: help:gamification.badge,message_ids:0
1217 #: help:gamification.challenge,message_ids:0
1218 msgid "Messages and communication history"
1219 msgstr ""
1220
1221 #. module: gamification
1222 #: view:gamification.goal.definition:gamification.goal_definition_search_view
1223 #: field:gamification.goal.definition,model_id:0
1224 msgid "Model"
1225 msgstr ""
1226
1227 #. module: gamification
1228 #: field:gamification.challenge.line,definition_monetary:0
1229 msgid "Monetary"
1230 msgstr ""
1231
1232 #. module: gamification
1233 #: field:gamification.goal.definition,monetary:0
1234 msgid "Monetary Value"
1235 msgstr ""
1236
1237 #. module: gamification
1238 #: selection:gamification.challenge,period:0
1239 #: selection:gamification.challenge,report_message_frequency:0
1240 msgid "Monthly"
1241 msgstr ""
1242
1243 #. module: gamification
1244 #: field:gamification.badge,rule_max:0
1245 msgid "Monthly Limited Sending"
1246 msgstr ""
1247
1248 #. module: gamification
1249 #: field:gamification.badge,stat_this_month:0
1250 msgid "Monthly total"
1251 msgstr ""
1252
1253 #. module: gamification
1254 #: view:gamification.goal:gamification.goal_search_view
1255 msgid "My Goals"
1256 msgstr ""
1257
1258 #. module: gamification
1259 #: field:gamification.badge,stat_my_monthly_sending:0
1260 msgid "My Monthly Sending Total"
1261 msgstr ""
1262
1263 #. module: gamification
1264 #: field:gamification.badge,stat_my_this_month:0
1265 msgid "My Monthly Total"
1266 msgstr ""
1267
1268 #. module: gamification
1269 #: field:gamification.badge,stat_my:0
1270 msgid "My Total"
1271 msgstr ""
1272
1273 #. module: gamification
1274 #: field:gamification.challenge.line,name:0
1275 msgid "Name"
1276 msgstr ""
1277
1278 #. module: gamification
1279 #: selection:gamification.challenge,report_message_frequency:0
1280 msgid "Never"
1281 msgstr ""
1282
1283 #. module: gamification
1284 #: help:gamification.challenge,remind_update_delay:0
1285 msgid "Never reminded if no value or zero is specified."
1286 msgstr ""
1287
1288 #. module: gamification
1289 #: field:gamification.challenge,next_report_date:0
1290 msgid "Next Report Date"
1291 msgstr ""
1292
1293 #. module: gamification
1294 #: view:gamification.badge:gamification.badge_form_view
1295 msgid "No monthly sending limit"
1296 msgstr ""
1297
1298 #. module: gamification
1299 #: selection:gamification.badge,rule_auth:0
1300 msgid "No one, assigned through challenges"
1301 msgstr ""
1302
1303 #. module: gamification
1304 #: code:addons/gamification/models/challenge.py:755
1305 #, python-format
1306 msgid "Nobody reached the required conditions to receive special badges."
1307 msgstr ""
1308
1309 #. module: gamification
1310 #: selection:gamification.challenge,period:0
1311 msgid "Non recurring"
1312 msgstr ""
1313
1314 #. module: gamification
1315 #: field:gamification.challenge,remind_update_delay:0
1316 msgid "Non-updated manual goals will be reminded after"
1317 msgstr ""
1318
1319 #. module: gamification
1320 #: view:gamification.challenge:gamification.challenge_form_view
1321 msgid "Notification Messages"
1322 msgstr ""
1323
1324 #. module: gamification
1325 #: field:gamification.badge,stat_count_distinct:0
1326 msgid "Number of users"
1327 msgstr ""
1328
1329 #. module: gamification
1330 #: selection:gamification.challenge,report_message_frequency:0
1331 msgid "On change"
1332 msgstr ""
1333
1334 #. module: gamification
1335 #: help:gamification.badge,rule_auth_badge_ids:0
1336 msgid "Only the people having these badges can give this badge"
1337 msgstr ""
1338
1339 #. module: gamification
1340 #: help:gamification.badge,rule_auth_user_ids:0
1341 msgid "Only these people can give this badge"
1342 msgstr ""
1343
1344 #. module: gamification
1345 #: view:gamification.goal.definition:gamification.goal_definition_form_view
1346 msgid "Optimisation"
1347 msgstr ""
1348
1349 #. module: gamification
1350 #: field:gamification.badge,owner_ids:0
1351 msgid "Owners"
1352 msgstr ""
1353
1354 #. module: gamification
1355 #: view:gamification.challenge:gamification.view_challenge_wizard
1356 msgid "Participating"
1357 msgstr ""
1358
1359 #. module: gamification
1360 #: selection:gamification.badge,rule_auth:0
1361 msgid "People having some badges"
1362 msgstr ""
1363
1364 #. module: gamification
1365 #: view:gamification.challenge:gamification.challenge_search_view
1366 msgid "Period"
1367 msgstr ""
1368
1369 #. module: gamification
1370 #: help:gamification.challenge,period:0
1371 msgid ""
1372 "Period of automatic goal assigment. If none is selected, should be launched "
1373 "manually."
1374 msgstr ""
1375
1376 #. module: gamification
1377 #: field:gamification.challenge,period:0
1378 msgid "Periodicity"
1379 msgstr ""
1380
1381 #. module: gamification
1382 #: model:gamification.badge,name:gamification.badge_problem_solver
1383 msgid "Problem Solver"
1384 msgstr ""
1385
1386 #. module: gamification
1387 #: selection:gamification.goal.definition,display_mode:0
1388 msgid "Progressive (using numerical values)"
1389 msgstr ""
1390
1391 #. module: gamification
1392 #: field:gamification.goal.definition,compute_code:0
1393 msgid "Python Code"
1394 msgstr ""
1395
1396 #. module: gamification
1397 #: help:gamification.goal.definition,compute_code:0
1398 msgid ""
1399 "Python code to be executed for each user. 'result' should contains the new "
1400 "current value. Evaluated user can be access through object.user_id."
1401 msgstr ""
1402
1403 #. module: gamification
1404 #: selection:gamification.goal,state:0
1405 msgid "Reached"
1406 msgstr ""
1407
1408 #. module: gamification
1409 #: view:gamification.goal:gamification.goal_form_view
1410 msgid "Reached when current value is"
1411 msgstr ""
1412
1413 #. module: gamification
1414 #: selection:gamification.goal.definition,computation_mode:0
1415 msgid "Recorded manually"
1416 msgstr ""
1417
1418 #. module: gamification
1419 #: view:gamification.goal:gamification.goal_form_view
1420 msgid "Reference"
1421 msgstr ""
1422
1423 #. module: gamification
1424 #: view:gamification.challenge:gamification.challenge_form_view
1425 msgid "Refresh Challenge"
1426 msgstr ""
1427
1428 #. module: gamification
1429 #: view:gamification.challenge:gamification.view_challenge_wizard
1430 msgid "Reject"
1431 msgstr ""
1432
1433 #. module: gamification
1434 #: view:gamification.challenge:gamification.challenge_form_view
1435 msgid "Related"
1436 msgstr ""
1437
1438 #. module: gamification
1439 #: model:ir.actions.act_window,name:gamification.goals_from_challenge_act
1440 msgid "Related Goals"
1441 msgstr ""
1442
1443 #. module: gamification
1444 #: field:gamification.badge,remaining_sending:0
1445 msgid "Remaining Sending Allowed"
1446 msgstr ""
1447
1448 #. module: gamification
1449 #: field:gamification.goal,remind_update_delay:0
1450 msgid "Remind delay"
1451 msgstr ""
1452
1453 #. module: gamification
1454 #: view:gamification.challenge:gamification.challenge_form_view
1455 msgid "Reminders for Manual Goals"
1456 msgstr ""
1457
1458 #. module: gamification
1459 #: field:gamification.challenge,report_message_frequency:0
1460 msgid "Report Frequency"
1461 msgstr ""
1462
1463 #. module: gamification
1464 #: field:gamification.challenge,report_template_id:0
1465 msgid "Report Template"
1466 msgstr ""
1467
1468 #. module: gamification
1469 #: field:gamification.badge,rule_auth_badge_ids:0
1470 msgid "Required Badges"
1471 msgstr ""
1472
1473 #. module: gamification
1474 #: view:gamification.goal:gamification.goal_form_view
1475 msgid "Reset Completion"
1476 msgstr ""
1477
1478 #. module: gamification
1479 #: field:gamification.challenge,manager_id:0
1480 msgid "Responsible"
1481 msgstr ""
1482
1483 #. module: gamification
1484 #: code:addons/gamification/models/challenge.py:553
1485 #, python-format
1486 msgid "Retrieving progress for personal challenge without user information"
1487 msgstr ""
1488
1489 #. module: gamification
1490 #: view:gamification.challenge:gamification.challenge_form_view
1491 #: view:gamification.challenge:gamification.view_challenge_wizard
1492 msgid "Reward"
1493 msgstr ""
1494
1495 #. module: gamification
1496 #: field:gamification.challenge,reward_failure:0
1497 msgid "Reward Bests if not Succeeded?"
1498 msgstr ""
1499
1500 #. module: gamification
1501 #: field:gamification.challenge,reward_realtime:0
1502 msgid "Reward as soon as every goal is reached"
1503 msgstr ""
1504
1505 #. module: gamification
1506 #: field:gamification.badge,challenge_ids:0
1507 msgid "Reward of Challenges"
1508 msgstr ""
1509
1510 #. module: gamification
1511 #: field:gamification.badge,goal_definition_ids:0
1512 msgid "Rewarded by"
1513 msgstr ""
1514
1515 #. module: gamification
1516 #: view:gamification.badge:gamification.badge_form_view
1517 msgid "Rewards for challenges"
1518 msgstr ""
1519
1520 #. module: gamification
1521 #: view:gamification.goal:gamification.goal_search_view
1522 msgid "Running"
1523 msgstr ""
1524
1525 #. module: gamification
1526 #: view:gamification.challenge:gamification.challenge_search_view
1527 msgid "Running Challenges"
1528 msgstr ""
1529
1530 #. module: gamification
1531 #: view:gamification.goal:gamification.goal_form_view
1532 msgid "Schedule"
1533 msgstr ""
1534
1535 #. module: gamification
1536 #: view:gamification.challenge:gamification.challenge_search_view
1537 msgid "Search Challenges"
1538 msgstr ""
1539
1540 #. module: gamification
1541 #: view:gamification.goal.definition:gamification.goal_definition_search_view
1542 msgid "Search Goal Definitions"
1543 msgstr ""
1544
1545 #. module: gamification
1546 #: view:gamification.goal:gamification.goal_search_view
1547 msgid "Search Goals"
1548 msgstr ""
1549
1550 #. module: gamification
1551 #: view:gamification.badge:gamification.badge_form_view
1552 msgid ""
1553 "Security rules to define who is allowed to manually grant badges. Not "
1554 "enforced for administrator."
1555 msgstr ""
1556
1557 #. module: gamification
1558 #: view:gamification.challenge:gamification.challenge_form_view
1559 msgid "Send Report"
1560 msgstr ""
1561
1562 #. module: gamification
1563 #: field:gamification.challenge,report_message_group_id:0
1564 msgid "Send a copy to"
1565 msgstr ""
1566
1567 #. module: gamification
1568 #: field:gamification.badge.user,sender_id:0
1569 msgid "Sender"
1570 msgstr ""
1571
1572 #. module: gamification
1573 #: field:gamification.challenge.line,sequence:0
1574 msgid "Sequence"
1575 msgstr ""
1576
1577 #. module: gamification
1578 #: help:gamification.challenge.line,sequence:0
1579 msgid "Sequence number for ordering"
1580 msgstr ""
1581
1582 #. module: gamification
1583 #: view:gamification.goal.wizard:gamification.view_goal_wizard_update_current
1584 msgid "Set the current value you have reached for this goal"
1585 msgstr ""
1586
1587 #. module: gamification
1588 #: model:gamification.goal.definition,name:gamification.definition_base_company_data
1589 msgid "Set your Company Data"
1590 msgstr ""
1591
1592 #. module: gamification
1593 #: model:gamification.goal.definition,name:gamification.definition_base_company_logo
1594 msgid "Set your Company Logo"
1595 msgstr ""
1596
1597 #. module: gamification
1598 #: model:gamification.goal.definition,name:gamification.definition_base_timezone
1599 msgid "Set your Timezone"
1600 msgstr ""
1601
1602 #. module: gamification
1603 #: model:gamification.challenge,name:gamification.challenge_base_configure
1604 msgid "Setup your Company"
1605 msgstr ""
1606
1607 #. module: gamification
1608 #: view:gamification.challenge:gamification.challenge_form_view
1609 msgid "Start Challenge"
1610 msgstr ""
1611
1612 #. module: gamification
1613 #: field:gamification.challenge,start_date:0
1614 #: field:gamification.goal,start_date:0
1615 msgid "Start Date"
1616 msgstr ""
1617
1618 #. module: gamification
1619 #: view:gamification.goal:gamification.goal_form_view
1620 msgid "Start goal"
1621 msgstr ""
1622
1623 #. module: gamification
1624 #: view:gamification.challenge:gamification.challenge_search_view
1625 #: field:gamification.challenge,state:0
1626 #: view:gamification.goal:gamification.goal_search_view
1627 #: field:gamification.goal,state:0
1628 msgid "State"
1629 msgstr ""
1630
1631 #. module: gamification
1632 #: view:gamification.badge:gamification.badge_form_view
1633 msgid "Statistics"
1634 msgstr ""
1635
1636 #. module: gamification
1637 #: view:gamification.challenge:gamification.challenge_form_view
1638 msgid "Subscriptions"
1639 msgstr ""
1640
1641 #. module: gamification
1642 #: field:gamification.challenge.line,definition_full_suffix:0
1643 #: field:gamification.goal,definition_suffix:0
1644 #: field:gamification.goal.definition,suffix:0
1645 msgid "Suffix"
1646 msgstr ""
1647
1648 #. module: gamification
1649 #: field:gamification.challenge,invited_user_ids:0
1650 msgid "Suggest to users"
1651 msgstr ""
1652
1653 #. module: gamification
1654 #: field:gamification.badge,message_summary:0
1655 #: field:gamification.challenge,message_summary:0
1656 msgid "Summary"
1657 msgstr ""
1658
1659 #. module: gamification
1660 #: field:gamification.challenge.line,target_goal:0
1661 msgid "Target Value to Reach"
1662 msgstr ""
1663
1664 #. module: gamification
1665 #. openerp-web
1666 #: code:addons/gamification/static/src/xml/gamification.xml:32
1667 #: code:addons/gamification/static/src/xml/gamification.xml:54
1668 #, python-format
1669 msgid "Target:"
1670 msgstr ""
1671
1672 #. module: gamification
1673 #. openerp-web
1674 #: code:addons/gamification/static/src/xml/gamification.xml:35
1675 #: code:addons/gamification/static/src/xml/gamification.xml:57
1676 #, python-format
1677 msgid "Target: <="
1678 msgstr ""
1679
1680 #. module: gamification
1681 #: view:gamification.goal:gamification.goal_kanban_view
1682 msgid "Target: less than"
1683 msgstr ""
1684
1685 #. module: gamification
1686 #: help:gamification.goal.definition,action_id:0
1687 msgid "The action that will be called to update the goal value."
1688 msgstr ""
1689
1690 #. module: gamification
1691 #: code:addons/gamification/models/challenge.py:739
1692 #, python-format
1693 msgid "The challenge %s is finished."
1694 msgstr ""
1695
1696 #. module: gamification
1697 #: help:gamification.goal.definition,full_suffix:0
1698 msgid "The currency and suffix field"
1699 msgstr ""
1700
1701 #. module: gamification
1702 #: help:gamification.goal.definition,field_date_id:0
1703 msgid "The date to use for the time period evaluated"
1704 msgstr ""
1705
1706 #. module: gamification
1707 #: help:gamification.challenge,end_date:0
1708 msgid ""
1709 "The day a new challenge will be automatically closed. If no periodicity is "
1710 "set, will use this date as the goal end date."
1711 msgstr ""
1712
1713 #. module: gamification
1714 #: help:gamification.challenge,start_date:0
1715 msgid ""
1716 "The day a new challenge will be automatically started. If no periodicity is "
1717 "set, will use this date as the goal start date."
1718 msgstr ""
1719
1720 #. module: gamification
1721 #: code:addons/gamification/models/goal.py:148
1722 #, python-format
1723 msgid ""
1724 "The domain for the definition %s seems incorrect, please check it.\n"
1725 "\n"
1726 "%s"
1727 msgstr ""
1728
1729 #. module: gamification
1730 #: help:gamification.goal.definition,field_id:0
1731 msgid "The field containing the value to evaluate"
1732 msgstr ""
1733
1734 #. module: gamification
1735 #: help:gamification.goal.definition,res_id_field:0
1736 msgid ""
1737 "The field name on the user profile (res.users) containing the value for "
1738 "res_id for action."
1739 msgstr ""
1740
1741 #. module: gamification
1742 #: selection:gamification.goal.definition,condition:0
1743 msgid "The higher the better"
1744 msgstr ""
1745
1746 #. module: gamification
1747 #: help:gamification.badge,owner_ids:0
1748 msgid "The list of instances of this badge granted to users"
1749 msgstr ""
1750
1751 #. module: gamification
1752 #: help:gamification.badge,unique_owner_ids:0
1753 msgid "The list of unique users having received this badge."
1754 msgstr ""
1755
1756 #. module: gamification
1757 #: selection:gamification.goal.definition,condition:0
1758 msgid "The lower the better"
1759 msgstr ""
1760
1761 #. module: gamification
1762 #: help:gamification.badge,rule_max_number:0
1763 msgid ""
1764 "The maximum number of time this badge can be sent per month per person."
1765 msgstr ""
1766
1767 #. module: gamification
1768 #: help:gamification.goal.definition,model_id:0
1769 msgid "The model object for the field to evaluate"
1770 msgstr ""
1771
1772 #. module: gamification
1773 #: help:gamification.goal,remind_update_delay:0
1774 msgid ""
1775 "The number of days after which the user assigned to a manual goal will be "
1776 "reminded. Never reminded if no value is specified."
1777 msgstr ""
1778
1779 #. module: gamification
1780 #: help:gamification.badge,stat_my_this_month:0
1781 msgid ""
1782 "The number of time the current user has received this badge this month."
1783 msgstr ""
1784
1785 #. module: gamification
1786 #: help:gamification.badge,stat_my:0
1787 msgid "The number of time the current user has received this badge."
1788 msgstr ""
1789
1790 #. module: gamification
1791 #: help:gamification.badge,stat_my_monthly_sending:0
1792 msgid "The number of time the current user has sent this badge this month."
1793 msgstr ""
1794
1795 #. module: gamification
1796 #: help:gamification.badge,stat_count_distinct:0
1797 msgid "The number of time this badge has been received by unique users."
1798 msgstr ""
1799
1800 #. module: gamification
1801 #: help:gamification.badge,stat_this_month:0
1802 msgid "The number of time this badge has been received this month."
1803 msgstr ""
1804
1805 #. module: gamification
1806 #: help:gamification.badge,stat_count:0
1807 msgid "The number of time this badge has been received."
1808 msgstr ""
1809
1810 #. module: gamification
1811 #: help:gamification.goal.definition,monetary:0
1812 msgid "The target and current value are defined in the company currency."
1813 msgstr ""
1814
1815 #. module: gamification
1816 #: help:gamification.goal.definition,suffix:0
1817 msgid "The unit of the target and current values"
1818 msgstr ""
1819
1820 #. module: gamification
1821 #: help:gamification.challenge,manager_id:0
1822 msgid "The user responsible for the challenge."
1823 msgstr ""
1824
1825 #. module: gamification
1826 #: help:gamification.badge.user,sender_id:0
1827 msgid "The user who has send the badge"
1828 msgstr ""
1829
1830 #. module: gamification
1831 #: help:gamification.badge,goal_definition_ids:0
1832 msgid ""
1833 "The users that have succeeded theses goals will receive automatically the "
1834 "badge."
1835 msgstr ""
1836
1837 #. module: gamification
1838 #: help:gamification.goal.definition,batch_user_expression:0
1839 msgid ""
1840 "The value to compare with the distinctive field. The expression can contain "
1841 "reference to 'user' which is a browse record of the current user, e.g. "
1842 "user.id, user.partner_id.id..."
1843 msgstr ""
1844
1845 #. module: gamification
1846 #: view:gamification.challenge:gamification.view_challenge_wizard
1847 msgid "There is no reward upon completion of this challenge."
1848 msgstr ""
1849
1850 #. module: gamification
1851 #: help:gamification.goal,closed:0
1852 msgid "These goals will not be recomputed."
1853 msgstr ""
1854
1855 #. module: gamification
1856 #: code:addons/gamification/models/badge.py:238
1857 #, python-format
1858 msgid "This badge can not be sent by users."
1859 msgstr ""
1860
1861 #. module: gamification
1862 #: help:gamification.badge,image:0
1863 msgid "This field holds the image used for the badge, limited to 256x256"
1864 msgstr ""
1865
1866 #. module: gamification
1867 #: field:gamification.goal,target_goal:0
1868 msgid "To Reach"
1869 msgstr ""
1870
1871 #. module: gamification
1872 #: field:gamification.goal,to_update:0
1873 msgid "To update"
1874 msgstr ""
1875
1876 #. module: gamification
1877 #: field:gamification.badge,stat_count:0
1878 msgid "Total"
1879 msgstr ""
1880
1881 #. module: gamification
1882 #: field:gamification.badge,unique_owner_ids:0
1883 msgid "Unique Owners"
1884 msgstr ""
1885
1886 #. module: gamification
1887 #: field:gamification.challenge.line,definition_suffix:0
1888 msgid "Unit"
1889 msgstr ""
1890
1891 #. module: gamification
1892 #: field:gamification.badge,message_unread:0
1893 #: field:gamification.challenge,message_unread:0
1894 msgid "Unread Messages"
1895 msgstr ""
1896
1897 #. module: gamification
1898 #: view:gamification.goal.wizard:gamification.view_goal_wizard_update_current
1899 msgid "Update"
1900 msgstr ""
1901
1902 #. module: gamification
1903 #: code:addons/gamification/models/goal.py:487
1904 #, python-format
1905 msgid "Update %s"
1906 msgstr ""
1907
1908 #. module: gamification
1909 #: field:gamification.badge.user,user_id:0
1910 #: field:gamification.badge.user.wizard,user_id:0
1911 #: view:gamification.goal:gamification.goal_search_view
1912 #: field:gamification.goal,user_id:0
1913 msgid "User"
1914 msgstr ""
1915
1916 #. module: gamification
1917 #: field:gamification.challenge,user_domain:0
1918 msgid "User domain"
1919 msgstr ""
1920
1921 #. module: gamification
1922 #: field:gamification.challenge,user_ids:0
1923 #: model:ir.model,name:gamification.model_res_users
1924 msgid "Users"
1925 msgstr ""
1926
1927 #. module: gamification
1928 #: code:addons/gamification/models/badge.py:238
1929 #: code:addons/gamification/models/badge.py:240
1930 #: code:addons/gamification/models/badge.py:242
1931 #: code:addons/gamification/models/badge.py:244
1932 #: code:addons/gamification/wizard/grant_badge.py:44
1933 #, python-format
1934 msgid "Warning!"
1935 msgstr ""
1936
1937 #. module: gamification
1938 #: selection:gamification.challenge,period:0
1939 #: selection:gamification.challenge,report_message_frequency:0
1940 msgid "Weekly"
1941 msgstr ""
1942
1943 #. module: gamification
1944 #: help:gamification.badge,rule_auth:0
1945 msgid "Who can grant this badge"
1946 msgstr ""
1947
1948 #. module: gamification
1949 #: view:gamification.badge.user.wizard:gamification.view_badge_wizard_grant
1950 msgid "Who would you like to reward?"
1951 msgstr ""
1952
1953 #. module: gamification
1954 #: help:gamification.challenge,reward_realtime:0
1955 msgid ""
1956 "With this option enabled, a user can receive a badge only once. The top 3 "
1957 "badges are still rewarded only at the end of the challenge."
1958 msgstr ""
1959
1960 #. module: gamification
1961 #: selection:gamification.challenge,period:0
1962 #: selection:gamification.challenge,report_message_frequency:0
1963 msgid "Yearly"
1964 msgstr ""
1965
1966 #. module: gamification
1967 #: code:addons/gamification/models/badge.py:240
1968 #, python-format
1969 msgid "You are not in the user allowed list."
1970 msgstr ""
1971
1972 #. module: gamification
1973 #: code:addons/gamification/wizard/grant_badge.py:44
1974 #, python-format
1975 msgid "You can not grant a badge to yourself"
1976 msgstr ""
1977
1978 #. module: gamification
1979 #: view:gamification.badge:gamification.badge_form_view
1980 msgid "You can still grant"
1981 msgstr ""
1982
1983 #. module: gamification
1984 #: code:addons/gamification/models/badge.py:242
1985 #, python-format
1986 msgid "You do not have the required badges."
1987 msgstr ""
1988
1989 #. module: gamification
1990 #: code:addons/gamification/models/badge.py:244
1991 #, python-format
1992 msgid "You have already sent this badge too many time this month."
1993 msgstr ""
1994
1995 #. module: gamification
1996 #: view:gamification.badge:gamification.badge_form_view
1997 msgid "badges this month"
1998 msgstr ""
1999
2000 #. module: gamification
2001 #: view:gamification.challenge:gamification.challenge_form_view
2002 #: view:gamification.goal:gamification.goal_form_view
2003 msgid "days"
2004 msgstr ""
2005
2006 #. module: gamification
2007 #: view:gamification.challenge:gamification.challenge_form_view
2008 msgid "e.g. Monthly Sales Objectives"
2009 msgstr ""
2010
2011 #. module: gamification
2012 #: view:gamification.goal.definition:gamification.goal_definition_form_view
2013 msgid "e.g. days"
2014 msgstr ""
2015
2016 #. module: gamification
2017 #: view:gamification.goal.definition:gamification.goal_definition_form_view
2018 msgid ""
2019 "e.g. result = pool.get('mail.followers').search(cr, uid, [('res_model', '=', "
2020 "'mail.group'), ('partner_id', '=', object.user_id.partner_id.id)], "
2021 "count=True, context=context)"
2022 msgstr ""
2023
2024 #. module: gamification
2025 #: view:gamification.goal.definition:gamification.goal_definition_form_view
2026 msgid "e.g. user.partner_id.id"
2027 msgstr ""
2028
2029 #. module: gamification
2030 #: view:gamification.badge:gamification.badge_kanban_view
2031 msgid "granted,"
2032 msgstr ""
2033
2034 #. module: gamification
2035 #. openerp-web
2036 #: code:addons/gamification/static/src/xml/gamification.xml:108
2037 #, python-format
2038 msgid "more details..."
2039 msgstr ""
2040
2041 #. module: gamification
2042 #: view:gamification.goal:gamification.goal_form_view
2043 msgid "refresh"
2044 msgstr ""
2045
2046 #. module: gamification
2047 #: view:gamification.challenge:gamification.view_challenge_wizard
2048 msgid "reply later"
2049 msgstr ""
2050
2051 #. module: gamification
2052 #: view:gamification.goal:gamification.goal_form_view
2053 msgid "than the target."
2054 msgstr ""
2055
2056 #. module: gamification
2057 #: view:gamification.badge.user:gamification.badge_user_kanban_view
2058 msgid "the"
2059 msgstr ""
2060
2061 #. module: gamification
2062 #: view:gamification.badge:gamification.badge_kanban_view
2063 msgid "this month"
2064 msgstr ""