From fd471af0d8c76b9695beca87f8ccdecd64491ff4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 11:06:41 +0200 Subject: [PATCH 01/14] [IMP] mail_thread: replaced hasattr by check in columns. bzr revid: tde@openerp.com-20120813090641-n8o08be2ecfxxtdz --- addons/mail/mail_thread.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index f0dd023bf06..a79b5a6475a 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -189,7 +189,7 @@ class mail_thread(osv.Model): notif_user_ids += self.message_parse_users(cr, uid, body, context=context) # add users requested to perform an action (need_action mechanism) - if hasattr(self, 'get_needaction_user_ids'): + if self._columns.get('user_id'): user_ids_dict = self.get_needaction_user_ids(cr, uid, thread_ids, context=context) for id, user_ids in user_ids_dict.iteritems(): notif_user_ids += user_ids @@ -805,7 +805,7 @@ class mail_thread(osv.Model): forward_to = [i for i in message_followers_emails if (i and (i not in message_recipients))] if forward_to: # TODO: we need an interface for this for all types of objects, not just leads - if hasattr(res, 'section_id'): + if model_pool._columns.get('section_id'): del msg['reply-to'] msg['reply-to'] = res.section_id.reply_to @@ -1047,14 +1047,14 @@ class mail_thread(osv.Model): """ When creating a new message, set as unread if uid is not the object responsible. """ for obj in self.browse(cr, uid, ids, context=context): - if obj.message_state and hasattr(obj, 'user_id') and (not obj.user_id or obj.user_id.id != uid): + if obj.message_state and self._columns.get('user_id') and (not obj.user_id or obj.user_id.id != uid): self.message_mark_as_unread(cr, uid, [obj.id], context=context) def message_check_and_set_unread(self, cr, uid, ids, context=None): """ Set unread if uid is the object responsible or if the object has no responsible. """ for obj in self.browse(cr, uid, ids, context=context): - if obj.message_state and hasattr(obj, 'user_id') and (not obj.user_id or obj.user_id.id == uid): + if obj.message_state and self._columns.get('user_id') and (not obj.user_id or obj.user_id.id == uid): self.message_mark_as_unread(cr, uid, [obj.id], context=context) def message_mark_as_unread(self, cr, uid, ids, context=None): @@ -1064,7 +1064,7 @@ class mail_thread(osv.Model): def message_check_and_set_read(self, cr, uid, ids, context=None): """ Set read if uid is the object responsible. """ for obj in self.browse(cr, uid, ids, context=context): - if not obj.message_state and hasattr(obj, 'user_id') and obj.user_id and obj.user_id.id == uid: + if not obj.message_state and self._columns.get('user_id') and obj.user_id and obj.user_id.id == uid: self.message_mark_as_read(cr, uid, [obj.id], context=context) def message_mark_as_read(self, cr, uid, ids, context=None): From b479fbf64acbf507565b51e91ae828efb4e2ae28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 12:30:38 +0200 Subject: [PATCH 02/14] [IMP] mail_thread: continuing to translate hasattr to something else. bzr revid: tde@openerp.com-20120813103038-4o1xwtsmjnvjj0b4 --- addons/mail/mail_thread.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index a79b5a6475a..ea426327e10 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -330,7 +330,7 @@ class mail_thread(osv.Model): data = { 'subject': subject, - 'body_text': body_text or (hasattr(thread, 'description') and thread.description or ''), + 'body_text': body_text or thread._model._columns.get('description') and thread.description or ''), 'body_html': body_html or '', 'parent_id': parent_id, 'date': email_date or fields.datetime.now(), @@ -353,7 +353,7 @@ class mail_thread(osv.Model): data.update({ 'email_to': email_to, 'email_from': email_from or \ - (hasattr(thread, 'user_id') and thread.user_id and thread.user_id.user_email), + thread._model._columns.get('user_id') and thread.user_id and thread.user_id.user_email), 'email_cc': email_cc, 'email_bcc': email_bcc, 'references': references, From 2a22a88230bb560741991bff2a230ade2289cc20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 14:30:51 +0200 Subject: [PATCH 03/14] [FIX] mail_thread: fixed some forgotten \). bzr revid: tde@openerp.com-20120813123051-5lxzx5011j2skrk8 --- addons/mail/mail_thread.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index ea426327e10..f448ddd6df8 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -330,7 +330,7 @@ class mail_thread(osv.Model): data = { 'subject': subject, - 'body_text': body_text or thread._model._columns.get('description') and thread.description or ''), + 'body_text': body_text or thread._model._columns.get('description') and thread.description or '', 'body_html': body_html or '', 'parent_id': parent_id, 'date': email_date or fields.datetime.now(), @@ -353,7 +353,7 @@ class mail_thread(osv.Model): data.update({ 'email_to': email_to, 'email_from': email_from or \ - thread._model._columns.get('user_id') and thread.user_id and thread.user_id.user_email), + thread._model._columns.get('user_id') and thread.user_id and thread.user_id.user_email, 'email_cc': email_cc, 'email_bcc': email_bcc, 'references': references, From 9558419498cd2afd8cffa5d4519816258eb45105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 14:31:11 +0200 Subject: [PATCH 04/14] [IMP] base_calendar: removed annoying spaces in debug for tests. bzr revid: tde@openerp.com-20120813123111-i224x123n2a1r8fx --- .../base_calendar/test/base_calendar_test.yml | 42 +++++++++---------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/addons/base_calendar/test/base_calendar_test.yml b/addons/base_calendar/test/base_calendar_test.yml index e9a0f21e26e..2f5ff7945ee 100644 --- a/addons/base_calendar/test/base_calendar_test.yml +++ b/addons/base_calendar/test/base_calendar_test.yml @@ -1,5 +1,5 @@ -- | - In Order to test base_calendar, I will first create One Simple Event with real data +- + In Order to test base_calendar, I will first create One Simple Event with real data - !record {model: calendar.event, id: calendar_event_technicalpresentation0}: class: private @@ -11,27 +11,25 @@ location: OpenERP S.A. name: Technical Presentation rrule_type: none -- | - Now I will set recurrence for this event to occur monday and friday of week +- + Now I will set recurrence for this event to occur monday and friday of week - !python {model: calendar.event}: | data = {'fr': 1, 'mo': 1, 'interval': 1, 'rrule_type': 'weekly', 'end_type': 'end_date', 'end_date': '2011-05-31 00:00:00', 'recurrency' : True} self.write(cr, uid, [ref("calendar_event_technicalpresentation0")], data) -- | - In order to check that recurrent events are views successfully in calendar view, - I will open calendar view of events +- + In order to check that recurrent events are views successfully in calendar view, I will open calendar view of events - !python {model: calendar.event}: | self.fields_view_get(cr, uid, False, 'calendar', context) -- | - In order to check that recurrent events are views successfully in calendar view, - I will search for one of the recurrent event and count the number of events +- + In order to check that recurrent events are views successfully in calendar view, I will search for one of the recurrent event and count the number of events - !python {model: calendar.event}: | ids = self.search(cr, uid, [('date', '>=', '2011-04-30 16:00:00'), ('date', '<=', '2011-05-31 00:00:00')], context={'virtual_id': True} ) assert len(ids) == 9 -- | - Now I will make All day event and test it +- + Now I will make All day event and test it - !record {model: calendar.event, id: calendar_event_alldaytestevent0}: allday: 1 @@ -42,8 +40,8 @@ location: School name: All day test event rrule_type: none -- | - In order to check reminder I will first create reminder +- + In order to check reminder I will first create reminder - !record {model: res.alarm, id: res_alarm_daybeforeeventstarts0}: name: 1 Day before event starts @@ -51,13 +49,13 @@ trigger_interval: days trigger_occurs: before trigger_related: start -- | - Now I will assign this reminder to all day event +- + Now I will assign this reminder to all day event - !python {model: calendar.event}: | self.write(cr, uid, [ref("calendar_event_alldaytestevent0")], {'alarm_id': ref("res_alarm_daybeforeeventstarts0")}) -- | - In order to assign attendee I will invite Demo user +- + In order to assign attendee I will invite Demo user - !record {model: base_calendar.invite.attendee, id: base_calendar_invite_attendee_0}: type: internal @@ -65,13 +63,13 @@ partner_id: base.res_partner_9 # Put bcz of problem in read user_ids: - base.user_demo -- | - Then I click on Invite Button +- + Then I click on Invite Button - !python {model: base_calendar.invite.attendee}: | self.do_invite(cr, uid, [ref("base_calendar_invite_attendee_0")], {'active_id': ref("calendar_event_alldaytestevent0"), 'model' : 'calendar.event', 'attendee_field':'attendee_ids'}) -- | - Now I will Accept this invitation +- + Now I will Accept this invitation - !python {model: calendar.attendee}: | ids = self.search(cr, uid, [('ref', '=', 'calendar.event' + ',' + str(ref("calendar_event_alldaytestevent0")))]) From ba61f0733a81dd1d75cda49f16a249997c948f21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 14:47:04 +0200 Subject: [PATCH 05/14] [IMP] base_calendar: removed email_from from demo data, because this field does not exist; updated used categories, because some were not defined. bzr revid: tde@openerp.com-20120813124704-qa70aa3aevh4s0qv --- addons/base_calendar/crm_meeting_demo.xml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/addons/base_calendar/crm_meeting_demo.xml b/addons/base_calendar/crm_meeting_demo.xml index abba52ee8fe..221653e5fc3 100644 --- a/addons/base_calendar/crm_meeting_demo.xml +++ b/addons/base_calendar/crm_meeting_demo.xml @@ -24,7 +24,6 @@ Initial discussion Discussion with partner for product. - @@ -36,7 +35,7 @@ Pricing Discussion Internal meeting for discussion for new pricing for product and services. - + @@ -58,8 +57,7 @@ Changes in Designing - info@opensides.be - + @@ -70,7 +68,7 @@ Presentation for new Services - + From 9db0a94280e3d2daa48bee4d2e1261afc1c9a4b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 14:58:03 +0200 Subject: [PATCH 06/14] [IMP] CRM demo data: subtype -> content_subtype. Please check your logs before merging ... bzr revid: tde@openerp.com-20120813125803-sodjl70yrnk3i2v0 --- addons/crm/crm_lead_demo.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/addons/crm/crm_lead_demo.xml b/addons/crm/crm_lead_demo.xml index ea26a24cad8..ed51c525335 100644 --- a/addons/crm/crm_lead_demo.xml +++ b/addons/crm/crm_lead_demo.xml @@ -553,7 +553,7 @@ Andrew Kitchen design crm.lead - html + html email sent @@ -563,7 +563,7 @@ Andrew Reply crm.lead - html + html comment @@ -572,7 +572,7 @@ Andrew Reply crm.lead - html + html comment @@ -582,7 +582,7 @@ Andrew Reply crm.lead - html + html comment @@ -592,7 +592,7 @@ Andrew Your inquiry crm.lead - html + html email received From ae6d1fe900f310aca29be7d0827e199cf1d197a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 14:58:22 +0200 Subject: [PATCH 07/14] [FIX] crm_lead: categ_id -> now categ_ids. bzr revid: tde@openerp.com-20120813125822-1knqrg2adg90xxpy --- addons/crm/crm_lead.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/crm/crm_lead.py b/addons/crm/crm_lead.py index 29d3eefec70..6e1d3a7755b 100644 --- a/addons/crm/crm_lead.py +++ b/addons/crm/crm_lead.py @@ -479,7 +479,7 @@ class crm_lead(base_stage, osv.osv): details = [] merge_message = _('Merged opportunities') subject = [merge_message] - fields = ['name', 'partner_id', 'stage_id', 'section_id', 'user_id', 'categ_id', 'channel_id', 'company_id', 'contact_name', + fields = ['name', 'partner_id', 'stage_id', 'section_id', 'user_id', 'categ_ids', 'channel_id', 'company_id', 'contact_name', 'email_from', 'phone', 'fax', 'mobile', 'state_id', 'description', 'probability', 'planned_revenue', 'country_id', 'city', 'street', 'street2', 'zip'] for opportunity in opportunities: @@ -550,7 +550,7 @@ class crm_lead(base_stage, osv.osv): first_opportunity = opportunities_list[0] tail_opportunities = opportunities_list[1:] - fields = ['partner_id', 'title', 'name', 'categ_id', 'channel_id', 'city', 'company_id', 'contact_name', 'country_id', 'type_id', 'user_id', 'section_id', 'state_id', 'description', 'email', 'fax', 'mobile', + fields = ['partner_id', 'title', 'name', 'categ_ids', 'channel_id', 'city', 'company_id', 'contact_name', 'country_id', 'type_id', 'user_id', 'section_id', 'state_id', 'description', 'email', 'fax', 'mobile', 'partner_name', 'phone', 'probability', 'planned_revenue', 'street', 'street2', 'zip', 'create_date', 'date_action_last', 'date_action_next', 'email_from', 'email_cc', 'partner_name'] From 9a3deaf3da2906341176359d504ccf407511c97e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 15:12:07 +0200 Subject: [PATCH 08/14] [IMP] crm: fixed some categ_id remaining. bzr revid: tde@openerp.com-20120813131207-lu1c271q5dh27vlr --- addons/crm/res_partner.py | 2 +- addons/crm/wizard/crm_opportunity_to_phonecall.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/crm/res_partner.py b/addons/crm/res_partner.py index 31c45969f8e..55cc0c95b2c 100644 --- a/addons/crm/res_partner.py +++ b/addons/crm/res_partner.py @@ -82,7 +82,7 @@ class res_partner(osv.osv): 'planned_revenue' : planned_revenue, 'probability' : probability, 'partner_id' : partner_id, - 'categ_id' : categ_ids and categ_ids[0] or '', + 'categ_ids' : categ_ids and categ_ids[0:1] or [], 'state' :'draft', 'type': 'opportunity' }, context=context) diff --git a/addons/crm/wizard/crm_opportunity_to_phonecall.py b/addons/crm/wizard/crm_opportunity_to_phonecall.py index 873dd6ab36e..92996d2e7eb 100644 --- a/addons/crm/wizard/crm_opportunity_to_phonecall.py +++ b/addons/crm/wizard/crm_opportunity_to_phonecall.py @@ -71,7 +71,7 @@ class crm_opportunity2phonecall(osv.osv_memory): call_ids = opportunity.schedule_phonecall(cr, uid, opportunity_ids, data.date, data.name, \ data.note, data.phone, data.contact_name, data.user_id and data.user_id.id or False, \ data.section_id and data.section_id.id or False, \ - data.categ_id and data.categ_id.id or False, \ + data.categ_ids and data.categ_ids[0].id or False, \ action=data.action, context=context) return {'type': 'ir.actions.act_window_close'} From f2c059312b5a749ff8147e27d27876d1184a909f Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Mon, 13 Aug 2012 19:13:01 +0200 Subject: [PATCH 09/14] [IMP] split login_and_redirect() into login_and_redirect() and set_cookie_and_redirect() bzr revid: chs@openerp.com-20120813171301-w1ynjqhosrt68ppa --- addons/web/controllers/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/addons/web/controllers/main.py b/addons/web/controllers/main.py index ec356d89aa8..c5fdcce4945 100644 --- a/addons/web/controllers/main.py +++ b/addons/web/controllers/main.py @@ -322,6 +322,9 @@ def make_conditional(req, response, last_modified=None, etag=None): def login_and_redirect(req, db, login, key, redirect_url='/'): req.session.authenticate(db, login, key, {}) + return set_cookie_and_redirect(req, redirect_url) + +def set_cookie_and_redirect(req, redirect_url): redirect = werkzeug.utils.redirect(redirect_url, 303) redirect.autocorrect_location_header = False cookie_val = urllib2.quote(simplejson.dumps(req.session_id)) From 634a68a0ffa05ebdadf304104ceb712f706147bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 21:50:23 +0200 Subject: [PATCH 10/14] [FIX] mail_thread: protection for needaction_user_ids: check if has the method. bzr revid: tde@openerp.com-20120813195023-jv4pi1ct6tj30n4r --- addons/mail/mail_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index f448ddd6df8..b5e4f2fa4bc 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -189,7 +189,7 @@ class mail_thread(osv.Model): notif_user_ids += self.message_parse_users(cr, uid, body, context=context) # add users requested to perform an action (need_action mechanism) - if self._columns.get('user_id'): + if hasattr(self, get_needaction_user_ids) and self._columns.get('user_id'): user_ids_dict = self.get_needaction_user_ids(cr, uid, thread_ids, context=context) for id, user_ids in user_ids_dict.iteritems(): notif_user_ids += user_ids From 3d3f17c465f6e84ed9339d892bad766fce1b0eb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 13 Aug 2012 21:52:10 +0200 Subject: [PATCH 11/14] [FIX] crm_opp_to_phonecall: I was quite too fast for last rev, phonecall has categ_id, not categ_ids. bzr revid: tde@openerp.com-20120813195210-lj58w2hc1r0yxj1u --- addons/crm/wizard/crm_opportunity_to_phonecall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/crm/wizard/crm_opportunity_to_phonecall.py b/addons/crm/wizard/crm_opportunity_to_phonecall.py index 92996d2e7eb..873dd6ab36e 100644 --- a/addons/crm/wizard/crm_opportunity_to_phonecall.py +++ b/addons/crm/wizard/crm_opportunity_to_phonecall.py @@ -71,7 +71,7 @@ class crm_opportunity2phonecall(osv.osv_memory): call_ids = opportunity.schedule_phonecall(cr, uid, opportunity_ids, data.date, data.name, \ data.note, data.phone, data.contact_name, data.user_id and data.user_id.id or False, \ data.section_id and data.section_id.id or False, \ - data.categ_ids and data.categ_ids[0].id or False, \ + data.categ_id and data.categ_id.id or False, \ action=data.action, context=context) return {'type': 'ir.actions.act_window_close'} From cd04752f66d238e7eaa5277f4102c7e8849cd684 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Tue, 14 Aug 2012 04:46:18 +0000 Subject: [PATCH 12/14] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20120814044618-2edn0a32irj2dpr6 --- addons/document_page/i18n/ar.po | 93 ++--- addons/document_page/i18n/bg.po | 440 +++++++++------------ addons/document_page/i18n/bs.po | 370 +++++++++--------- addons/document_page/i18n/ca.po | 457 +++++++++------------- addons/document_page/i18n/cs.po | 452 +++++++++------------- addons/document_page/i18n/da.po | 367 +++++++++--------- addons/document_page/i18n/de.po | 461 +++++++++-------------- addons/document_page/i18n/el.po | 440 +++++++++------------ addons/document_page/i18n/es.po | 457 +++++++++------------- addons/document_page/i18n/et.po | 445 +++++++++------------- addons/document_page/i18n/fi.po | 384 +++++++++---------- addons/document_page/i18n/fr.po | 459 +++++++++------------- addons/document_page/i18n/gl.po | 443 +++++++++------------- addons/document_page/i18n/hr.po | 443 +++++++++------------- addons/document_page/i18n/hu.po | 386 +++++++++---------- addons/document_page/i18n/id.po | 367 +++++++++--------- addons/document_page/i18n/it.po | 443 +++++++++------------- addons/document_page/i18n/ja.po | 381 +++++++++---------- addons/document_page/i18n/ko.po | 442 +++++++++------------- addons/document_page/i18n/lt.po | 439 +++++++++------------ addons/document_page/i18n/lv.po | 401 +++++++++----------- addons/document_page/i18n/mn.po | 440 +++++++++------------ addons/document_page/i18n/nb.po | 446 +++++++++------------- addons/document_page/i18n/nl.po | 458 +++++++++------------- addons/document_page/i18n/pl.po | 426 +++++++++------------ addons/document_page/i18n/pt.po | 446 +++++++++------------- addons/document_page/i18n/pt_BR.po | 452 +++++++++------------- addons/document_page/i18n/ro.po | 399 +++++++++----------- addons/document_page/i18n/ru.po | 444 +++++++++------------- addons/document_page/i18n/sk.po | 433 +++++++++------------ addons/document_page/i18n/sl.po | 439 +++++++++------------ addons/document_page/i18n/sq.po | 367 +++++++++--------- addons/document_page/i18n/sr.po | 445 +++++++++------------- addons/document_page/i18n/sr@latin.po | 443 +++++++++------------- addons/document_page/i18n/sv.po | 445 +++++++++------------- addons/document_page/i18n/tlh.po | 367 +++++++++--------- addons/document_page/i18n/tr.po | 410 +++++++++----------- addons/document_page/i18n/uk.po | 431 +++++++++------------ addons/document_page/i18n/vi.po | 373 +++++++++--------- addons/document_page/i18n/zh_CN.po | 454 +++++++++------------- addons/document_page/i18n/zh_TW.po | 367 +++++++++--------- addons/pad_project/i18n/pt_BR.po | 2 +- addons/product/i18n/ar.po | 36 +- addons/product/i18n/bg.po | 16 +- addons/product/i18n/bs.po | 16 +- addons/product/i18n/ca.po | 16 +- addons/product/i18n/cs.po | 16 +- addons/product/i18n/da.po | 16 +- addons/product/i18n/de.po | 16 +- addons/product/i18n/el.po | 16 +- addons/product/i18n/es.po | 16 +- addons/product/i18n/es_AR.po | 16 +- addons/product/i18n/es_CL.po | 16 +- addons/product/i18n/es_CR.po | 16 +- addons/product/i18n/es_EC.po | 16 +- addons/product/i18n/es_PY.po | 16 +- addons/product/i18n/et.po | 16 +- addons/product/i18n/eu.po | 16 +- addons/product/i18n/fi.po | 16 +- addons/product/i18n/fr.po | 16 +- addons/product/i18n/gl.po | 16 +- addons/product/i18n/hr.po | 16 +- addons/product/i18n/hu.po | 16 +- addons/product/i18n/id.po | 16 +- addons/product/i18n/it.po | 16 +- addons/product/i18n/ja.po | 16 +- addons/product/i18n/ko.po | 16 +- addons/product/i18n/lt.po | 16 +- addons/product/i18n/lv.po | 16 +- addons/product/i18n/mn.po | 16 +- addons/product/i18n/nb.po | 48 ++- addons/product/i18n/nl.po | 16 +- addons/product/i18n/nl_BE.po | 16 +- addons/product/i18n/pl.po | 16 +- addons/product/i18n/pt.po | 16 +- addons/product/i18n/pt_BR.po | 19 +- addons/product/i18n/ro.po | 16 +- addons/product/i18n/ru.po | 16 +- addons/product/i18n/sk.po | 16 +- addons/product/i18n/sl.po | 16 +- addons/product/i18n/sq.po | 16 +- addons/product/i18n/sr.po | 16 +- addons/product/i18n/sr@latin.po | 16 +- addons/product/i18n/sv.po | 16 +- addons/product/i18n/th.po | 16 +- addons/product/i18n/tlh.po | 16 +- addons/product/i18n/tr.po | 16 +- addons/product/i18n/uk.po | 16 +- addons/product/i18n/vi.po | 16 +- addons/product/i18n/zh_CN.po | 16 +- addons/product/i18n/zh_TW.po | 16 +- addons/project_issue_sheet/i18n/pt_BR.po | 2 +- 92 files changed, 7474 insertions(+), 10424 deletions(-) diff --git a/addons/document_page/i18n/ar.po b/addons/document_page/i18n/ar.po index 5b6156eec6c..e6f5bc399a4 100644 --- a/addons/document_page/i18n/ar.po +++ b/addons/document_page/i18n/ar.po @@ -1,118 +1,125 @@ -# Translation of OpenERP Server. -# This file contains the translation of the following modules: -# * document_page +# Arabic translation for openobject-addons +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2012. # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.4\n" -"Report-Msgid-Bugs-To: support@openerp.com\n" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-03-19 10:19+0000\n" -"Last-Translator: kifcaliph \n" -"Language-Team: \n" +"PO-Revision-Date: 2012-08-13 12:08+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-03-20 04:56+0000\n" -"X-Generator: Launchpad (build 14969)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: document_page #: field:document.page.type,template:0 -msgid "Document Page Template" -msgstr "نموذج ويكي" +msgid "Document page Template" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_wiki #: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki msgid "Document Pages" -msgstr "صفحات ويكي" +msgstr "" #. module: document_page #: field:document.page.type,method:0 msgid "Display Method" -msgstr "طريقة العرض" +msgstr "" #. module: document_page #: view:document.page:0 field:document.page,create_uid:0 msgid "Author" -msgstr "المؤلف" +msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open #: view:document.page.page.open:0 msgid "Open Page" -msgstr "صفحة عامة" +msgstr "" #. module: document_page -#: field:document.page.type,menu_id:0 +#: field:document.page,menu_id:0 msgid "Menu" -msgstr "قائمة" +msgstr "" #. module: document_page -#: help:document.page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" -msgstr "يوضح ما اذا كانت هذه الصفحات تحتوى على جدول محتويات او لا تحتوى" +msgstr "" #. module: document_page -#: model:ir.model,name:document_page.model_document_page_history view:document.page.history:0 -msgid "Document Page History" -msgstr "تاريخ ويكي" +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" #. module: document_page #: field:document.page,minor_edit:0 msgid "Minor edit" -msgstr "تحرير ثانوى" +msgstr "" #. module: document_page #: view:document.page:0 field:document.page,content:0 msgid "Content" -msgstr "محتوى" +msgstr "" #. module: document_page #: field:document.page,child_ids:0 msgid "Child Pages" -msgstr "صفحات فرعية" +msgstr "" #. module: document_page #: field:document.page,parent_id:0 msgid "Parent Page" -msgstr "صفحة رئيسية" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" -msgstr "المشارك الاخير" +msgstr "" #. module: document_page #: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" -msgstr "القائمة الرئيسية" +msgstr "" #. module: document_page #: field:document.page,name:0 msgid "Title" -msgstr "العنوان" +msgstr "" #. module: document_page #: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" -msgstr "إنشائ قائمة بالمعالج" +msgstr "" #. module: document_page #: field:document.page,history_id:0 msgid "History Lines" -msgstr "سطور التاريخ" +msgstr "" #. module: document_page #: view:document.page:0 msgid "Page Content" -msgstr "محتوى الصفحة" +msgstr "" + +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#, python-format +msgid "Warning !" +msgstr "" #. module: document_page #: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" -msgstr "لا يوجد تغيير فى المراجعات" +msgstr "" #. module: document_page #: field:document.page.create.menu,menu_name:0 @@ -215,7 +222,7 @@ msgstr "" #. module: document_page #: field:document.page.history,content:0 -msgid "Content" +msgid "Text area" msgstr "" #. module: document_page @@ -239,12 +246,12 @@ msgid "List" msgstr "" #. module: document_page -#: field:document.page,edit_summary:0 field:document.page.history,edit_summary:0 +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "" #. module: document_page -#: field:document.page.type,create_date:0 +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "" @@ -328,7 +335,7 @@ msgstr "" #. module: document_page #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu -#: view:document_page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "" @@ -342,7 +349,7 @@ msgstr "" #: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse #: model:ir.model,name:document_page.model_wiki_groups #: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 -msgid "Wiki Groups" +msgid "Document Types" msgstr "" #. module: document_page @@ -359,12 +366,12 @@ msgstr "" #: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 #: field:document.page,type:0 #, python-format -msgid "Table of Contents" +msgid "Type" msgstr "" #. module: document_page #: view:document.page.type:0 view:document.page.page.open:0 -msgid "Open Wiki Page" +msgid "Open Document Page" msgstr "" #. module: document_page diff --git a/addons/document_page/i18n/bg.po b/addons/document_page/i18n/bg.po index 1d8d5631d35..87848f9e862 100644 --- a/addons/document_page/i18n/bg.po +++ b/addons/document_page/i18n/bg.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-08-02 20:51+0000\n" +"PO-Revision-Date: 2012-08-13 12:12+0000\n" "Last-Translator: Boris \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Уики шаблон" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Уики страници" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Автор" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Отворена страница" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Меню" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Раздел" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Уики хронология" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Малка редакция" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Съдържание" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Надменю" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Уики Група" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Заглавие" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Хронологични линии" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Съдържание на страницата" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Предупреждение!" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Използвай код за раздел на страница тип 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Име на меню" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Описание" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Информация за меню" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Дърво" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Шаблон за страница" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Ключови думи" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,296 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Предупреждение" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Дата" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Искате ли да създадете индекс на избраните страници ? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Страници" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Описание на група" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Създаване на раздел ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Текстова област" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Мета информация" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Създадено на" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Бележки" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Списък" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Резюме" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Дата на създаване" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Хронология на всички страници" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Затваряне" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Уики самоличност" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Начална страница" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Уики" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Дата на редакция" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Настройване" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Създай индекс" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Групиране по..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Създай меню" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Това голяма редакция ли е ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Уики групи" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Тема" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Променено от" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Съдържание" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Отказ" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Различия" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Нужда от преглед" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Страница за търсене" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални " -#~ "символи!" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Невалиден XML за преглед на архитектурата" - -#~ msgid "Child Groups" -#~ msgstr "Подгрупи" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Невалидно име на модел при задаването на действие." - -#~ msgid "Wiki Configuration" -#~ msgstr "Уики настройки" - -#~ msgid "Create a Menu" -#~ msgstr "Създай меню" - -#~ msgid "Group Home Page" -#~ msgstr "Група Начална страница" - -#~ msgid "Last Author" -#~ msgstr "Последен автор" - -#~ msgid "Differences" -#~ msgstr "Различия" - -#~ msgid "Document Management" -#~ msgstr "Манипулиране с документ" - -#~ msgid "Parent Group" -#~ msgstr "Надгрупа" - -#~ msgid "Modifications" -#~ msgstr "Промени" - -#~ msgid "Wiki Differance" -#~ msgstr "Уики различия" - -#~ msgid "History" -#~ msgstr "Хронология" - -#~ msgid "Tags" -#~ msgstr "Етикети" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Връзки на Уики групи" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Манипулиране с документ - Уики" - -#~ msgid "History Differance" -#~ msgstr "Хронологични различия" diff --git a/addons/document_page/i18n/bs.po b/addons/document_page/i18n/bs.po index be182ce2c5d..3f9add4b5ca 100644 --- a/addons/document_page/i18n/bs.po +++ b/addons/document_page/i18n/bs.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-02-03 10:27+0000\n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,242 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" +msgid "Type" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Neodgovarajući XML za arhitekturu prikaza!" diff --git a/addons/document_page/i18n/ca.po b/addons/document_page/i18n/ca.po index d3ee40e7462..f111b81d8ff 100644 --- a/addons/document_page/i18n/ca.po +++ b/addons/document_page/i18n/ca.po @@ -7,158 +7,137 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-10-30 14:49+0000\n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" "Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Plantilla Wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Pàgines Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Mètode de visualització" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Obre pagina" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menú" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Secció" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Indica si aquestes pàgines tenen una taula de continguts o no" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Historial Wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Edició menor" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Contingut" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Pàgines filles" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Pàgina pare" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Últim col·laborador" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Menú pare" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grup Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Títol" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Assistent 'Crea menú'" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Línies historial" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Contingut pàgina" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Avís!" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "No hi ha canvis en revisions" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Utilitza codi de secció de la pàgina, per exemple 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Nom menú" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Descripció" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Necessita revisió" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -166,33 +145,33 @@ msgstr "" "Indica que aquesta pàgina hauria de ser revisada, captant l'atenció d'altres " "col·laboradors." -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Informació del menú" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Històric pàgina" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Arbre" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Plantilla de pàgina" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Paraules clau" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -205,316 +184,232 @@ msgstr "" "facilitar l'accés a les vostres pàgines wiki. Existeix un editor bàsic per " "al format text del wiki." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Avís" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" "És obligat seleccionar la pàgina d'inici si el mètode de visualització és " "Pàgina d'inici" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Data" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Voleu crear un índex sobre les pàgines seleccionades? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Diferència" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Pàgines" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Descripció del grup" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Voleu obrir una pàgina wiki? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Crear secció?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Àrea de text" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta informació" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Creat el" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Notes" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Llista" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Resum" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Data creació" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Tots els historials de pàgines" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Definiu el comportament per defecte del menú creat en aquest grup." -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Tanca" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "assistent.wiki.historial.mostra_dif" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "ID Wiki" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Pàgina d'inici" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Us permet enllaçar amb l'altra pàgina dins del tema actual." -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Modificació de la informació" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Tema, també denominat Grup wiki." - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Data modificació" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Configuració" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Crea índex" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" "Heu de seleccionar com a mínim 1 o com a màxim 2 revisions històriques!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Agrupa per..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Crea menú" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "És aquesta una edició major?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grups Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Tema" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modificat per" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Taula de continguts" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Obre pàgina wiki" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "assistent obre pàgina" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Cancel·la" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Dif." -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Necessita revisió" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Pàgines esperant revisió" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Cerca pàgina" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter " -#~ "especial!" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Enllaços grups wiki" - -#~ msgid "Child Groups" -#~ msgstr "Grups fills" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuració Wiki" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestió de documents - Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Crea un menú" - -#~ msgid "History Differance" -#~ msgstr "Diferències historial" - -#~ msgid "Group Home Page" -#~ msgstr "Pagina d'inici del grup" - -#~ msgid "Last Author" -#~ msgstr "Últim autor" - -#~ msgid "Differences" -#~ msgstr "Diferències" - -#~ msgid "Document Management" -#~ msgstr "Gestió de documents" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "XML invàlid per a la definició de la vista!" - -#~ msgid "Parent Group" -#~ msgstr "Grup pare" - -#~ msgid "Wiki Differance" -#~ msgstr "Diferències Wiki" - -#, python-format -#~ msgid "No action found" -#~ msgstr "No s'ha trobat l'acció" - -#~ msgid "Modifications" -#~ msgstr "Modificacions" - -#~ msgid "History" -#~ msgstr "Historial" - -#~ msgid "Tags" -#~ msgstr "Etiquetes" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nom de model no vàlid en la definició de l'acció." - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "El mòdul base per gestionar documents (wiki)\n" -#~ "\n" -#~ "gestioneu els grups, pàgines i historial de la wiki\n" -#~ " " diff --git a/addons/document_page/i18n/cs.po b/addons/document_page/i18n/cs.po index fb63420ede4..a5cc644f19d 100644 --- a/addons/document_page/i18n/cs.po +++ b/addons/document_page/i18n/cs.po @@ -7,158 +7,137 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-04-06 04:44+0000\n" +"PO-Revision-Date: 2012-08-13 12:12+0000\n" "Last-Translator: Jiří Hajda \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-04-07 04:55+0000\n" -"X-Generator: Launchpad (build 15060)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" "X-Poedit-Language: Czech\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki šablona" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki stránky" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Metoda zobrazení" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Otevřít stránku" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Nabídka" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sekce" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Udává, zda tato stránka má nebo nemá obsah" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki historie" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Malá úprava" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Obsah" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Podřízené stránky" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Nadřazená stránka" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Poslední přispěvatel" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Rodičovská nabídka" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "Na této stránce není žádná sekce" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki skupina" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Název" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Průvodce vytvořením nabídky" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Řádky historie" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Obsah stránky" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Varování !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "V revizích nejsou žádné změny" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Používá kód sekce stránky jako 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Jméno nabídky" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Popis" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Potřebuje kontrolu" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -166,33 +145,33 @@ msgstr "" "Udává, že tato stránka potřebuje zkontrolovat, zvyšuje pozornost ostatních " "přispěvatelů" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Informace nabídky" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Historie stránky" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Strom" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Šablona stránky" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Klíčová slova" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -205,309 +184,230 @@ msgstr "" "pro přístup k vašim wiki stránkám. Pro formátování textu jsou základní wiki " "úpravy." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Upozornění" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" "Pokud je metoda zobrazení Domovská stránka, vyžaduje výběr domovské stránky." -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Datum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Chcete vytvořit index na vybraných stránkách ? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Rozdíly" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Stránky" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Popis skupiny" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Chcete otevřít wiki stránku? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Vytvořit sekci ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Textová plocha" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta informace" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Vytvořeno" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Poznámky" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Seznam" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Shrnutí" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Datum vytvoření" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Historie všech stránek" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Určuje výchozí chování nabídky vytvořené pro tuto skupinu" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Zavřít" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Domovská stránka" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Umožňuje vám propojit s jinými stránkami v aktuálním téma" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Informace o úpravách" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Téma, také nazývané Wiki skupina" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Datum změny" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Nastavení" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Vytvořit index" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Musíte vybrat nejméně 1 nebo nejvíce 2 revize historie!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Seskupit podle..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Vytvořit nabídku" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Toto je velká úprava ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki skupiny" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Téma" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Upraveno od" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Obsah" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Otevřít Wiki stránku" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "průvodce otevřením stránky" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Zrušit" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Rozdíl" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Potřebuje kontrolu" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Stránky čekající na kontrolu" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Hledat stránku" - -#~ msgid "Child Groups" -#~ msgstr "Dětské skupiny" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Jméno objektu musí začínat znakem x_ a nesmí obsahovat žádný speciální znak!" - -#~ msgid "Create a Menu" -#~ msgstr "Vytvořit menu" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki konfigurace" - -#~ msgid "Group Home Page" -#~ msgstr "Hlavní stránka skupiny" - -#~ msgid "Last Author" -#~ msgstr "Poslední autor" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Invalidní XML pro zobrazení architektury!" - -#~ msgid "History" -#~ msgstr "Přehled změn" - -#~ msgid "Modifications" -#~ msgstr "Úpravy" - -#~ msgid "Tags" -#~ msgstr "Značky" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Špatný název modelu v definici akce" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Správa dokumentů - Wiki" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wiki odkazy skupiny" - -#~ msgid "Differences" -#~ msgstr "Rozdíly" - -#~ msgid "Document Management" -#~ msgstr "Správa dokumntů" - -#~ msgid "Parent Group" -#~ msgstr "Rodičovská skupina" - -#~ msgid "History Differance" -#~ msgstr "Rozdílnost historie" - -#~ msgid "Wiki Differance" -#~ msgstr "Rozdílnost Wiki" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "Základní modul pro správu dokumentů(wiki)\n" -#~ "\n" -#~ "udržuje přehled o wiki skupinách, stránkách a historii\n" -#~ " " diff --git a/addons/document_page/i18n/da.po b/addons/document_page/i18n/da.po index 28a21d7594f..7d82dca7794 100644 --- a/addons/document_page/i18n/da.po +++ b/addons/document_page/i18n/da.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-01-27 06:46+0000\n" +"PO-Revision-Date: 2012-08-13 12:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,239 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" +msgid "Type" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" diff --git a/addons/document_page/i18n/de.po b/addons/document_page/i18n/de.po index 3ec3218c33a..616d1a36f6a 100644 --- a/addons/document_page/i18n/de.po +++ b/addons/document_page/i18n/de.po @@ -8,190 +8,169 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-01-13 18:05+0000\n" -"Last-Translator: Ferdinand @ Camptocamp \n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" +"Last-Translator: Ferdinand-camptocamp \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki Vorlage" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki Seiten" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Anzeigemethode" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Öffne Seite" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menü" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Bereich" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Inhaltsverzeichnis anzeigen" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki Historie" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Geringe Änderung" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Inhalt" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Untergeordnete Seiten" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Übergeordnete Seiten" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Letzer Beitragender" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Obermenü" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "Keine Sektion auf dieser Seite" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki Gruppen" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Titel" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Assistent für Menüerzeugung" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Historie" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Seiteninhalt" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Warnung" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "In dieser Version gibt es keine Änderungen" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Benutze Sektion wie in 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Menü Bezeichnung" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Beschreibung" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Braucht Überprüfung" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" "Zeigt an, dass diese Seite von anderen Beitragenden überprüft werden muss" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Menü" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Seitenänderungsverlauf" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Baum" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Seiten Vorlage" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Schlüsselworte" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -203,316 +182,230 @@ msgstr "" "Schüsselwörter können verwendet werden. Bitte verwenden Sie die OpenERP WEB-" "Anwendung. Es gibt eine einfache Editiermöglichkeit im Textformat" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Warnung" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" "Zwingend Angabe einer Home Page, wenn die Anzeigemethode \"Home Page\" ist" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Datum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Wollen Sie einen Index für ausgewählte Seiten erzeugen? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Differenz" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Seiten" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Beschreibung der Gruppe" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Wollen Sie eine Wiki Seite öffnen? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Erzeuge Sektion?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Textbereich" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta Information" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Erzeugt am" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Bemerkungen" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Liste" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Zusammenfassung" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Datum erstellt" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Alle Seiten Historie" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Bestimmt das Standardverhalten des Menüpunktes für diese Gruppe" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Schließen" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki ID" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Home Page" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Verlinkung anderer Seiten innerhalb dieses Themas" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Info Veränderungen" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Thema, auch Wiki Gruppe genannt" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki Inhalte" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Änderung am" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Konfiguration" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Erzeuge Inhalt" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Bitte 1 oder 2 Versionsnummern auswählen" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Gruppiert je..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Erzeuge Menü" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Ist dieses eine wesentliche Änderung?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki Gruppen" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "THema" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Geändert durch" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Inhaltsverzeichnis" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Öffne Wiki Seite" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "wiz open page" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Abbrechen" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Differenz" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Benötige Prüfung" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Zu überprüfende Seiten" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Suche Seite" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen " -#~ "beinhalten" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wiki Gruppen Links" - -#~ msgid "Child Groups" -#~ msgstr "Subgruppen" - -#~ msgid "Wiki Configuration" -#~ msgstr "Konfiguration Wikipedia" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Dokumenten Verwaltung - Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Erzeuge ein Menü" - -#~ msgid "History Differance" -#~ msgstr "Historie Änderungen" - -#~ msgid "Group Home Page" -#~ msgstr "Gruppen Homepage" - -#~ msgid "Last Author" -#~ msgstr "Letzter Autor" - -#~ msgid "Differences" -#~ msgstr "Differenzen" - -#~ msgid "Document Management" -#~ msgstr "Dokumente" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Fehlerhafter xml Code für diese Ansicht!" - -#~ msgid "Parent Group" -#~ msgstr "Hauptgruppe" - -#~ msgid "Wiki Differance" -#~ msgstr "Wikipedia Änderungen" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Keine Aktion gefunden" - -#~ msgid "Modifications" -#~ msgstr "Modifizierungen" - -#~ msgid "History" -#~ msgstr "Historie" - -#~ msgid "Tags" -#~ msgstr "Tags" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Ungültiger Modellname in der Aktionsdefinition." - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "Diese Anwendung ist das Basismodul für die Verwaltung eines " -#~ "Dokumenten(wiki)\n" -#~ "\n" -#~ "Definieren Sie Wiki Gruppen, Wiki Seiten und verfolgen Sie die Historie der " -#~ "Dokumente.\n" -#~ " " diff --git a/addons/document_page/i18n/el.po b/addons/document_page/i18n/el.po index dcff21f2a13..7d87b199d23 100644 --- a/addons/document_page/i18n/el.po +++ b/addons/document_page/i18n/el.po @@ -7,192 +7,171 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-06-15 07:23+0000\n" +"PO-Revision-Date: 2012-08-13 12:12+0000\n" "Last-Translator: Panagiotis Kranidiotis \n" "Language-Team: nls@hellug.gr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki Πρότυπο" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Σελίδες Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Δημιουργός" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Ανοικτή Σελίδα" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Μενού" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Τμήμα" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki Ιστορικό" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Δευτερεύουσα επεξεργασία" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Περιεχόμενα" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Μενού Προέλευσης" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Ομάδα Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Τίτλος" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Γραμμές Ιστορικού" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Χρησιμοποιήστε κωδικό τμήματος σελίδας όπως 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Όνομα Μενού" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Περιγραφή" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Πληροφορίες Μενού" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Πρότυπο Σελίδας" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -200,296 +179,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Ημερομηνία" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Θέλετε να δημιουργήσετε γλωσσάρι για τις Επιλεγμένες Σελίδες; " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Σελίδες" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Δημιουργία Τμήματος;" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Περιοχή Κειμένου" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Δημιουργήθηκε στις" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Σημειώσεις" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Περίληψη" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Ημερ/νία Δημιουργίας" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Ιστορικό όλων των Σελίδων" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Ημερομηνία Τροποποίησης" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Ρυθμίσεις" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Δημιουργία Γλωσσαρίου" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Δημιουργία Μενού" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Είναι αυτή μια κύρια επεξεργασία;" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Ομάδες Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Τροποποιήθηκε Από" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Πίνακας Περιεχομένων" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Ακύρωση" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Διαφ." -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Χρειάζεται Επισκόπηση" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Το όνομα πρέπει να ξεκινάει με x_ και να μην περιέχει ειδικούς χαρακτήρες!" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Σύνδεσμοι Ομάδων Wiki" - -#~ msgid "Child Groups" -#~ msgstr "Υποομάδες" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki Ρυθμίσεις" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Διαχείριση Εγγράφων - Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Δημιουργία Μενού" - -#~ msgid "History Differance" -#~ msgstr "Διαφορά Ιστορικού" - -#~ msgid "Group Home Page" -#~ msgstr "Αρχική Σελίδα Ομάδας" - -#~ msgid "Last Author" -#~ msgstr "Τελευταίος Δημιουργός" - -#~ msgid "Differences" -#~ msgstr "Διαφορές" - -#~ msgid "Document Management" -#~ msgstr "Διαχείριση Εγγράφων" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Άκυρο XML για Αρχιτεκτονική Όψης!" - -#~ msgid "Parent Group" -#~ msgstr "Ομάδα Προέλευσης" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki Διαφορές" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Δεν βρέθηκε ενέργεια" - -#~ msgid "Modifications" -#~ msgstr "Τροποποιήσεις" - -#~ msgid "History" -#~ msgstr "Ιστορικό" - -#~ msgid "Tags" -#~ msgstr "Ετικέτες" diff --git a/addons/document_page/i18n/es.po b/addons/document_page/i18n/es.po index dd5d5464322..af15cbc8e81 100644 --- a/addons/document_page/i18n/es.po +++ b/addons/document_page/i18n/es.po @@ -7,157 +7,136 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-02-10 19:35+0000\n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" "Last-Translator: Omar (Pexego) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-11 05:09+0000\n" -"X-Generator: Launchpad (build 14771)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Plantilla Wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Páginas Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Método de visualización" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Abrir página" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menú" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sección" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Indica si estas páginas tienen una tabla de contenidos o no." -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Historial Wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Edición menor" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Contenido" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Páginas hijas" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Página padre" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Último colaborador" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Menú padre" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "No hay sección en esta página" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grupo Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Título" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Asistente crear menú" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Líneas historial" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Contenido página" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "¡Aviso!" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "No hay cambios en revisiones" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Utilice código de sección de la página, por ejemplo 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Nombre menú" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Descripción" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Necesita revisión" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -165,33 +144,33 @@ msgstr "" "Indica que esta página debería ser revisada, captando la atención de otros " "colaboradores." -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Información del menú" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Historial página" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Árbol" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Plantilla de página" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Palabras clave" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -204,316 +183,232 @@ msgstr "" "facilitar el acceso a sus páginas wiki. Existe un editor básico para el " "formato texto del wiki." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Advertencia" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" "Es obligado seleccionar la página de inicio si el método de visualización es " "Página inicial." -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Fecha" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "¿Desea crear un índice sobre las páginas seleccionadas? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Diferencia" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Páginas" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Descripción grupo" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "¿Desea abrir una página wiki? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "¿Crear sección?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Área de texto" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta información" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Creado en" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Notas" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Lista" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Resumen" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Fecha de creación" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Todos los historiales de páginas" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Define el comportamiento por defecto del menú creado en este grupo." -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Cerrar" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "asistente.wiki.historial.mostrar_dif" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "ID Wiki" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Página inicial" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Le permite enlazar con la otra página dentro del tema actual." -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Información modificación" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Tema, también denominado Grupo wiki." - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Fecha de modificación" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Configuración" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Crear índice" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" "¡Debe seleccionar como mínimo 1 o como máximo 2 revisiones históricas!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Agrupar por..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Crear menú" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "¿Es ésta una edición mayor?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupos Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Tema" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modificado por" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Tabla de contenido" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Abrir página wiki" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "asistente abrir página" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Cancelar" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Dif." -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Necesita revisión" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Páginas esperando revisión" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Buscar página" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " -#~ "especial!" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Enlaces grupos wiki" - -#~ msgid "Child Groups" -#~ msgstr "Grupos hijos" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuración Wiki" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestión de documentos - Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Crear un menú" - -#~ msgid "History Differance" -#~ msgstr "Diferencia historial" - -#~ msgid "Group Home Page" -#~ msgstr "Página de inicio del grupo" - -#~ msgid "Last Author" -#~ msgstr "Último autor" - -#~ msgid "Differences" -#~ msgstr "Diferencias" - -#~ msgid "Document Management" -#~ msgstr "Gestión de documentos" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML inválido para la definición de la vista!" - -#~ msgid "Parent Group" -#~ msgstr "Grupo padre" - -#~ msgid "Wiki Differance" -#~ msgstr "Diferencia Wiki" - -#, python-format -#~ msgid "No action found" -#~ msgstr "No se ha encontrado la acción" - -#~ msgid "Modifications" -#~ msgstr "Modificaciones" - -#~ msgid "History" -#~ msgstr "Historial" - -#~ msgid "Tags" -#~ msgstr "Etiquetas" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nombre de modelo no válido en la definición de acción." - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "El módulo base para gestionar documentos (wiki)\n" -#~ "\n" -#~ "gestione los grupos, páginas e historial del wiki\n" -#~ " " diff --git a/addons/document_page/i18n/et.po b/addons/document_page/i18n/et.po index b5c3d1352e7..5d6564fdf80 100644 --- a/addons/document_page/i18n/et.po +++ b/addons/document_page/i18n/et.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-09-08 16:29+0000\n" +"PO-Revision-Date: 2012-08-13 12:11+0000\n" "Last-Translator: Ahti Hinnov \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki mall" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki lehed" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Ava leht" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menüü" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sektsioon" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki ajalugu" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Väike muudatus" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Sisu" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Ülemmenüü" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki grupp" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Tiitel" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Ajaloojooned" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Kasuta lehekülje sektsiooni koodi, nt 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Menüü nimi" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Kirjeldus" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Menüü info" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Lehe mall" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,293 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Kuupäev" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Kas sa soovid luua valitud lehtedele indeksi? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Lehekülgi" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Teen sektsiooni?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Tekstiala" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Loodud" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Märkmed" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Kokkuvõte" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Loomise kuupäev" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Kõigi lehtede ajalugu" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Muutmise kuupäev" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Seadistused" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Loo indeks" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 +#, python-format +msgid "You need to select minimum 1 or maximum 2 history revision!" +msgstr "" + +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Loo menüü" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Kas see on suur muudatus?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki grupid" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Muutja" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Sisukord" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Loobu" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Erinevus" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Vajab ülevaatamist" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Viki gruppide viidad" - -#~ msgid "Child Groups" -#~ msgstr "Alamgrupid" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki seadistused" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Dokumendihaldus - Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Loo menüü" - -#~ msgid "History Differance" -#~ msgstr "Erinevuste ajalugu" - -#~ msgid "Group Home Page" -#~ msgstr "Grupi koduleht" - -#~ msgid "Last Author" -#~ msgstr "Viimane autor" - -#~ msgid "Differences" -#~ msgstr "Erinevused" - -#~ msgid "Document Management" -#~ msgstr "Dokumendihaldus" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Vigane XML vaate arhitektuurile!" - -#~ msgid "Parent Group" -#~ msgstr "Ülemgrupp" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki erinevus" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Toimingut ei leitud" - -#~ msgid "Modifications" -#~ msgstr "Muudatused" - -#~ msgid "History" -#~ msgstr "Ajalugu" - -#~ msgid "Tags" -#~ msgstr "Sildid" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Vigane mudeli nimi toimingu definitsioonis." diff --git a/addons/document_page/i18n/fi.po b/addons/document_page/i18n/fi.po index 65f97f8071e..1514c5937b3 100644 --- a/addons/document_page/i18n/fi.po +++ b/addons/document_page/i18n/fi.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2011-07-21 09:07+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki pohja" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki sivustot" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Näyttömetodi" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Tekijä" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Avaa sivu" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Valikko" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Osa" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Kertoo onko sivustolla hakemisto vai ei" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki historia" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Pieni editointi" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Sisältö" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Alasivut" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Ylätason sivu" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Viimeisin tiedon lisääjä" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Ylätason valikko" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki ryhmä" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Otsikko" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Menun luonti velho" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Historiarivit" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Sivun sisältö" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Varoitus !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Reviisioissa ei ole muutoksia" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Käytä sivunmäärittelykoodia kuten esim. 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Valikon nimi" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Kuvaus" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Tarvitsee tarkastuksen" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Valikon tiedot" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Sivuhistoria" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Puu" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Sivupohja" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Avainsanat" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,243 +177,230 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Varoitus" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "Vaaditaan kotisivun valitsemiseksi jos näyttötyyppi on kotisivu" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Päivämäärä" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Haluatoko luoda indeksin valituista sivuista? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Ero" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Sivut" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Ryhmän kuvaus" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Haluatko avata wiki sivun? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Tee valinta ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Tekstialue" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Metatiedot" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Luotu" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Huomautukset" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Lista" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Yhteenveto" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Luontipäivä" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Kaikki sivuhistoriat" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" "Määrittele oletuskäyttäytyminen valikolle joka on luotu tälle ryhmälle" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Sulje" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Kotisivu" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Mahdollistaa linkittämisen toiselle sivulle nykyisestä aiheesta" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Muutostiedot" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Aihe, kutsutaan myös wiki ryhmäksi" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Muokkauspäivä" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Konfiguraatio" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Luo indeksi" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Sinun pitää valita vähintään 1 ja enintään 2 aikaisempaa versiota!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Ryhmittely.." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Luo valikko" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Onko tämä suuri muokkaus ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki ryhmät" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Aihe" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Muuta" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Hakemisto" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Avaa wiki sivu" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Peruuta" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Erot" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Tarvitsee tarkastukse" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Sivut jotka odottavat tarkastusta" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Hae sivua" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Dokumentinhallinta - wiki" diff --git a/addons/document_page/i18n/fr.po b/addons/document_page/i18n/fr.po index cb6b0a421c2..5bcab4d5ccd 100644 --- a/addons/document_page/i18n/fr.po +++ b/addons/document_page/i18n/fr.po @@ -7,157 +7,136 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2011-01-13 05:21+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Modèle de wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Pages du wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Méthode d'affichage" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Auteur" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Ouvrir la Page" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menu" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Section" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Indique si cette page a une table des matières ou non" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Historique du wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Modification mineure" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Contenu" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Pages enfants" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Page parente" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Dernier contributeur" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Menu Parent" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Groupe wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Titre" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Menu de création d'un wizard" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Historique des lignes" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Contenu de la page" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Attention !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Il n'y a pas de changement dans les révisions" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Utilisez des code de section de page comme 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Nom du menu" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Description" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "A besoin d'une relecture" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -165,33 +144,33 @@ msgstr "" "Indique que cette page doit être relue, elle attire l'attention des autres " "contributeurs" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Menu Information" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Historique de la page" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Arbre" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Modèle de page" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Mots-clés" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -204,317 +183,233 @@ msgstr "" "clés pour accéder facilement à vos pages de wiki. Il y a une édition de wiki " "basique pour le formatage du texte." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Avertissement" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" "Nécessite la sélection d'une page si la méthode d'affichage est Page " "d'accueil" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Date" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Souhaitez vous créer un index sur les pages sélectionnées ? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Différence" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Pages" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Description du groupe" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Voulez-vous ouvrir une page du wiki ? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Faire une section ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Zone de texte" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Méta-information" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Créé le" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Notes" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Liste" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Sommaire" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Date de création" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Tous les historiques de pages" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Définir le comportement par défaut du menu créé sur ce groupe" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Fermer" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "ID Wiki" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Page d'accueil" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Vous permet de lier une autre page au sujet actuel" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Informations de modification" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Sujet, aussi appelé groupe du wiki" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Date de modification" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Configuration" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Créer un index" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" "Vous devez sélectionner au minimum 1 ou au maximum 2 révisions de " "l'historique !" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Grouper par ..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Créer un menu" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Est ce une modification majeure ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Groupes wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Sujet" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modifié par" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Table des matières" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Ouvrir une page de wiki" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "Assistant d'ouverture de page" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Annuler" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Comparer" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Besoin d'une relecture" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Pages en attente de relecture" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Page de recherche" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Le nom de l'objet doit commencer avec x_ et ne pas contenir de charactères " -#~ "spéciaux !" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Groupes de liens wiki" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuration du wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Créer un menu" - -#~ msgid "History Differance" -#~ msgstr "Comparer l'historique" - -#~ msgid "Last Author" -#~ msgstr "Dernier auteur" - -#~ msgid "Differences" -#~ msgstr "Différences" - -#~ msgid "Document Management" -#~ msgstr "Gestion des Documents" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "XML non valide pour l'architecture de la vue" - -#~ msgid "Parent Group" -#~ msgstr "Groupes parent" - -#~ msgid "Modifications" -#~ msgstr "Modifications" - -#~ msgid "History" -#~ msgstr "Historique" - -#~ msgid "Tags" -#~ msgstr "Balises" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Aucune Action trouvée" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nom du Modèle non valide dans la définition de l'action." - -#~ msgid "Group Home Page" -#~ msgstr "Page d'accueil du Groupe" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestion Documentaire - Wiki" - -#~ msgid "Wiki Differance" -#~ msgstr "wiki: Différences" - -#~ msgid "Child Groups" -#~ msgstr "Groupes fils" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "Module de base de gestion documentaire ( wiki )\n" -#~ "\n" -#~ "suivi des groupes wiki , des pages, et historisation\n" -#~ " " diff --git a/addons/document_page/i18n/gl.po b/addons/document_page/i18n/gl.po index 866c67ab29f..70d96a3954c 100644 --- a/addons/document_page/i18n/gl.po +++ b/addons/document_page/i18n/gl.po @@ -9,189 +9,168 @@ msgstr "" "Project-Id-Version: wiki-es\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-08-17 08:30+0000\n" -"Last-Translator: Frco. Javier Rial \n" +"PO-Revision-Date: 2012-08-13 12:12+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: Galego \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Modelo Wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Páxinas Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Abrir páxina" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menú" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sección" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Historial Wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Edición menor" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Contido" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Menú principal" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grupo Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Título" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Liñas historial" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Usar código de seccións da páxina ao estilo 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Nome do menú" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Descrición" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Información do menú" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Modelo da páxina" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -199,298 +178,230 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Aviso" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Data" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Quere crear un índice nas páxinas seleccionadas? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Páxinas" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Facer sección ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Área de texto" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Creado o" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Notas" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Resumo" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Data de creación" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Todos os historiais de páxinas" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "asistente.wiki.historial.mostrar_dif" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "ID wiki" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Data de modificación" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Configuración" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Crear índice" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" "¡Debe seleccionar como mínimo 1 ou como máximo 2 revisións históricas!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Crear menú" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "É esta unha edición maior?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupos Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modificado por" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Táboa de contidos" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Cancelar" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Diff" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Necesita revisión" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "Child Groups" -#~ msgstr "Grupos fillo" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Xestión de documentos - Wiki" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuración do Wiki" - -#~ msgid "History Differance" -#~ msgstr "Diferenzas no tempo" - -#~ msgid "Group Home Page" -#~ msgstr "Páxina de inicio do grupo" - -#~ msgid "Differences" -#~ msgstr "Diferenzas" - -#~ msgid "Last Author" -#~ msgstr "Último autor" - -#~ msgid "Document Management" -#~ msgstr "Xestión de documentos" - -#~ msgid "Parent Group" -#~ msgstr "Grupo pai" - -#~ msgid "Wiki Differance" -#~ msgstr "Diferenza Wiki" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Non se atopou unha acción" - -#~ msgid "Modifications" -#~ msgstr "Modificacións" - -#~ msgid "History" -#~ msgstr "Historial" - -#~ msgid "Tags" -#~ msgstr "Etiquetas" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "¡O nome do obxecto debe comezar con x_ y e non conter ningún carácter " -#~ "especial!" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Ligazóns grupos wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Crear un menú" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "¡XML non válido para a definición da vista!" diff --git a/addons/document_page/i18n/hr.po b/addons/document_page/i18n/hr.po index 33d286becea..3c5c2c6fd2d 100644 --- a/addons/document_page/i18n/hr.po +++ b/addons/document_page/i18n/hr.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-01-28 20:38+0000\n" +"PO-Revision-Date: 2012-08-13 12:11+0000\n" "Last-Translator: Goran Kliska \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki predložak" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki stranice" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Način prikaza" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Otvori stranicu" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Izbornik" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Grupa" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Pokazuje da li ova stranica ima sadržaj ili ne." -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki povijest" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Manja promjena" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Sadržaj" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Podređene stranice" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Nadređena stranica" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Zadnji doprinos" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Nadređeni izbornik" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "Ne postoje odlomci na ovoj stranici" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki grupa" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Naslov" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Wizard Create Menu" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Povijest" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Sadržaj stranice" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Upozorenje !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Nema promjena u ovoj inačici" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Koristite numeriranje odlomaka na stranici poput 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Naziv izbornika" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Opis" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Traži provjeru" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "Pokazuje da ovu stranicu treba provjeriti" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Informacije o izborniku" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Povijest stranice" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Stablo" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Predložak stranice" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Ključne riječi" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -201,299 +180,229 @@ msgstr "" "(CRM, Sales, etc.). You can use keywords to ease access to your wiki pages. " "There is a basic wiki editing for text format." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Upozorenje" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "Required to select home page if display method is Home Page" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Datum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Želite li kreirati indeks na označenim stranicama ? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Razlika" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Stranice" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Opis grupe" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Otvoriti wiki stranicu? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Napravi odlomak?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Područje teksta" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta informacije" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Datum kreiranja" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Bilješke" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Popis" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Sažetak" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Datum kreiranja" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Povijest svih stranica" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Definirajte uobičajeno ponašanje izbornika za ovu grupu" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Zatvori" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Početna stranica" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Omogućuje povezivanje sa drugim stranicama unutar trenutnog naslova" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Informacije o promjeni" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Naslov (Wiki grupa)" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Datum promjene" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Postava" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Kreiraj indeks" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Potrebno je odabrati najmanje 1 do najviše 2 povijesne revizije!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Grupiraj po..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Kreiraj izbornik" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Ovo je velika promjena?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki grupe" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Naslov" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Promijenio/la" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Sadržaj" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Open Wiki Page" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "wiz open page" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Odustani" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Razlika" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Potrebna provjera" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Stranice koje čekaju provjeru" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Tražilica" - -#~ msgid "Child Groups" -#~ msgstr "Podgrupe" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Poveznice s wiki grupama" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Naziv objekta mora počinjati sa x_ i ne smije sadržavati specijalne znakove!" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Upravljanje dokumentima - Wiki" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nevažeće ime modela u definiciji akcije." - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki postavke" - -#~ msgid "Create a Menu" -#~ msgstr "Stvori izbornik" - -#~ msgid "History Differance" -#~ msgstr "Razlika u povijesti" - -#~ msgid "Group Home Page" -#~ msgstr "Početna stranica grupe" - -#~ msgid "Differences" -#~ msgstr "Razlike" - -#~ msgid "Last Author" -#~ msgstr "Posljednji autor" - -#~ msgid "Document Management" -#~ msgstr "Upravljanje dokumentima" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Nevažeći XML za arhitekturu prikaza!" - -#~ msgid "Parent Group" -#~ msgstr "Nadređena grupa" - -#~ msgid "Modifications" -#~ msgstr "Promjene" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki razlika" - -#~ msgid "History" -#~ msgstr "Povijest" - -#~ msgid "Tags" -#~ msgstr "Oznake" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Nije pronađena akcija" diff --git a/addons/document_page/i18n/hu.po b/addons/document_page/i18n/hu.po index 2d62aeeda6d..b3048ad21f9 100644 --- a/addons/document_page/i18n/hu.po +++ b/addons/document_page/i18n/hu.po @@ -7,190 +7,169 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2011-02-02 15:02+0000\n" +"PO-Revision-Date: 2012-08-13 12:16+0000\n" "Last-Translator: NOVOTRADE RENDSZERHÁZ ( novotrade.hu ) " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki sablon" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki oldalak" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Szerző" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Oldal megnyitása" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menü" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Szakasz" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki előzmény" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Tartalom" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Aloldalak" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Főoldal" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Utolsó közreműködő" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Főmenü" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki csoport" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Pozíció" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Előzmény sorok" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Oldaltartalom" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Vigyázat!" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Menü" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Leírás" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Igények felülvizsgálata" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Menü infrormáció" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Fa" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Oldalsablon" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Kulcsszavak" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,242 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Figyelmeztetés" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Dátum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Különbség" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Oldalok" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Csoportleírás" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Meg szeretné nyitni a wiki oldalt? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Szövegterület" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta információ" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Megjegyzések" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Lista" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Összegzés" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Dátum létrehozása" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Zárás" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki ID" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Kezdőlap" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Módosítási információ" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Topic, más néven Wikicsoport" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Módosítás dátuma" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Beállítások" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Index létrehozása" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Csoportosítás..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Menü létrehozása" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki csoportok" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Topic" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Tartalomjegyzék" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Wikioldal megnyitása" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Mégsem" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Különbség" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Dokumentum irányítás - Wiki" diff --git a/addons/document_page/i18n/id.po b/addons/document_page/i18n/id.po index 0c8f2f431f0..6eeb7156829 100644 --- a/addons/document_page/i18n/id.po +++ b/addons/document_page/i18n/id.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-11-09 13:58+0000\n" +"PO-Revision-Date: 2012-08-13 12:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,239 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" +msgid "Type" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" diff --git a/addons/document_page/i18n/it.po b/addons/document_page/i18n/it.po index 9b28b7cdcee..2d459fc5779 100644 --- a/addons/document_page/i18n/it.po +++ b/addons/document_page/i18n/it.po @@ -7,157 +7,136 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2011-01-13 03:14+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Template Wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Pagine Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Metodo di visualizzazione" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autore" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Apri Pagina" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menu" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sezione" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Indica che questa pagina ha una indice dei contenuti oppure no" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki Storia" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Modifica minore" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Contenuto" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Pagine figlio" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Pagina padre" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Ultimo collaboratore" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Menu Superiore" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Gruppo Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Titolo" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Wizard creazione menu" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Cronologia delle Linee" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Contenuto pagina" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Attenzione!" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Non ci sono cambiamenti nelle revisioni" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Usare il codice sezione di pagine come 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Nome Menu" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Descrizione" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Richiede revisione" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -165,33 +144,33 @@ msgstr "" "Indica che questa pagina dovrebbe essere revisionata, sollevando " "l'attenzione degli altri collaboratori" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Informazioni Menu" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Storico pagina" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Albero" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Pagina di Template" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Parole chiave" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -204,300 +183,232 @@ msgstr "" "chiave per facilitare l'accesso alle vostre pagine Wiki. C'è inoltre un " "editor basilare wiki per il formato testuale." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Attenzione" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" "Necessario per selezionare la home page, se il metodo di visualizzazione è " "Home Page" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Data" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Volete creare un indice della Pagine Selezionare? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Differenze" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Pagine" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Descrizione del gruppo" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Volete aprire una pagina wiki? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Crea Sezione?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Area testo" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta informazione" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Creato il" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Note" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Lista" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Riepilogo" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Data di Creazione" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Elenco di Tutte le Pagine" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" "Definisce le caratteristiche default per il menu creato in questo gruppo" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Chiudi" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki ID" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Home page" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Modifica informazioni" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Topic, altrimenti detto Gruppo Wiki" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Data di Modifica" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Configurazione" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Crea Indice" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "E' necessario selezionare minimo 1 o massimo 2 storico revisioni!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Raggruppa per..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Crea Menu" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Gruppi Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Topic" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modificato da" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Indice dei Contenuti" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Apri pagina wiki" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "wizard apri pagina" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Cancella" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Differenze" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Necessita Revisione" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Pagine in attesa di revisione" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Pagina di ricerca" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri " -#~ "speciali!" - -#~ msgid "Child Groups" -#~ msgstr "Sottogruppi" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configurazione Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Crea Menu" - -#~ msgid "History Differance" -#~ msgstr "Riepilogo Differenze" - -#~ msgid "Last Author" -#~ msgstr "Ultimo Autore" - -#~ msgid "Differences" -#~ msgstr "Differenze" - -#~ msgid "Document Management" -#~ msgstr "Gestione Documentale" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "XML non valido per Visualizzazione Architettura!" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki differenze" - -#~ msgid "Modifications" -#~ msgstr "Modifiche" - -#~ msgid "History" -#~ msgstr "Cronologia" - -#~ msgid "Tags" -#~ msgstr "Etichette" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestione documentale - Wiki" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "Il modulo base per gestire documenti (wiki)\n" -#~ "\n" -#~ "tiene traccia per i gruppi wiki, le pagine, e lo storico\n" -#~ " " diff --git a/addons/document_page/i18n/ja.po b/addons/document_page/i18n/ja.po index 97728365f6d..3bd025dd942 100644 --- a/addons/document_page/i18n/ja.po +++ b/addons/document_page/i18n/ja.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-06-16 05:47+0000\n" -"Last-Translator: Akira Hiyama \n" +"PO-Revision-Date: 2012-08-13 12:11+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-06-17 04:35+0000\n" -"X-Generator: Launchpad (build 15419)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wikiテンプレート" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wikiページ" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "表示方法" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "著者" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "ページを開く" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "メニュー" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "セクション" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "このページは目次を持つかどうかを表します。" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki履歴" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "細部の編集" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "コンテンツ" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "子ページ" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "親ページ" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "最終貢献者" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "親メニュー" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "このページにセクションがありません。" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wikiグループ" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "タイトル" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "メニュー作成ウィザード" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "履歴行" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "ページコンテンツ" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "警告" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "リビジョンの変更はありません。" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "1.2.1のようなページセクションコードを使用します。" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "メニュー名" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "説明" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "要レビュー" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "他の貢献者の関心を高めて、このページはレビューされる必要があることを示しています。" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "メニュー情報" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "ページ履歴" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "ツリー" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "ページテンプレート" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "キーワード" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -200,239 +179,229 @@ msgstr "" "Wikiページで同僚とアイディアや疑問を共有することができます。ひとつまたは幾つかのアプリケーション(CRM、販売など)とリンクさせる新しいドキュメントを" "作成できます。Wikiページにアクセスを簡単にするためのキーワードを使用することができます。テキスト形式の基本Wiki編集機能があります。" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "警告" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "表示方法がホームページの時はホームページの選択が要求されます。" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "日付" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "選択ぺーじにインデックスを作成しますか? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "差分" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "ページ" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "グループの説明" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Wikiページを開きますか? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "セクションを作りますか?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "テキストエリア" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "メタ情報" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "作成日" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "注記" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "リスト" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "要約" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "作成日" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "全ページの履歴" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "このグループに作成されたメニューのデフォルトの振る舞いを定義します。" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "閉じる" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki ID" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "ホームページ" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "現在のトピックで 他のページにリンクすることができます。" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "変更情報" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "トピックはWikiグループとも呼ばれます。" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "変更日" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "設定" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "インデックスを作成" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "最低1つまたは2つの履歴リビジョンを選択する必要があります。" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "グループ化…" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "メニューの作成" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "これは主要な編集ですか?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wikiグループ" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "トピック" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "変更者" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "目次" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Wikiページを開く" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "ページを開くウィザード" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "キャンセル" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "差分" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "要レビュー" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "レビュー待ちページ" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "ページの検索" diff --git a/addons/document_page/i18n/ko.po b/addons/document_page/i18n/ko.po index a7637e5de1a..373c112b907 100644 --- a/addons/document_page/i18n/ko.po +++ b/addons/document_page/i18n/ko.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-08-02 14:52+0000\n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" "Last-Translator: CSro \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "위키 템플릿" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "위키 페이지" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "저자" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "페이지 열기" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "메뉴" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "섹션" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "위키 히스토리" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "간편 편집" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "컨텐트" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "부모 메뉴" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "위키 그룹" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "제목" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "히스토리 라인" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "1.2.1과 같은 페이지 섹션 코드를 사용하십시오" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "메뉴 이름" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "설명" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "메뉴 정보" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "페이지 템플릿" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,298 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "경고" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "날짜" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "선택된 페이지에 대해 인덱스를 생성할까요? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "페이지" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "섹션 만들기 ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "텍스트 영역" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "생성 날짜" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "노트" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "요약" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "만든 날짜" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "모든 페이지 히스토리" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "위키 ID" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "위키" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "수정 날짜" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "구성" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "인덱스 만들기" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "최소 하나 또는 최대 두 개의 히스토리 리비전을 선택하십시오 !" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "메뉴 만들기" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "정식 편집입니까?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "위키 그룹" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "수정한 이" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "목차" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "취소" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Diff" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "검토가 필요함" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "Child Groups" -#~ msgstr "차일드 그룹" - -#~ msgid "Wiki Groups Links" -#~ msgstr "위키 그룹 링크" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "객체 이름은 x_로 시작해야 하며, 특수문자를 포함하면 안됩니다 !" - -#~ msgid "Document Management - Wiki" -#~ msgstr "문서 관리 - 위키" - -#~ msgid "Create a Menu" -#~ msgstr "메뉴 만들기" - -#~ msgid "Wiki Configuration" -#~ msgstr "위키 구성" - -#~ msgid "History Differance" -#~ msgstr "히스토리 차이점" - -#~ msgid "Group Home Page" -#~ msgstr "그룹 홈페이지" - -#~ msgid "Differences" -#~ msgstr "차이점" - -#~ msgid "Last Author" -#~ msgstr "최종 저자" - -#~ msgid "Document Management" -#~ msgstr "문서 관리" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "뷰 아키텍처의 XML이 유효하지 않습니다 !" - -#~ msgid "Parent Group" -#~ msgstr "부모 그룹" - -#~ msgid "Wiki Differance" -#~ msgstr "위키 차이점" - -#, python-format -#~ msgid "No action found" -#~ msgstr "발견된 액션이 없음" - -#~ msgid "Modifications" -#~ msgstr "수정" - -#~ msgid "History" -#~ msgstr "히스토리" - -#~ msgid "Tags" -#~ msgstr "태그" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "액션 정의에서 유효하지 않은 모델 이름" diff --git a/addons/document_page/i18n/lt.po b/addons/document_page/i18n/lt.po index 4e15d7c0299..14c4abbb279 100644 --- a/addons/document_page/i18n/lt.po +++ b/addons/document_page/i18n/lt.po @@ -7,191 +7,170 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-07-20 22:14+0000\n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" "Last-Translator: Giedrius Slavinskas - inovera.lt " "\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" "Language: lt\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Viki šablonas" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki puslapiai" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autorius" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Atidaryti puslapį" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Meniu" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sekcija" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki istorija" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Smulkus keitimas" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Turinys" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Bazinis meniu" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki grupė" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Antraštė" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Istorijos eilutės" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Naudoti puslapių sekcijos kodą kaip 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Meniu pavadinimas" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Aprašas" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Meniu informacija" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Puslapio šablonas" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -199,297 +178,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Data" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Norite sukurti nuorodą į pasirinktus puslapius? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Puslapiai" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Suskirstyti?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Tekstas" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Sukurta" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Pastabos" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Santrauka" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Sukūrimo data" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Visos puslapių istorijos" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "Wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki ID" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Modifikavimo data" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Nustatymai" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Sukurti nuorodą" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Sukurti meniu" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Tai yra svarbesnis keitimas?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki grupės" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Pakeistas" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Lentelės turinys" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Atšaukti" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Skirtumas" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Reikalinga peržiūra" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Objekto pavadinimas turi prasidėti x_ ir negali turėti jokių specialiųjų " -#~ "ženklų !" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wiki grupių nuorodos" - -#~ msgid "Child Groups" -#~ msgstr "Žemesnės grupės" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki konfigūracija" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Dokumentų valdymas - Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Sukurti meniu" - -#~ msgid "History Differance" -#~ msgstr "Istorijos skirtumas" - -#~ msgid "Group Home Page" -#~ msgstr "Grupuoti puslapius" - -#~ msgid "Last Author" -#~ msgstr "Paskutinis autorius" - -#~ msgid "Differences" -#~ msgstr "Skirtumai" - -#~ msgid "Document Management" -#~ msgstr "Dokumentų valdymas" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Netinkamas XML peržiūros struktūrai!" - -#~ msgid "Parent Group" -#~ msgstr "Tėvinė grupė" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki skirtumas" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Veiksmas nerastas" - -#~ msgid "Modifications" -#~ msgstr "Pakeitimai" - -#~ msgid "History" -#~ msgstr "Istorija" - -#~ msgid "Tags" -#~ msgstr "Gairės" diff --git a/addons/document_page/i18n/lv.po b/addons/document_page/i18n/lv.po index a2e326088e2..c0073ae1ebf 100644 --- a/addons/document_page/i18n/lv.po +++ b/addons/document_page/i18n/lv.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-12-21 14:39+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki Veidne" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki Lapas" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Attēlošanas Metode" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autors" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Atvērt Lapu" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Izvēlne" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sadaļa" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Norāda vai šai lapai ir satura rādītājs vai nē" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki Vēsture" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Maznozīmīgi labojumi" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Saturs" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Apakšlapas" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Virslapa" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Pēdējais Papildinājs" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "VirsIzvēlne" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki Grupa" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Virsraksts" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Izvēlnes Veidošanas Veidnis" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Rindu Vēsture" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Lapas Saturs" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Uzmanību!" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Versijās izmaiņu nav" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Izmantojiet lapas sadaļas kodu, piem. 1.2.1." - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Izvēlnes Nosaukums" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Apraksts" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Nepieciešams Pārskatīt" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "Norāda, ka šī lapa ir jāpārskata, piesaistot citu autoru uzmanību" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Izvēlnes Informācija" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Lapas Vēsture" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Koks" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Lapas Veidnis" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Atslēgvārdi" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -203,256 +182,230 @@ msgstr "" "lai atvieglotu piekļuvi savām wiki lapām. To veidošanai ir vienkāršots " "teksta redaktors." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Brīdinājums" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "Ja atēlošanas metode ir Mājas Lapa, tad ir jāizvēlas mājas lapa" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Datums" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Vēlies izveidot Saturu izvēlētajām lapām? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Atšķirības" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Lapas" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Grupas Apraksts" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Vēlies izveidot wiki lapu? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Izveidot Sadaļu?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Teksta lauks" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta informācija" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Izveidots" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Piezīmes" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Saraksts" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Kopsavilkums" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Izveides Datums" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Visu lapu vēsture" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Definējiet šajā grupā veidoto izvēļņu noklusējuma uzvedību" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Aizvērt" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Mājas Lapa" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Atļauj jums izveidot sasaisti ar citu lapu šīs tēmas ietvaros" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Izmaiņu Informācija" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Tēma, arī saukta Wiki Grupa" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Izmaiņu Datums" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Iestatījumi" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Izveidot Saturu" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" "Jums ir jāizvēlas vismaz viena vai maksimums divas labojumu vēstures!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Grupēt pēc..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Izveidot Izvēlni" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Vai šīs bija nozīmīgas izmaiņas?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki Grupas" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Tēma" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Laboja" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Satura Rādītājs" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Atvērt Wiki Lapu" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "lapas izveides veidnis" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Atcelt" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Atšķirības" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Nepieciešams pārskatīt" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Lapas, kas gaida pārskatīšanu" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Meklēšana" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Dokumentu Pārvaldība - Wiki" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "Pamata modulis dokumentu pārvaldībai (wiki)\n" -#~ "\n" -#~ "sekot wiki grupām, lapām un vēsturei\n" -#~ " " diff --git a/addons/document_page/i18n/mn.po b/addons/document_page/i18n/mn.po index c361d4340da..48e0599dff2 100644 --- a/addons/document_page/i18n/mn.po +++ b/addons/document_page/i18n/mn.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-09-29 10:26+0000\n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" "Last-Translator: ub121 \n" "Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Вики загвар" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Вики хуудсууд" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Зохиогч" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Хуудас нээх" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Цэс" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Хэсэг" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Вики түүх" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Жижиг засвар" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Агуулга" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Толгой цэс" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Вики групп" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Гарчиг" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Түүхэн бичлэгүүд" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "1.2.1 маягын хэсгийн код ашиглана" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Цэсний нэр" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Тодорхойлолт" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Цэсний мэдээлэл" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Хуудсын загвар" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,296 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Огноо" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Сонгосон хуудас дээр индекс үүсгэх үү ? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Хуудсууд" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Хэсэг үүсгэх үү ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Текст муж" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Үүсгэсэн" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Тэмдэглэгээ" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Хураангуй" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Үүссэн огноо" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Хуудсын бүх түүх" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Вики Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Вики" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Зассан огноо" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Тохиргоо" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Индекс үүсгэх" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Цэс үүсгэх" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Энэ том өөрчлөлт үү ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Вики группүүд" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Зассан" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Агуулгын хүснэгт" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Цуцлах" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Зөрүү" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Хянах хэрэгтэй" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "Child Groups" -#~ msgstr "Дэд бүлгүүд" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Объектын нэрний эхлэл x_ байх ёстой бөгөөд бусад тусгай тэмдэгтийг агуулж " -#~ "болохгүй!" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Баримтын удирдлага - Вики" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Үйлдлийн тодорхойлолтод буруу моделийн нэр байна." - -#~ msgid "Wiki Configuration" -#~ msgstr "Вики тохиргоо" - -#~ msgid "Create a Menu" -#~ msgstr "Цэс үүсгэх" - -#~ msgid "Differences" -#~ msgstr "Зөрүү" - -#~ msgid "Last Author" -#~ msgstr "Сүүлийн зохиогч" - -#~ msgid "Document Management" -#~ msgstr "Баримтын удирдлага" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Дэлгэцийн XML алдаатай!" - -#~ msgid "Parent Group" -#~ msgstr "Толгой групп" - -#~ msgid "Wiki Differance" -#~ msgstr "Вики зөрүү" - -#~ msgid "Modifications" -#~ msgstr "Засварууд" - -#~ msgid "History" -#~ msgstr "Түүх" - -#~ msgid "Tags" -#~ msgstr "Таагууд" - -#~ msgid "History Differance" -#~ msgstr "Түүхийн ялгаа" - -#~ msgid "Group Home Page" -#~ msgstr "Группын эхлэл хуудас" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Вики группын холбоосууд" diff --git a/addons/document_page/i18n/nb.po b/addons/document_page/i18n/nb.po index b9628735a7d..809b0cd1801 100644 --- a/addons/document_page/i18n/nb.po +++ b/addons/document_page/i18n/nb.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2011-03-31 12:08+0000\n" -"Last-Translator: Rolv Råen (adEgo) \n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki mal" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Sider i wikien" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Visningsmetode" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Forfatter" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Åpne side" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Meny" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Seksjon" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Indikerer om denne siden har en innholdsfortegnelse eller ikke" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki historikk" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Mindre endring" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Innhold" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Underordnende sider" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Overordnet side" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Siste forfatter" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Overordnet meny" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki gruppe" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Tittel" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Wizard Opprett meny" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Revisjonslinjer" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Sideinnhold" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Advarsel !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Det er ingen endringer i revisjonen" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Bruk side seksjonskoder slik som f.eks. 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Menynavn" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Beskrivelse" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Trenger gjennomgang/godkjenning" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Meny informasjon" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Sidehistorikk" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Tre" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Mal for siden" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Nøkkelord" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,300 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Advarsel" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Dato" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Vil du opprette indeks for den valgte siden ? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Endringer" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Sider" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Gruppebekrivelse" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Vil du åpne wiki siden ? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Opprett seksjon ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Tekstfelt" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Metainformasjon" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Opprettet den" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Notater" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Liste" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Sammendrag" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Dato opprettet" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Endringshistorikk" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Lukk" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Hjemmeside" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Gir deg mulighet til å lenke til andre sider innenfor samme emne" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Endringsinformasjon" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Emne, også kjent som Wiki Gruppe" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Dato for siste endring" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Konfigurasjon" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Opprett indeks" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Du må velge minimum 1 og maximum 2 revisjoner!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Grupper etter..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Opprett meny" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Er dette en større endring ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki grupper" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Emne" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Endret av" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Innholdsfortegnelse" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Åpne Wiki side" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "wiz åpne side" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Avbryt" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Diff" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Trenger gjennomgang/godkjenning" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Sider som venter gjennomgang" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Søk i side" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Dokumenthåndtering - Wiki" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "Basis modulen for å håndtere dokumenter(wiki) \n" -#~ " \n" -#~ " holde kontroll på wiki grupper, sider og historie\n" -#~ " " - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Objektnavnet må starte med x_ og kan ikke inneholde noen spesial karakterer !" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wiki gruppe lenker" - -#~ msgid "Child Groups" -#~ msgstr "Underordnet gruppe" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki konfigurasjon" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Ugyldig navn på modell i handlingsdefinisjonen." - -#~ msgid "Create a Menu" -#~ msgstr "Opprett en meny" - -#~ msgid "History Differance" -#~ msgstr "Revisjonshistorikk" - -#~ msgid "Document Management" -#~ msgstr "Dokumenthåndtering" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Ugyldig XML for Visningsarkitektur" - -#~ msgid "Parent Group" -#~ msgstr "Overordnet gruppe" - -#~ msgid "Wiki Differance" -#~ msgstr "Revisjonsendringer" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Ingen handling funnet" - -#~ msgid "Modifications" -#~ msgstr "Endringer" - -#~ msgid "Tags" -#~ msgstr "Tagger" diff --git a/addons/document_page/i18n/nl.po b/addons/document_page/i18n/nl.po index 1a0fa185196..fee40c3032c 100644 --- a/addons/document_page/i18n/nl.po +++ b/addons/document_page/i18n/nl.po @@ -7,157 +7,136 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-01-15 12:43+0000\n" -"Last-Translator: Erwin \n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki-sjabloon" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki pagina's" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Afbeeldmethode" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Auteur" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Open pagina" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menu" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sectie" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Geeft aan of deze pagina's een inhoudsopgave hebben of niet" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki historie" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Kleine wijziging" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Inhoud" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Onderliggende pagina's" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Bovenliggende pagina" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Laatste bijdrage" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Hoofdmenu" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "Er is geen sectie in deze pagina" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki groep" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Titel" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Assistent menu maken" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Historie regels" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Pagina inhoud" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Waarschuwing !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Er zijn geen veranderingen in de revisies" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Gebruik pagina sectie code zoals 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Naam menu" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Omschrijving" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Nakijken nodig" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -165,33 +144,33 @@ msgstr "" "Geeft aan dat deze pagina moet worden nagekeken, daarmee aandacht trekkend " "van andere bijdragers" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Menu informatie" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Pagina geschiedenis" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Boom" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Paginasjabloon" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Trefwoorden" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -203,314 +182,231 @@ msgstr "" "(CRM, Verkoop, etc.). Je kunt trefwoorden gebruiken om makkelijk toegang tot " "je Wiki pagina's te krijgen. Er is een basis Wiki tekstbewerker." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Waarschuwing" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" "Verplicht om een startpagina te selecteren als de weergavemethode " "Startpagina is" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Datum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Wilt u een index aanmaken op de gekozen pagina's? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Verschil" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Pagina's" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Groepsomschrijving" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Wilt U een wiki pagina openen? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Wilt u een sectie maken?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Tekstgebied" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta-informatie" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Aangemaakt op" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Opmerkingen" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Lijst" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Samenvatting" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Aanmaakdatum" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Historie van alle pagina's" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Definieer het standaard gedrag van het menu gemaakt op deze groep" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Sluiten" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Startpagina" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Laat u koppelen met de andere pagina in het huidige onderwerp" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Wijzigings informatie" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Onderwerp, ook genaamd Wiki Groep" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Wijzigingsdatum" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Instellingen" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Maak index aan" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "U dient minimaal 1 en maximaal 2 revisies te kiezen" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Groepeer op..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Menu maken" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Is dit een grote wijziging?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki groepen" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Onderwerp" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Gewijzigd door" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Inhoudsopgave" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Wiki pagina openen" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "Wiz open pagina" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Annuleren" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Verschil" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Controle nodig" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Pagina's wachtend op controle" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Pagina zoeken" - -#~ msgid "History Differance" -#~ msgstr "Historie verschil" - -#~ msgid "Differences" -#~ msgstr "Verschillen" - -#~ msgid "Last Author" -#~ msgstr "Laatste auteur" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki verschil" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Geen actie gevonden" - -#~ msgid "History" -#~ msgstr "Historie" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "De objectnaam moet beginnen met x_ en mag geen speciale tekens bevatten !" - -#~ msgid "Document Management" -#~ msgstr "Documentbeheer" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Ongeldige XML voor weergave!" - -#~ msgid "Modifications" -#~ msgstr "Wijzigingen" - -#~ msgid "Tags" -#~ msgstr "Labels (tags)" - -#~ msgid "Child Groups" -#~ msgstr "Deelgroepen" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wiki groepenverwijzingen" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Documentbeheer - Wiki" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Ongeldige modelnaam in de definitie van de actie." - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki instellingen" - -#~ msgid "Create a Menu" -#~ msgstr "Maak een menu" - -#~ msgid "Group Home Page" -#~ msgstr "Startpagina groep" - -#~ msgid "Parent Group" -#~ msgstr "Hoofdgroep" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "De basis module voor het beheren van Wiki documenten\n" -#~ "\n" -#~ "Volg alle wiki groepen, pagina's en geschiedenis\n" -#~ " " diff --git a/addons/document_page/i18n/pl.po b/addons/document_page/i18n/pl.po index 14086af46b8..3fed2a579cb 100644 --- a/addons/document_page/i18n/pl.po +++ b/addons/document_page/i18n/pl.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-09-29 11:02+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2012-08-13 12:16+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Szablon wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Strony Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Otwórz stronę" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menu" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sekcja" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Historia wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Drobna edycja" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Zawartość" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Menu nadrzędne" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grupa wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Tytuł" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Pozycje historii" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Nazwa menu" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Opis" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Szablon strony" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,284 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Data" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Strony" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Utworzyć sekcję ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Obszar tekstu" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Utworzono" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Uwagi" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Podsumowanie" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Data utworzenia" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Data modyfikacji" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Konfiguracja" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Utwórz indeks" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Utwórz menu" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Czy jest to większa edycja ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupy wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modyfikowane przez" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Spis treści" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Anuluj" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Różnice" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Wymaga przejrzenia" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "Wiki Configuration" -#~ msgstr "Konfiguracja wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Utwórz menu" - -#~ msgid "Differences" -#~ msgstr "Różnice" - -#~ msgid "Last Author" -#~ msgstr "Ostatni autor" - -#~ msgid "Parent Group" -#~ msgstr "Grupa nadrzędna" - -#~ msgid "Modifications" -#~ msgstr "Modyfikacje" - -#~ msgid "History" -#~ msgstr "Historia" - -#~ msgid "Tags" -#~ msgstr "Znaczniki" - -#~ msgid "Child Groups" -#~ msgstr "Grupy podrzędne" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków " -#~ "specjalnych !" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "XML niewłaściwy dla tej architektury wyświetlania!" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nieprawidłowa nazwa modelu w definicji akcji." - -#~ msgid "Document Management" -#~ msgstr "Zarządzanie dokumentami" - -#~ msgid "Group Home Page" -#~ msgstr "Strona domowa grupy" diff --git a/addons/document_page/i18n/pt.po b/addons/document_page/i18n/pt.po index f3bf2c8cc5c..b85aabb87b5 100644 --- a/addons/document_page/i18n/pt.po +++ b/addons/document_page/i18n/pt.po @@ -7,157 +7,136 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-12-12 10:01+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Modelo Wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Páginas Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Forma de exibição" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Abrir Página" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menu" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Secção" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Histórico Wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Edição menor" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Conteúdo" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Menu do Ascendente" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grupo Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Título" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Assitente de criação de menu" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Linhas do Histórico" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Conteúdo de página" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Alerta!" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Utilize o código da secção da página como 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Nome do Menu" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Descrição" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Necessita de revisão" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -165,33 +144,33 @@ msgstr "" "Indica que esta página necessita de revisão, chamando a atenção de outros " "colaboradores" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Informação do Menu" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Árvore" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Modelo da Página" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Palavras-chave" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -199,300 +178,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Aviso" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Data" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Pretende criar um Índice nas Páginas Seleccionadas? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Diferença" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Páginas" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Produzir Secção ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Área de texto" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta-Informação" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Criado em" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Notas" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Resumo" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Data Criada" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Todos os Históricos das Páginas" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Fechar" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "ID do Wiki" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Página inicial" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Tópico, também chamado de Grupo Wiki" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Data de Modificação" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Configuração" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Criar Índex" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Precisa seleccionar no mínimo 1 ou no máximo 2 históricos revistos!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Agrupar por..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Criar Menu" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Esta é a edição principal ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupos Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Tópico" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modificado Por" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Tabela de Conteúdos" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Abrir página Wiki" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Cancelar" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Diferenças" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Precisa de Revisão" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Páginas guardando revisão" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Página de procura" - -#~ msgid "Differences" -#~ msgstr "Diferenças" - -#~ msgid "Modifications" -#~ msgstr "Modificações" - -#~ msgid "History" -#~ msgstr "Histórico" - -#~ msgid "Tags" -#~ msgstr "Etiquetas" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "O nome do Objecto deve começar com x_ e não pode conter nenhum caracter " -#~ "especial !" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Linhas de Grupos Wiki" - -#~ msgid "Child Groups" -#~ msgstr "Grupos de Descendestes" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuração Wiki" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Nome do modelo inválido na definição da acção." - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gestão Documental - Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Criar um Menu" - -#~ msgid "History Differance" -#~ msgstr "Diferenças no Histórico" - -#~ msgid "Group Home Page" -#~ msgstr "Página Inicial do Grupo" - -#~ msgid "Last Author" -#~ msgstr "Último Autor" - -#~ msgid "Document Management" -#~ msgstr "Gestão Documental" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "XML Inválido para a Arquitectura de Vista!" - -#~ msgid "Parent Group" -#~ msgstr "Grupo Ascendente" - -#~ msgid "Wiki Differance" -#~ msgstr "Diferança Wiki" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Nenhuma acção encontrada" diff --git a/addons/document_page/i18n/pt_BR.po b/addons/document_page/i18n/pt_BR.po index 61514b12ffb..5c0f3097656 100644 --- a/addons/document_page/i18n/pt_BR.po +++ b/addons/document_page/i18n/pt_BR.po @@ -7,157 +7,136 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-01-18 02:50+0000\n" -"Last-Translator: Rafael Sales - http://www.tompast.com.br \n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Modelo de Wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Páginas do Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Forma de exibição" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Abrir Página" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menu" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Seção" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Indica se estas páginas têm uma tabela de conteúdo ou não" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Histórico do Wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Edição simples" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Conteúdo" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Páginas Secundárias" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Páginas Principais" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Último contribuidor(a)" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Menu Superior(pai)" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "Não há a seção nesta página" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grupo do Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Título" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Assistente Para Criar Menu" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Linhas de Histórico" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Conteúdo da Página" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Atenção !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Não há alterações nas revisões" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Use o código de seção da página como 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Nome do Menu" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Descrição" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Necessita de revisão" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -165,33 +144,33 @@ msgstr "" "Indica que esta página deve ser revista, aumentando a atenção dos outros " "participantes" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Menu de Informação" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Página do Histórico" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Visão em árvore" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Modelo de Página" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Palavras-chave" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -204,307 +183,230 @@ msgstr "" "facilitar o acesso as páginas wiki. Existe uma edição básica para formatação " "de texto." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Atenção" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "Obrigatório selecionar home page se o método de exibição é Home Page" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Data" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Quer criar um índice em páginas selecionadas? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Diferença" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Páginas" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Descrição do grupo" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Quer abrir uma página wiki? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Fazer Seção ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Área de texto" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta informações" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Criado em" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Observações" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Listar" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Sumário" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Data de Criação" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Todas as Páginas de Históricos" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Define o comportamento padrão do menu criado neste grupo" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Fechar" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "assistente wiki demonstrador de diferença de histórico" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Identificação da Wiki" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Página Inicial" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Permite voçê linkar com a outra página com o mesmo tópico" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Modificação de Informação" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Topico/Tema, também chamado de Grupo Wiki" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Data de Modificação" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Configuração" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Criar Index" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" "Você precisa selecionar no mínimo 1 ou no máximo 2 revisões de histórico!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Agrupar Por..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Criar Menu" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Esta é uma edição Avançada ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupos de Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Tópico" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modificado por" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Tabela de Conteúdos" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Abrir página Wiki" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "abrir página do assistente" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Cancelar" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Diferença" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Revisão da Necessidade" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Páginas aguardando revisões" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Página de Pesquisa" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter " -#~ "especial!" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Links dos Grupos do Wiki" - -#~ msgid "Child Groups" -#~ msgstr "Grupos Filhos" - -#~ msgid "Wiki Configuration" -#~ msgstr "Configuração do Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Criar um menu" - -#~ msgid "History Differance" -#~ msgstr "Diferença do Histórico" - -#~ msgid "Group Home Page" -#~ msgstr "Grupo Home Page" - -#~ msgid "Last Author" -#~ msgstr "Último Autor" - -#~ msgid "Differences" -#~ msgstr "Diferenças" - -#~ msgid "Document Management" -#~ msgstr "Gerenciamento de Documentos" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Invalido XML para Arquitetura da View" - -#~ msgid "Parent Group" -#~ msgstr "Grupo Superior(pai)" - -#~ msgid "Wiki Differance" -#~ msgstr "Diferença de Wiki" - -#~ msgid "Modifications" -#~ msgstr "Modificações" - -#~ msgid "History" -#~ msgstr "Histórico" - -#~ msgid "Tags" -#~ msgstr "Marcadores" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Gerenciamento de Documentos - Wiki" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "O módulo base para gerenciar documentos (wiki)\n" -#~ "\n" -#~ "acompanhar grupos, páginas e histórico wiki\n" -#~ " " diff --git a/addons/document_page/i18n/ro.po b/addons/document_page/i18n/ro.po index 8e6d9ba8be9..f9ab8a23e12 100644 --- a/addons/document_page/i18n/ro.po +++ b/addons/document_page/i18n/ro.po @@ -7,157 +7,136 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2011-02-15 06:10+0000\n" +"PO-Revision-Date: 2012-08-13 12:12+0000\n" "Last-Translator: filsys \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Sabloane Wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Pagini Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Metoda de afisare" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Deschide pagina" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Meniu" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Secţiune" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Indică dacă aceste pagini au un cuprins sau nu" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Istoric wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Modificare minoră" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Conţinut" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Pagini subordonate (copii)" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Pagini principale (părinte)" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Ultimul colaborator" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Meniu principal (părinte)" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Grup wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Titlu" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Wizard Creează meniul" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Istoricul liniilor" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Conținutul paginii" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Avertisment !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Nu există modificări la revizii" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Folosiți codul secțiunii paginii, cum ar fi 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Nume Meniu" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Descriere" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Necesită verificare" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -165,33 +144,33 @@ msgstr "" "Indică faptul că această pagină ar trebui verificată, atrăgand atentia altor " "colaboratori" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Informaţii meniu" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Istoric pagină" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Arbore" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Sablon pagină" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Cuvinte cheie" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -204,258 +183,232 @@ msgstr "" "a accesa cu usurintă paginile dumneavoastră wiki. Există o editare de bază " "pentru formatul text." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Avertisment" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" "Este obligatoriu să selectati pagina de pornire dacă metoda de afisare este " "Pagina de pornire" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Dată" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Doriți să creați un index pentru paginile selectate ? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Diferenţă" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Pagini" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Descriere Grup" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Doriti să deschideti o pagină wiki? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Creează secțiunea ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Zonă text" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta Informații" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Creat in" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Note" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Listă" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Rezumat" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Data creării" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Toate paginile istoricului" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" "Defineste comportamentul predefinit al meniului creat pentreu acest grup" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Închide" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "ID wiki" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Pagină de pornire" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Vă permite să vă conectati la o altă pagină in subiectul curent" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Informatii modificare" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Subiect, denumit si Grup Wiki" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Data modificării" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Configurare" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Creare index" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Trebuie să selectati minim 1 și maxim 2 revizuiri ale istoricului" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Grupează după..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Creează meniu" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Este aceasta o modificare majoră ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Grupuri wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Subiect" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modificat de" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Cuprins" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Deschide Pagina Wiki" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "wizard deschidere pagină" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Anulează" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Diferit" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Necesită verificare" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Pagini care asteaptă verificare" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Caută pagina" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Managementul documentelor - wiki" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "Modulul de bază pentru gestionarea documentelor(wiki)\n" -#~ "\n" -#~ "tine evidenta grupurilor, paginilor si istoricului wiki\n" -#~ " " diff --git a/addons/document_page/i18n/ru.po b/addons/document_page/i18n/ru.po index 3041c9c19d3..9e362a098de 100644 --- a/addons/document_page/i18n/ru.po +++ b/addons/document_page/i18n/ru.po @@ -7,157 +7,136 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2011-04-15 20:00+0000\n" +"PO-Revision-Date: 2012-08-13 12:11+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki Шаблон" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki страницы" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Метод вывода" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Автор" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Открыть страницу" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Меню" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Секция" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Показывает имеется ли содержание на этой странице" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "История Wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Малозначимое изменение" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Содержание" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Подчиненные страницы" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Главная страница" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Последний корректор" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Родительское меню" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki Группа" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Заголовок" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Помощник создания меню" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Строки истории" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Текст страницы" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Внимание!" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Нет изменений" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Используйте код выбора страницы, например: 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Название меню" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Описание" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "Нуждается в проверке" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" @@ -165,33 +144,33 @@ msgstr "" "Указывает, что эта страница должна быть проверена, привлекает внимание " "других участников" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Информация меню" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "История страницы" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Дерево" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Шаблон страницы" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Ключевые слова" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -204,301 +183,230 @@ msgstr "" "использовать ключевые слова, чтобы облегчить доступ к вики-страницам. Есть " "простое редактирование вики для текстового формата." -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Внимание" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" "Необходимо выбрать домашнюю страницу если метод вывода \"Домашняя страница\"" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Дата" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Хотите создать Индекс на Выбранных Странцах ? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Различие" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Страницы" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Описание группы" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Хотите открыть вики ? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Создать Раздел ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Текстовое поле" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Метаданные" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Создан" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Заметки" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Список" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Итого" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Дата создания" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "История всех страниц" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "Определить поведение по умолчанию для меню, созданного на эту группу" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Закрыть" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Главная страница" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Позволяет сделать ссылку на другую страницу в текущем разделе" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Информация об изменениях" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Тема, которая также называется Вики группа" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Дата изменения" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Конфигурация" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Создать индекс" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Вам нужно выбрать минимум 1 или максимум 2 истории изменений!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Группировать по .." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Создать меню" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Это существенные изменения ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Вики группы" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Тема" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Изменено" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Содержание" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Открыть вики-страницу" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Отмена" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Различие" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Необходима Проверка" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Страницы ожидающие проверки" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Страница поиска" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Название объекта должно начинаться с x_ и не должно содержать специальных " -#~ "символов !" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Неправильный XML для просмотра архитектуры!" - -#~ msgid "Wiki Configuration" -#~ msgstr "Настройка Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Создать меню" - -#~ msgid "Document Management" -#~ msgstr "Управление документами" - -#~ msgid "Differences" -#~ msgstr "Разность" - -#~ msgid "Last Author" -#~ msgstr "Последний автор" - -#~ msgid "Modifications" -#~ msgstr "Модификации" - -#~ msgid "History" -#~ msgstr "История" - -#~ msgid "Tags" -#~ msgstr "Ярлыки" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Недопустимое имя модели в определении действия." - -#~ msgid "History Differance" -#~ msgstr "История Различий" - -#~ msgid "Group Home Page" -#~ msgstr "Домашняя Страница Группы" - -#~ msgid "Child Groups" -#~ msgstr "Подчиненные группы" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Управление документами - Вики" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "Базовый модуль для управления документацией (вики)\n" -#~ "\n" -#~ "отслеживание вики групп, страниц и истории\n" -#~ " " diff --git a/addons/document_page/i18n/sk.po b/addons/document_page/i18n/sk.po index 0f20002530d..6df87913768 100644 --- a/addons/document_page/i18n/sk.po +++ b/addons/document_page/i18n/sk.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-08-02 14:49+0000\n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" "Last-Translator: Peter Kohaut \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki šablóna" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki stánky" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Spôsob zobrazenia" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Otvoriť stránku" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menu" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sekcia" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "Označuje, že tieto stránky majú alebo nemajú obsah" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki história" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Drobná úprava" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Obsah" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "Podstránky" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "Nadradená stránka" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Posledný prispievateľ" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Nadradené menu" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki skupina" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Názov" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "Sprievodca vytvorením ponuky" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Riadky histórie" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Obsah stránky" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Varovanie!" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "Nie sú žiadne zmeny v revíziách" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Názov menu" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Popis" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Informácie menu" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "História stránky" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Strom" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Šablóna stránky" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Kĺučové slová" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,289 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Upozornenie" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Dátum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Chcete vytvoriť index na vybrané stránky? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Rozdiel" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Stránky" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Opis skupiny" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "Chcete otvoriť wiki stránky? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Vytvoriť sekciu ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Oblasť textu" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta-informácie" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Vytvorené" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Poznámky" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Zoznam" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Zhrnutie" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Dátum vytvorenia" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "História všetkých stránok" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Zavrieť" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Domovská stránka" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "Umožňuje prepojenie s ostatnými stránkami s aktuálnou témou" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "Informácie o zmene" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "Téma, tiež volá Wiki skupiny" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Dátum zmeny" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Konfigurácia" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Vytvoriť index" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Musíte vybrať minimálne 1 alebo maximálne 2 revízie histórie!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Zoskupiť podľa..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Vytvoriť menu" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Je to veľká úprava?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Skupiny Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Téma" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Upravil" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Obsah" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "Otvorená Wiki stránka" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Zrušiť" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Rozdiel" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Potrebná kontrola" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "Stránky čakajúce na recenziu" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Vyhľadanie stránky" - -#~ msgid "Child Groups" -#~ msgstr "Podskupiny" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Názov objektu musí začínať x_ a nesmie obsahovať žiadne špeciálne znaky!" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Správa dokumentov - Wiki" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki konfigurácia" - -#~ msgid "Create a Menu" -#~ msgstr "Vytvoriť menu" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Neplatný názov modelu v definícii akcie." - -#~ msgid "Differences" -#~ msgstr "Rozdiely" - -#~ msgid "Last Author" -#~ msgstr "Posledný autor" - -#~ msgid "Document Management" -#~ msgstr "Správa dokumentov" - -#~ msgid "Parent Group" -#~ msgstr "Rodičovská skupina" - -#~ msgid "Wiki Differance" -#~ msgstr "Rozdiely wiki" - -#~ msgid "Modifications" -#~ msgstr "Zmeny" - -#~ msgid "History" -#~ msgstr "História" - -#~ msgid "Tags" -#~ msgstr "Značky" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Linky Wiki skupín" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Neplatné XML pre zobrazenie architektúry!" diff --git a/addons/document_page/i18n/sl.po b/addons/document_page/i18n/sl.po index df3be345081..e5c48563eeb 100644 --- a/addons/document_page/i18n/sl.po +++ b/addons/document_page/i18n/sl.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-10-30 09:17+0000\n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Predloge wiki-ja" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Strani wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Avtor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Odpri stran" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Meni" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Razdelek" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Zgodovina wiki-ja" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Manjše urejanje" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Vsebina" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Nadmenu" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Skupina wiki-ja" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Naslov" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Vrstice zgodovine" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Uporabite oznako razdelka strani npr. 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Naziv menuja" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Opis" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Informacije o meniju" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Predloga strani" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,295 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Opozorilo" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Datum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Ali želite pripraviti indeks na izbranih straneh? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Strani" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Naredi izbiro?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Področje besedila" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Izdelano" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Opombe" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Povzetek" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Ustvarjeno dne" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Vse zgodovine strani" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Oznaka wiki-ja" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Datum spremembe" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Nastavitve" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Izdelaj indeks" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Ustvari menu" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Ali je to pomembnejše urejanje?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Skupine wiki-ja" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Spremenil" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Kazalo vsebine" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Prekliči" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Razlika" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Potrebuje pregled" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Neveljaven XML za arhitekturo pogleda." - -#~ msgid "Differences" -#~ msgstr "Razlike" - -#~ msgid "Modifications" -#~ msgstr "Spremembe" - -#~ msgid "History" -#~ msgstr "Zgodovina" - -#~ msgid "Tags" -#~ msgstr "Oznake" - -#~ msgid "Child Groups" -#~ msgstr "Podrejene skupine" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Povezave Wiki skupin" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Napačno ime modela v definiciji dejanja." - -#~ msgid "Wiki Configuration" -#~ msgstr "Konfiguracija wiki-ja" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Upravljan je dokumentov - wiki" - -#~ msgid "History Differance" -#~ msgstr "Razlike v zgodovini" - -#~ msgid "Group Home Page" -#~ msgstr "Domača stran skupine" - -#~ msgid "Create a Menu" -#~ msgstr "Ustvari menu" - -#~ msgid "Last Author" -#~ msgstr "Zadnji avtor" - -#~ msgid "Document Management" -#~ msgstr "Upravljanje dokumentov" - -#~ msgid "Wiki Differance" -#~ msgstr "Razlike wiki-ja" - -#~ msgid "Parent Group" -#~ msgstr "Nadrejena skupina" diff --git a/addons/document_page/i18n/sq.po b/addons/document_page/i18n/sq.po index c318c5aa712..f6df8ed1b9e 100644 --- a/addons/document_page/i18n/sq.po +++ b/addons/document_page/i18n/sq.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-08-02 14:43+0000\n" +"PO-Revision-Date: 2012-08-13 12:08+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Albanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,239 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" +msgid "Type" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" diff --git a/addons/document_page/i18n/sr.po b/addons/document_page/i18n/sr.po index 461bca5ee72..3b3f7ea8aef 100644 --- a/addons/document_page/i18n/sr.po +++ b/addons/document_page/i18n/sr.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-08-02 14:49+0000\n" -"Last-Translator: Mantavya Gajjar (Open ERP) \n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki Šablon" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki Strane" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Otvori stranu" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Meni" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sekcija" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki istorija" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Minorena promena" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Sadržaj" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Roditeljski Meni" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki Grupa" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Naslov" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Istorijske Linije" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Upotrebiti kod sekicje strane npr. 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Naziv Menija" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Opis" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Meni Informacije" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Šablon Strane" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,299 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Upozorenje" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Datum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Želite li da kreirate indeks na Odabranim Stranama? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Strane" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Napraviti Sekciju?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Tekstualna zona" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Kreiran" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Beleške" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Sumarno" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Datum Kreiranja" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Sve Istorije Strane" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Datum Promene" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Konfiguracija" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Kreiraj indeks" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Moare da odabere min 1 ili max 2 istorije revizije" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Kreiraj Meni" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Ovo je velika promena?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki Grupe" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modifikovan od strane" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Tabela Sadržaja" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Otkazati" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Razlika" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Potrebna revizija" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "Child Groups" -#~ msgstr "Grupe Deca" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wiki Grupe Linkovi" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Ime Objekta mora da počne sa x_ i ne sme da sarži specijalne karaktere" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Upravljanje Dokumentima - Wiki" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki Konfiguracija" - -#~ msgid "Create a Menu" -#~ msgstr "Kreiraj Meni" - -#~ msgid "History Differance" -#~ msgstr "Istorija Razlika" - -#~ msgid "Group Home Page" -#~ msgstr "Pocetna Stran Grupe" - -#~ msgid "Differences" -#~ msgstr "Razlike" - -#~ msgid "Last Author" -#~ msgstr "Poslednji autor" - -#~ msgid "Document Management" -#~ msgstr "Upravljanje Dokumentima" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Neodgovarajući XML za Arhitekuru Pogleda" - -#~ msgid "Parent Group" -#~ msgstr "Roditeljska Grupa" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki Differance" - -#~ msgid "Modifications" -#~ msgstr "Modifikacije" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Nije pronadjena akcija" - -#~ msgid "History" -#~ msgstr "Istorija" - -#~ msgid "Tags" -#~ msgstr "Tagovi" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Pogrešno ime modela u definiciji akcije." diff --git a/addons/document_page/i18n/sr@latin.po b/addons/document_page/i18n/sr@latin.po index 5b1fef44598..a6dd609306d 100644 --- a/addons/document_page/i18n/sr@latin.po +++ b/addons/document_page/i18n/sr@latin.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-12-23 10:49+0000\n" +"PO-Revision-Date: 2012-08-13 12:14+0000\n" "Last-Translator: qdp (OpenERP) \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki Šablon" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki Strane" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Autor" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Otvori stranu" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Meni" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Sekcija" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki istorija" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Minorena promena" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Sadržaj" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Roditeljski Meni" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki Grupa" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Naslov" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Istorijske Linije" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Upotrebiti kod sekicje strane npr. 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Naziv Menija" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Opis" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Meni Informacije" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Šablon Strane" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,299 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Upozorenje" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Datum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Želite li da kreirate indeks na Odabranim Stranama? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Strane" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Napraviti Sekciju?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Tekstualna zona" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Kreiran" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Beleške" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Sumarno" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Datum Kreiranja" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Sve Istorije Strane" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Datum Promene" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Konfiguracija" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Kreiraj indeks" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "Moare da odabere min 1 ili max 2 istorije revizije" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Kreiraj Meni" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Ovo je velika promena?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki Grupe" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Modifikovan od strane" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Tabela Sadržaja" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Otkazati" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Razlika" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Potrebna revizija" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Ime Objekta mora da počne sa x_ i ne sme da sarži specijalne karaktere" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Pogrešno ime modela u definiciji akcije." - -#~ msgid "Document Management - Wiki" -#~ msgstr "Upravljanje Dokumentima - Wiki" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Neodgovarajući XML za Arhitekuru Pogleda" - -#~ msgid "Child Groups" -#~ msgstr "Grupe Deca" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wiki Grupe Linkovi" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki Konfiguracija" - -#~ msgid "Create a Menu" -#~ msgstr "Kreiraj Meni" - -#~ msgid "History Differance" -#~ msgstr "Istorija Razlika" - -#~ msgid "Group Home Page" -#~ msgstr "Pocetna Stran Grupe" - -#~ msgid "Differences" -#~ msgstr "Razlike" - -#~ msgid "Last Author" -#~ msgstr "Poslednji autor" - -#~ msgid "Document Management" -#~ msgstr "Upravljanje Dokumentima" - -#~ msgid "Parent Group" -#~ msgstr "Roditeljska Grupa" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki Differance" - -#~ msgid "Modifications" -#~ msgstr "Modifikacije" - -#, python-format -#~ msgid "No action found" -#~ msgstr "Nije pronadjena akcija" - -#~ msgid "History" -#~ msgstr "Istorija" - -#~ msgid "Tags" -#~ msgstr "Tagovi" diff --git a/addons/document_page/i18n/sv.po b/addons/document_page/i18n/sv.po index fa378db1bd3..7bc94e30a56 100644 --- a/addons/document_page/i18n/sv.po +++ b/addons/document_page/i18n/sv.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-11-22 20:29+0000\n" -"Last-Translator: Olivier Dony (OpenERP) \n" +"PO-Revision-Date: 2012-08-13 12:12+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wikimall" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wikisidor" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Författare" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Open Page" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Meny" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Område" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wikihistorik" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Mindre förändring" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Innehåll" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Huvudmeny" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wikigrupp" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Rubrik" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Historikrader" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Varning !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "Använd sidområdes kod t ex 1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Menynamn" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Beskrivning" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Menyinformation" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Sidmall" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,299 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Warning" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Datum" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Vill du skapa ett index för aktuella sidor? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Sidor" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Skapa område?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Textområde" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Skapad den" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Anteckningar" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Sammanfattning" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Skapad datum" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "All sidohistorik" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "Wiki Id" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Ändringsdatum" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Konfigurering" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Skapa index" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "You need to select minimum 1 or maximum 2 history revision!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Skapa meny" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Är detta en större redigering?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wikigrupper" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Ändrad av" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Innehållsförteckning" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Avbryt" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Skillnad" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Behöver revideras" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "Child Groups" -#~ msgstr "Undergrupper" - -#~ msgid "Modifications" -#~ msgstr "Ändringar" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wikikonfiguration" - -#~ msgid "Create a Menu" -#~ msgstr "Skapa en meny" - -#~ msgid "Differences" -#~ msgstr "Skillnader" - -#~ msgid "Last Author" -#~ msgstr "Senaste författare" - -#~ msgid "Parent Group" -#~ msgstr "Huvudgrupp" - -#~ msgid "History Differance" -#~ msgstr "Hiskorisk skillnad" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wikigrupplänkar" - -#~ msgid "History" -#~ msgstr "Historik" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Dokumenthantering - Wiki" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki skillnad" - -#~ msgid "Tags" -#~ msgstr "Etiketter" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "Invalid model name in the action definition." - -#~ msgid "Group Home Page" -#~ msgstr "Group Home Page" - -#~ msgid "Document Management" -#~ msgstr "Document Management" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Invalid XML for View Architecture!" - -#, python-format -#~ msgid "No action found" -#~ msgstr "No action found" diff --git a/addons/document_page/i18n/tlh.po b/addons/document_page/i18n/tlh.po index 21c5a3b232b..6eeb7156829 100644 --- a/addons/document_page/i18n/tlh.po +++ b/addons/document_page/i18n/tlh.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-02-03 06:24+0000\n" +"PO-Revision-Date: 2012-08-13 12:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,239 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" +msgid "Type" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" diff --git a/addons/document_page/i18n/tr.po b/addons/document_page/i18n/tr.po index 39753a574bb..5c80ed29d1c 100644 --- a/addons/document_page/i18n/tr.po +++ b/addons/document_page/i18n/tr.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-02-10 21:07+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"PO-Revision-Date: 2012-08-13 12:12+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-11 05:09+0000\n" -"X-Generator: Launchpad (build 14771)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki Şablonu" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki Sayfaları" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Yazan" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Sayfa Aç" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Menü" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Bölüm" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki Geçmiş" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Ufak Düzenleme" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "İçerik" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Son Düzenleyen" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Ana Menü" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "Bu sayfada bölüm yok" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki Toplulugu" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Başlık" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Uyarı !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Menu İsmi" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Tanım" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Menü Bilgisi" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Ağaç" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Sayfa Şablonu" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Anahtar kelimeler" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,270 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Uyarı" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Tarih" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Seçili sayfada dizin yaratmak istediginizden emin misiniz? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Fark" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Sayfalar" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "Grup Tanımlaması" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Metin alanı" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "Meta Bilgileri" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Oluşturulma" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Notlar" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "Liste" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Özet" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Oluşturulma Tarihi" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "Kapat" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "Ana Sayfa" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Değiştirilme Tarihi" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Yapılandırma" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "dizin yarat" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "Grupla..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Menü Oluştur" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "Başlık" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Düzenleyen" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "İçerik Tablosu" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Vazgeç" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Farklar" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "Arama Sayfası" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Görüntüleme mimarisi için Geçersiz XML" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "Nesne adı x_ ile başlamalı ve özel karakter içermemelidir!" - -#~ msgid "Create a Menu" -#~ msgstr "Menü Oluştur" - -#~ msgid "Modifications" -#~ msgstr "Değişiklikler" - -#~ msgid "History" -#~ msgstr "Geçmiş" - -#~ msgid "Tags" -#~ msgstr "Etiketler" - -#~ msgid "Document Management - Wiki" -#~ msgstr "Belge Yönetimi - Wiki" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wiki Grupları Bağlantıları" - -#~ msgid "Differences" -#~ msgstr "Degişiklikler" - -#~ msgid "Last Author" -#~ msgstr "Son Yazar" diff --git a/addons/document_page/i18n/uk.po b/addons/document_page/i18n/uk.po index da814545adc..95a1cccd166 100644 --- a/addons/document_page/i18n/uk.po +++ b/addons/document_page/i18n/uk.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-01-25 23:33+0000\n" +"PO-Revision-Date: 2012-08-13 12:11+0000\n" "Last-Translator: Eugene Babiy \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Шаблон Wiki" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Сторінки Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Автор" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Відкрити Сторінку" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Меню" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Розділ" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Історія Wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Незначна зміна" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Вміст" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Батьківське Меню" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Група Wiki" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Заголовок" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "Рядки Історії" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Назва Меню" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Опис" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Інформація Меню" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "Шаблон Сторінки" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,289 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Дата" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "Хочете створити Індекс на Вибрані Сторінки ? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Сторінки" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "Створити Секцію ?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "Текстове поле" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Створено" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "Примітки" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "Підсумок" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "Дата Створення" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "Вся Історія Сторінки" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "Дата Зміни" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "Налаштування" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "Створити Індекс" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "Створити Меню" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "Це основна зміна ?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Групи Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "Змінив" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "Зміст" - -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +msgid "Type" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" + +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "Скасувати" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "Відмінність" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "Потребує Перегляду" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "" -#~ "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Адреси Груп Wiki" - -#~ msgid "Child Groups" -#~ msgstr "Дочірна Група" - -#~ msgid "Wiki Configuration" -#~ msgstr "Налаштування Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "Створити Меню" - -#~ msgid "History Differance" -#~ msgstr "Історія Відмінностей" - -#~ msgid "Group Home Page" -#~ msgstr "Домашня Сторінка Групи" - -#~ msgid "Last Author" -#~ msgstr "Останній Автор" - -#~ msgid "Differences" -#~ msgstr "Відмінності" - -#~ msgid "Document Management" -#~ msgstr "Управління Документом" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Неправильний XML для Архітектури Вигляду!" - -#~ msgid "Parent Group" -#~ msgstr "Батьківська Група" - -#~ msgid "Wiki Differance" -#~ msgstr "Відмінності Wiki" - -#~ msgid "Modifications" -#~ msgstr "Варіації" - -#~ msgid "History" -#~ msgstr "Історія" - -#~ msgid "Tags" -#~ msgstr "Теги" diff --git a/addons/document_page/i18n/vi.po b/addons/document_page/i18n/vi.po index c1362141938..53ca8599d2e 100644 --- a/addons/document_page/i18n/vi.po +++ b/addons/document_page/i18n/vi.po @@ -8,189 +8,168 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2010-08-02 14:43+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2012-08-13 12:09+0000\n" +"Last-Translator: Antony Lesuisse (OpenERP) \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Các trang Wiki" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "Phương pháp Hiển thị" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "Tác giả" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "Mở Trang" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "Trình đơn" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "Phần" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Lịch sử Wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "Chỉnh sửa nhỏ" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "Nội dung" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "Người đóng góp cuối" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "Trình đơn cha" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "Tiêu đề" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "Nội dung Trang" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "Cảnh báo !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "Tên Trình đơn" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "Mô tả" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "Thông tin Trình đơn" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "Lịch sử Trang" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "Cấu trúc cây" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "Các từ khoá" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -198,239 +177,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "Cảnh báo" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "Ngày" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "Khác biệt" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "Các trang" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "Tạo trên" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" +msgid "Type" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" diff --git a/addons/document_page/i18n/zh_CN.po b/addons/document_page/i18n/zh_CN.po index 3b8642229f2..44468e289a1 100644 --- a/addons/document_page/i18n/zh_CN.po +++ b/addons/document_page/i18n/zh_CN.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2012-02-08 03:35+0000\n" +"PO-Revision-Date: 2012-08-13 12:13+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" -msgstr "Wiki模板" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" +msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" -msgstr "Wiki页" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" +msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "显示方式" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "作者" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "打开页" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "菜单" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "章节" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "指定此页面是否具有一个目录" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" -msgstr "Wiki日志" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" +msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "小编辑" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "内容" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "子页面" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "上级页面" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "最近的贡献者" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "上级菜单" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "该页面没有分节" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "Wiki组" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "标题" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "向导创建菜单" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "日志明细" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "页面内容" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "警告 !" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "这修订没改变什么" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "用户页段代码如1.2.1" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "菜单名" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "描述" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "需要复审" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "表示这页面需要复审,增加对其他贡献者的关注" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "菜单信息" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "页面编辑日志" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "树形列表" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "页模板" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "关键字" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -199,310 +178,229 @@ msgstr "" "wiki页面你可以与同事共享构思和问题,你可以创建一新文档它能链接一个服务的应用如:客户关系管理,销售等。\r\n" "基于wiki编辑的文件格式,你可以用关键字去轻松访问你的wiki页面。" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "警告" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "如果显示的方式是首页,需要选择首页" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "日期" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "想在选择的页创建一索引? " -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "差异" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "页面" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "组描述" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "想打开一个wiki页面? " -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "生成章节?" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "文本区" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "元信息" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "创建在" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "备注" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "列表" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "摘要" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "创建日期" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "所有页的历史" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" -msgstr "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" +msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "定义组菜单创建后的默认行为" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "关闭" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" -msgstr "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" +msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "wiki ID" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "首页" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "允许您在本主题链接其他页面" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "修改信息" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "主题,也叫wiki组" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "Wiki" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "修改日期" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "设置" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "创建索引" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "您需要选定最少一个,最多两个修订的日志!" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "分组..." -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "创建菜单" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "这是一项重大修改?" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" -msgstr "Wiki组" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" +msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "主题" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "修改于" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" -msgstr "目录" +msgid "Type" +msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" -msgstr "打开wiki页面" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" +msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "打开页面" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "取消" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "差异" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "需要复审" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "正在等待复审的页面" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "搜索页面" - -#~ msgid "Document Management" -#~ msgstr "文档管理" - -#, python-format -#~ msgid "No action found" -#~ msgstr "找不到动作" - -#~ msgid "Modifications" -#~ msgstr "修改" - -#~ msgid "" -#~ "The Object name must start with x_ and not contain any special character !" -#~ msgstr "对象名必须是以x_开头并且不能含有特殊字符" - -#~ msgid "Wiki Groups Links" -#~ msgstr "Wiki组链接" - -#~ msgid "Child Groups" -#~ msgstr "子组" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki设置" - -#~ msgid "Invalid model name in the action definition." -#~ msgstr "在动作定义中无效的模块名" - -#~ msgid "Document Management - Wiki" -#~ msgstr "文档管理 - Wiki" - -#~ msgid "Create a Menu" -#~ msgstr "创建一菜单" - -#~ msgid "History Differance" -#~ msgstr "历史递延" - -#~ msgid "Group Home Page" -#~ msgstr "组首页" - -#~ msgid "Last Author" -#~ msgstr "最后作者" - -#~ msgid "Differences" -#~ msgstr "分歧" - -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "无效的视图结构xml文件" - -#~ msgid "Parent Group" -#~ msgstr "父组" - -#~ msgid "Wiki Differance" -#~ msgstr "Wiki分歧" - -#~ msgid "History" -#~ msgstr "历史" - -#~ msgid "Tags" -#~ msgstr "标签" - -#~ msgid "" -#~ "\n" -#~ "The base module to manage documents(wiki)\n" -#~ "\n" -#~ "keep track for the wiki groups, pages, and history\n" -#~ " " -#~ msgstr "" -#~ "\n" -#~ "这基础模块用于管理文档(wiki)\n" -#~ "跟踪wiki组,页面和日志\n" -#~ " " diff --git a/addons/document_page/i18n/zh_TW.po b/addons/document_page/i18n/zh_TW.po index 781fc87340c..abfa870b47d 100644 --- a/addons/document_page/i18n/zh_TW.po +++ b/addons/document_page/i18n/zh_TW.po @@ -7,189 +7,168 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 01:37+0100\n" -"PO-Revision-Date: 2009-01-23 17:16+0000\n" +"PO-Revision-Date: 2012-08-13 12:08+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-02-09 06:46+0000\n" -"X-Generator: Launchpad (build 14763)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:46+0000\n" +"X-Generator: Launchpad (build 15791)\n" -#. module: wiki -#: field:wiki.groups,template:0 -msgid "Wiki Template" +#. module: document_page +#: field:document.page.type,template:0 +msgid "Document page Template" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki -#: model:ir.ui.menu,name:wiki.menu_action_wiki_wiki -msgid "Wiki Pages" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki +#: model:ir.ui.menu,name:document_page.menu_action_wiki_wiki +msgid "Document Pages" msgstr "" -#. module: wiki -#: field:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,method:0 msgid "Display Method" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,create_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,create_uid:0 msgid "Author" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_wiki_page_open -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_wiki_page_open +#: view:document.page.page.open:0 msgid "Open Page" msgstr "" -#. module: wiki -#: field:wiki.groups,menu_id:0 +#. module: document_page +#: field:document.page,menu_id:0 msgid "Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,section:0 -msgid "Section" -msgstr "" - -#. module: wiki -#: help:wiki.wiki,toc:0 +#. module: document_page +#: help:document.page,type:0 msgid "Indicates that this pages have a table of contents or not" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_history view:wiki.wiki.history:0 -msgid "Wiki History" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_history view:document.page.history:0 +msgid "Document page History" msgstr "" -#. module: wiki -#: field:wiki.wiki,minor_edit:0 +#. module: document_page +#: field:document.page,minor_edit:0 msgid "Minor edit" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,text_area:0 +#. module: document_page +#: view:document.page:0 field:document.page,content:0 msgid "Content" msgstr "" -#. module: wiki -#: field:wiki.wiki,child_ids:0 +#. module: document_page +#: field:document.page,child_ids:0 msgid "Child Pages" msgstr "" -#. module: wiki -#: field:wiki.wiki,parent_id:0 +#. module: document_page +#: field:document.page,parent_id:0 msgid "Parent Page" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 field:wiki.wiki,write_uid:0 +#. module: document_page +#: view:document.page:0 field:document.page,write_uid:0 msgid "Last Contributor" msgstr "" -#. module: wiki -#: field:wiki.create.menu,menu_parent_id:0 +#. module: document_page +#: field:document.page.create.menu,menu_parent_id:0 msgid "Parent Menu" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_make_index.py:52 -#, python-format -msgid "There is no section in this Page" -msgstr "" - -#. module: wiki -#: field:wiki.groups,name:0 view:wiki.wiki:0 field:wiki.wiki,group_id:0 -msgid "Wiki Group" -msgstr "" - -#. module: wiki -#: field:wiki.wiki,name:0 +#. module: document_page +#: field:document.page,name:0 msgid "Title" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_create_menu +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_create_menu msgid "Wizard Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki,history_id:0 +#. module: document_page +#: field:document.page,history_id:0 msgid "History Lines" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Page Content" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 +#. module: document_page +#: code:addons/document_page/document_page.py:237 code:addons/wiki/wizard/wiki_make_index.py:52 #, python-format msgid "Warning !" msgstr "" -#. module: wiki -#: code:addons/wiki/wiki.py:237 +#. module: document_page +#: code:addons/document_page/document_page.py:237 #, python-format msgid "There are no changes in revisions" msgstr "" -#. module: wiki -#: help:wiki.wiki,section:0 -msgid "Use page section code like 1.2.1" -msgstr "" - -#. module: wiki -#: field:wiki.create.menu,menu_name:0 +#. module: document_page +#: field:document.page.create.menu,menu_name:0 msgid "Menu Name" msgstr "" -#. module: wiki -#: field:wiki.groups,notes:0 +#. module: document_page +#: field:document.page.type,notes:0 msgid "Description" msgstr "" -#. module: wiki -#: field:wiki.wiki,review:0 +#. module: document_page +#: field:document.page,review:0 msgid "Needs Review" msgstr "" -#. module: wiki -#: help:wiki.wiki,review:0 +#. module: document_page +#: help:document.page,review:0 msgid "" "Indicates that this page should be reviewed, raising the attention of other " "contributors" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 msgid "Menu Information" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_wiki_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_wiki_history msgid "Page History" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "Tree" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Page Template" msgstr "" -#. module: wiki -#: field:wiki.wiki,tags:0 +#. module: document_page +#: field:document.page,tags:0 msgid "Keywords" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,help:wiki.action_wiki +#. module: document_page +#: model:ir.actions.act_window,help:document_page.action_wiki msgid "" "With Wiki Pages you can share ideas and questions with your coworkers. You " "can create a new document that can be linked to one or several applications " @@ -197,239 +176,229 @@ msgid "" "There is a basic wiki editing for text format." msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "Warning" msgstr "" -#. module: wiki -#: help:wiki.groups,home:0 +#. module: document_page +#: help:document.page.type,home:0 msgid "Required to select home page if display method is Home Page" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,create_date:0 +#. module: document_page +#: field:document.page.history,create_date:0 msgid "Date" msgstr "" -#. module: wiki -#: view:wiki.make.index:0 +#. module: document_page +#: view:document.page.make.index:0 msgid "Want to create a Index on Selected Pages ? " msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff -#: model:ir.actions.act_window,name:wiki.action_view_wiki_show_diff_values -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff +#: model:ir.actions.act_window,name:document_page.action_view_wiki_show_diff_values +#: view:wizard.document.page.history.show_diff:0 msgid "Difference" msgstr "" -#. module: wiki -#: field:wiki.groups,page_ids:0 +#. module: document_page +#: field:document.page.type,page_ids:0 msgid "Pages" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Group Description" msgstr "" -#. module: wiki -#: view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.page.open:0 msgid "Want to open a wiki page? " msgstr "" -#. module: wiki -#: field:wiki.groups,section:0 -msgid "Make Section ?" -msgstr "" - -#. module: wiki -#: field:wiki.wiki.history,text_area:0 +#. module: document_page +#: field:document.page.history,content:0 msgid "Text area" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Meta Information" msgstr "" -#. module: wiki -#: field:wiki.wiki,create_date:0 +#. module: document_page +#: field:document.page,create_date:0 msgid "Created on" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:document.page.type:0 view:wizard.document.page.history.show_diff:0 msgid "Notes" msgstr "" -#. module: wiki -#: selection:wiki.groups,method:0 +#. module: document_page +#: selection:document.page.type,method:0 msgid "List" msgstr "" -#. module: wiki -#: field:wiki.wiki,summary:0 field:wiki.wiki.history,summary:0 +#. module: document_page +#: field:document.page,summary:0 field:document.page.history,edit_summary:0 msgid "Summary" msgstr "" -#. module: wiki -#: field:wiki.groups,create_date:0 +#. module: document_page +#: field:document.page.groups,create_date:0 msgid "Created Date" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_history +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_history msgid "All Page Histories" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki -msgid "wiki.wiki" +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki +msgid "document.page" msgstr "" -#. module: wiki -#: help:wiki.groups,method:0 +#. module: document_page +#: help:document.page.type,method:0 msgid "Define the default behaviour of the menu created on this group" msgstr "" -#. module: wiki -#: view:wizard.wiki.history.show_diff:0 +#. module: document_page +#: view:wizard.document.page.history.show_diff:0 msgid "Close" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wizard_wiki_history_show_diff -msgid "wizard.wiki.history.show_diff" +#. module: document_page +#: model:ir.model,name:document_page.model_wizard_wiki_history_show_diff +msgid "wizard.document.page.history.show_diff" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,wiki_id:0 +#. module: document_page +#: field:document.page.history,wiki_id:0 msgid "Wiki Id" msgstr "" -#. module: wiki -#: field:wiki.groups,home:0 selection:wiki.groups,method:0 +#. module: document_page +#: field:document.page.type,home:0 selection:document.page.type,method:0 msgid "Home Page" msgstr "" -#. module: wiki -#: help:wiki.wiki,parent_id:0 +#. module: document_page +#: help:document.page,parent_id:0 msgid "Allows you to link with the other page with in the current topic" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Modification Information" msgstr "" -#. module: wiki -#: help:wiki.wiki,group_id:0 -msgid "Topic, also called Wiki Group" -msgstr "" - -#. module: wiki -#: model:ir.ui.menu,name:wiki.menu_wiki_configuration view:wiki.wiki:0 +#. module: document_page +#: model:ir.ui.menu,name:document_page.menu_wiki_configuration view:document.page:0 msgid "Wiki" msgstr "" -#. module: wiki -#: field:wiki.wiki,write_date:0 +#. module: document_page +#: field:document.page,write_date:0 msgid "Modification Date" msgstr "" -#. module: wiki -#: view:wiki.groups:0 +#. module: document_page +#: view:document.page.type:0 msgid "Configuration" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index -#: model:ir.actions.act_window,name:wiki.action_view_wiki_make_index_values -#: model:ir.model,name:wiki.model_wiki_make_index view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index +#: model:ir.actions.act_window,name:document_page.action_view_wiki_make_index_values +#: model:ir.model,name:document_page.model_wiki_make_index view:document.page.make.index:0 msgid "Create Index" msgstr "" -#. module: wiki -#: code:addons/wiki/wizard/wiki_show_diff.py:54 +#. module: document_page +#: code:addons/document_page/wizard/document_page_show_diff.py:54 #, python-format msgid "You need to select minimum 1 or maximum 2 history revision!" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Group By..." msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_create_menu -#: view:wiki.create.menu:0 view:wiki.groups:0 view:wiki.make.index:0 +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_create_menu +#: view:document.page.create.menu:0 view:document.page.type:0 view:document.page.make.index:0 msgid "Create Menu" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,minor_edit:0 +#. module: document_page +#: field:document.page.history,minor_edit:0 msgid "This is a major edit ?" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_groups -#: model:ir.actions.act_window,name:wiki.action_wiki_groups_browse -#: model:ir.model,name:wiki.model_wiki_groups -#: model:ir.ui.menu,name:wiki.menu_action_wiki_groups view:wiki.groups:0 -msgid "Wiki Groups" +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_groups +#: model:ir.actions.act_window,name:document_page.action_wiki_groups_browse +#: model:ir.model,name:document_page.model_wiki_groups +#: model:ir.ui.menu,name:document_page.menu_action_wiki_groups view:document.page.type:0 +msgid "Document Types" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Topic" msgstr "" -#. module: wiki -#: field:wiki.wiki.history,write_uid:0 +#. module: document_page +#: field:document.page.history,write_uid:0 msgid "Modify By" msgstr "" -#. module: wiki -#: code:addons/wiki/web/widgets/wikimarkup/__init__.py:1981 -#: field:wiki.wiki,toc:0 +#. module: document_page +#: code:addons/document_page/web/widgets/wikimarkup/__init__.py:1981 +#: field:document.page,type:0 #, python-format -msgid "Table of Contents" +msgid "Type" msgstr "" -#. module: wiki -#: view:wiki.groups:0 view:wiki.wiki.page.open:0 -msgid "Open Wiki Page" +#. module: document_page +#: view:document.page.type:0 view:document.page.page.open:0 +msgid "Open Document Page" msgstr "" -#. module: wiki -#: model:ir.model,name:wiki.model_wiki_wiki_page_open +#. module: document_page +#: model:ir.model,name:document_page.model_wiki_wiki_page_open msgid "wiz open page" msgstr "" -#. module: wiki -#: view:wiki.create.menu:0 view:wiki.make.index:0 view:wiki.wiki.page.open:0 +#. module: document_page +#: view:document.page.create.menu:0 view:document.page.make.index:0 view:document.page.page.open:0 msgid "Cancel" msgstr "" -#. module: wiki -#: field:wizard.wiki.history.show_diff,file_path:0 +#. module: document_page +#: field:wizard.document.page.history.show_diff,file_path:0 msgid "Diff" msgstr "" -#. module: wiki -#: view:wiki.wiki:0 +#. module: document_page +#: view:document.page:0 msgid "Need Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.action_wiki_review +#. module: document_page +#: model:ir.actions.act_window,name:document_page.action_wiki_review msgid "Pages Waiting Review" msgstr "" -#. module: wiki -#: model:ir.actions.act_window,name:wiki.act_wiki_group_open +#. module: document_page +#: model:ir.actions.act_window,name:document_page.act_wiki_group_open msgid "Search Page" msgstr "" diff --git a/addons/pad_project/i18n/pt_BR.po b/addons/pad_project/i18n/pt_BR.po index 9d803b9c8d6..8a16433e1f6 100644 --- a/addons/pad_project/i18n/pt_BR.po +++ b/addons/pad_project/i18n/pt_BR.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-13 05:25+0000\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" "X-Generator: Launchpad (build 15791)\n" #. module: pad_project diff --git a/addons/product/i18n/ar.po b/addons/product/i18n/ar.po index 4a0a913e2fc..f3638639691 100644 --- a/addons/product/i18n/ar.po +++ b/addons/product/i18n/ar.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -24,7 +24,7 @@ msgstr "" #. module: product #: field:product.packaging,rows:0 msgid "Number of Layers" -msgstr "" +msgstr "عدد الطبقات" #. module: product #: constraint:product.pricelist.item:0 @@ -32,6 +32,8 @@ msgid "" "Error ! You cannot assign the Main Pricelist as Other Pricelist in PriceList " "Item!" msgstr "" +"خطأ! لا يمكنك التسجيل في قائمة الأسعار الرئيسية أو أي قائمة أسعار أخرى في " +"قائمة أسعار المنتجات" #. module: product #: help:product.pricelist.item,product_tmpl_id:0 @@ -55,19 +57,19 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "قابل للبيع" #. module: product #: model:product.template,name:product.product_product_mb2_product_template msgid "Mainboard ASUStek A7V8X-X" -msgstr "" +msgstr "اللوحة الأم ASUStek A7V8X-X" #. module: product #: help:product.template,seller_qty:0 msgid "This is minimum quantity to purchase from Main Supplier." -msgstr "" +msgstr "وهذا هو الحد الأدنى لشراء كمية من المورد الرئيسي." #. module: product #: model:product.uom,name:product.uom_day @@ -82,7 +84,7 @@ msgstr "وحدة القياس" #. module: product #: model:product.template,name:product.product_product_pc2_product_template msgid "Basic+ PC (assembly on order)" -msgstr "" +msgstr "الأساسي + جهاز حاسوب (التجميع عند الطلب)" #. module: product #: field:product.product,incoming_qty:0 @@ -99,7 +101,7 @@ msgstr "" #. module: product #: field:product.template,seller_qty:0 msgid "Supplier Quantity" -msgstr "" +msgstr "كمية المورد" #. module: product #: selection:product.template,mes_type:0 @@ -186,12 +188,12 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_20_product_template msgid "HDD on demand" -msgstr "" +msgstr "هاردسك عند الطلب" #. module: product #: field:product.price_list,price_list:0 msgid "PriceList" -msgstr "" +msgstr "قائمة الأسعار" #. module: product #: view:product.template:0 @@ -240,7 +242,7 @@ msgstr "قائمة اسعار البيع" #: view:product.template:0 #: field:product.template,type:0 msgid "Product Type" -msgstr "" +msgstr "نوع المنتج" #. module: product #: model:ir.actions.act_window,help:product.product_form_config_action @@ -291,7 +293,7 @@ msgstr "" #. module: product #: field:product.template,seller_id:0 msgid "Main Supplier" -msgstr "" +msgstr "المورد الرئيسي" #. module: product #: model:ir.actions.act_window,name:product.product_ul_form_action @@ -461,7 +463,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "" @@ -749,7 +751,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "البرامج الملحقة" @@ -1233,7 +1235,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "الخدمات" @@ -1320,7 +1322,7 @@ msgid "Minimal Quantity" msgstr "" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "حاسوب" @@ -2309,7 +2311,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "خاص" diff --git a/addons/product/i18n/bg.po b/addons/product/i18n/bg.po index 3942ea95dc7..317e5e6849c 100644 --- a/addons/product/i18n/bg.po +++ b/addons/product/i18n/bg.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -58,7 +58,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Продаваем" @@ -477,7 +477,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Крайна дата на валидност на тази версия на ценоразпис." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Всички продукти" @@ -776,7 +776,7 @@ msgstr "" "такива или в противен случай мерните единице по подразбиране за продукта" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Аксесоари" @@ -1281,7 +1281,7 @@ msgstr "" "Основен доставчик, който е най-висок приоритет в списък на доставчиците." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Услуги" @@ -1371,7 +1371,7 @@ msgid "Minimal Quantity" msgstr "Минимално количество" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2387,7 +2387,7 @@ msgid "Category Type" msgstr "Вид категория" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Лично" diff --git a/addons/product/i18n/bs.po b/addons/product/i18n/bs.po index d64e3f0d10b..bbd96fcd370 100644 --- a/addons/product/i18n/bs.po +++ b/addons/product/i18n/bs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -57,7 +57,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Za prodaju" @@ -468,7 +468,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Datum završetka važenja ove verzije cjenovnika." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Svi proizvodi" @@ -756,7 +756,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Dodatni alati" @@ -1250,7 +1250,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Usluge" @@ -1337,7 +1337,7 @@ msgid "Minimal Quantity" msgstr "Minimalna količina" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2333,7 +2333,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privatno" diff --git a/addons/product/i18n/ca.po b/addons/product/i18n/ca.po index 9236bd1fe67..8eb8ee9aec0 100644 --- a/addons/product/i18n/ca.po +++ b/addons/product/i18n/ca.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Vendible" @@ -480,7 +480,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Data final de validesa d'aquesta versió de tarifa." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Tots els productes" @@ -786,7 +786,7 @@ msgstr "" "o en la UdM per defecte del producte en cas contrari." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accessoris" @@ -1309,7 +1309,7 @@ msgstr "" "Proveïdor principal que té la prioritat més alta en la llista de proveïdors." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Serveis" @@ -1399,7 +1399,7 @@ msgid "Minimal Quantity" msgstr "Quantitat mínima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2430,7 +2430,7 @@ msgid "Category Type" msgstr "Tipus de categoria" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privat" diff --git a/addons/product/i18n/cs.po b/addons/product/i18n/cs.po index a06c72c9744..f4449e9a5b7 100644 --- a/addons/product/i18n/cs.po +++ b/addons/product/i18n/cs.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" "X-Poedit-Language: Czech\n" #. module: product @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Prodejné" @@ -468,7 +468,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Datum platnosti pro tuto verzi ceníku do kdy je platný." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Všechny výrobky" @@ -762,7 +762,7 @@ msgstr "" "výchozí Měrná jednotka pro výrobek" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Příslušenství" @@ -1253,7 +1253,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Hlavní dodavatel, který má nejvyšší prioritu v Seznamu dodavatelů." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Služby" @@ -1342,7 +1342,7 @@ msgid "Minimal Quantity" msgstr "Minimální množství" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2336,7 +2336,7 @@ msgid "Category Type" msgstr "Typ kategorie" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Soukromé" diff --git a/addons/product/i18n/da.po b/addons/product/i18n/da.po index 261145c6c7d..2183d47b9ee 100644 --- a/addons/product/i18n/da.po +++ b/addons/product/i18n/da.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -56,7 +56,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "" @@ -462,7 +462,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "" @@ -750,7 +750,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "" @@ -1234,7 +1234,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "" @@ -1321,7 +1321,7 @@ msgid "Minimal Quantity" msgstr "" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2307,7 +2307,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/product/i18n/de.po b/addons/product/i18n/de.po index d6722ba474f..3734aaf15c0 100644 --- a/addons/product/i18n/de.po +++ b/addons/product/i18n/de.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -65,7 +65,7 @@ msgstr "" "In allen anderen Fällen: Die Menge auf internen Lägern" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Fertigwaren" @@ -500,7 +500,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Enddatum für die Gültigkeit dieser Preisliste" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Alle Produkte" @@ -817,7 +817,7 @@ msgstr "" "hinterlegt" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accessories" @@ -1347,7 +1347,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Hauptlieferant mit höchster Priorität in Lieferantenliste" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Dienstleistungen" @@ -1436,7 +1436,7 @@ msgid "Minimal Quantity" msgstr "Min. Menge" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2478,7 +2478,7 @@ msgid "Category Type" msgstr "Kategorie Typ" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privat" diff --git a/addons/product/i18n/el.po b/addons/product/i18n/el.po index 72db794b28a..90ee73de604 100644 --- a/addons/product/i18n/el.po +++ b/addons/product/i18n/el.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -60,7 +60,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Πωλείται" @@ -479,7 +479,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Ημερομηνία λήξης της ισχύς του τιμοκαταλόγου." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Όλα τα προϊόντα" @@ -775,7 +775,7 @@ msgstr "" "προεπιλεγμένη Μονάδα Μέτρησης του προϊόντος" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Αξεσουάρ" @@ -1275,7 +1275,7 @@ msgstr "" "Κύριος Προμηθευτής που έχει υψηλή προτεραιότητα στην Λίστα Προμηθευτών" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Υπηρεσίες" @@ -1362,7 +1362,7 @@ msgid "Minimal Quantity" msgstr "Ελάχιστη Ποσότητα" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2374,7 +2374,7 @@ msgid "Category Type" msgstr "Τύπος Κατηγορίας" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Private" diff --git a/addons/product/i18n/es.po b/addons/product/i18n/es.po index 52ec0d5e776..4641ad40f6d 100644 --- a/addons/product/i18n/es.po +++ b/addons/product/i18n/es.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -70,7 +70,7 @@ msgstr "" "ubicación de tipo \"interna\"" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Vendible" @@ -506,7 +506,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Fecha de fin de validez de esta versión de tarifa." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Todos los productos" @@ -827,7 +827,7 @@ msgstr "" "existe o en la UdM por defecto del producto en caso contrario." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accesorios" @@ -1362,7 +1362,7 @@ msgstr "" "proveedores." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Servicios" @@ -1452,7 +1452,7 @@ msgid "Minimal Quantity" msgstr "Cantidad mínima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2491,7 +2491,7 @@ msgid "Category Type" msgstr "Tipo categoría" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privado" diff --git a/addons/product/i18n/es_AR.po b/addons/product/i18n/es_AR.po index 4dfbad5ca06..01e4e9b1821 100644 --- a/addons/product/i18n/es_AR.po +++ b/addons/product/i18n/es_AR.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -58,7 +58,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Vendible" @@ -468,7 +468,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Fecha final de esta versión de lista de precios para ser válida." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Todos los productos" @@ -759,7 +759,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accesorios" @@ -1254,7 +1254,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Servicios" @@ -1341,7 +1341,7 @@ msgid "Minimal Quantity" msgstr "Cantidad mínima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2338,7 +2338,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privado" diff --git a/addons/product/i18n/es_CL.po b/addons/product/i18n/es_CL.po index 8f49df6edba..8252e1cdbe8 100644 --- a/addons/product/i18n/es_CL.po +++ b/addons/product/i18n/es_CL.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Vendible" @@ -475,7 +475,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Fecha de fin de validez de esta versión de tarifa." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Todos los productos" @@ -775,7 +775,7 @@ msgstr "" "existe o en la UdM por defecto del producto en caso contrario." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accesorios" @@ -1283,7 +1283,7 @@ msgstr "" "proveedores." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Servicios" @@ -1373,7 +1373,7 @@ msgid "Minimal Quantity" msgstr "Cantidad mínima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2403,7 +2403,7 @@ msgid "Category Type" msgstr "Tipo categoría" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privado" diff --git a/addons/product/i18n/es_CR.po b/addons/product/i18n/es_CR.po index 652e0da6b46..ef7bc9c4450 100644 --- a/addons/product/i18n/es_CR.po +++ b/addons/product/i18n/es_CR.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" "Language: \n" #. module: product @@ -71,7 +71,7 @@ msgstr "" "de archivo escribe como \"interna\"." #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Vendible" @@ -506,7 +506,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Fecha de fin de validez de esta versión de tarifa." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Todos los productos" @@ -826,7 +826,7 @@ msgstr "" "existe o en la UdM por defecto del producto en caso contrario." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accesorios" @@ -1359,7 +1359,7 @@ msgstr "" "proveedores." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Servicios" @@ -1449,7 +1449,7 @@ msgid "Minimal Quantity" msgstr "Cantidad mínima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2488,7 +2488,7 @@ msgid "Category Type" msgstr "Tipo categoría" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privado" diff --git a/addons/product/i18n/es_EC.po b/addons/product/i18n/es_EC.po index 97c9398b040..ea8937e84e9 100644 --- a/addons/product/i18n/es_EC.po +++ b/addons/product/i18n/es_EC.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Vendible" @@ -484,7 +484,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Fecha final de esta versión de tarifa para ser válida." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Todos los productos" @@ -790,7 +790,7 @@ msgstr "" "existe o en la UdM por defecto del producto en caso contrario." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accesorios" @@ -1313,7 +1313,7 @@ msgstr "" "proveedores." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Servicios" @@ -1403,7 +1403,7 @@ msgid "Minimal Quantity" msgstr "Cantidad mínima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2437,7 +2437,7 @@ msgid "Category Type" msgstr "Tipo de categoría" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privado" diff --git a/addons/product/i18n/es_PY.po b/addons/product/i18n/es_PY.po index 54c600f99c6..9bd7140da3d 100644 --- a/addons/product/i18n/es_PY.po +++ b/addons/product/i18n/es_PY.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -56,7 +56,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Vendible" @@ -472,7 +472,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Fecha de validez de lista de precios." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Todos los productos" @@ -778,7 +778,7 @@ msgstr "" "existe o en la UdM por defecto del producto en caso contrario." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accesorios" @@ -1301,7 +1301,7 @@ msgstr "" "proveedores." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Servicios" @@ -1391,7 +1391,7 @@ msgid "Minimal Quantity" msgstr "Cantidad Minima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2393,7 +2393,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/product/i18n/et.po b/addons/product/i18n/et.po index 0e49ebe86f6..3bfc41b2135 100644 --- a/addons/product/i18n/et.po +++ b/addons/product/i18n/et.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: code:addons/product/pricelist.py:178 @@ -63,7 +63,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Müüdav" @@ -465,7 +465,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Selle hinnakirja versiooni kehtivuse lõpp" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Kõik tooted" @@ -756,7 +756,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Tarvikud" @@ -1249,7 +1249,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Teenused" @@ -1336,7 +1336,7 @@ msgid "Minimal Quantity" msgstr "Vähim kogus" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2329,7 +2329,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privaatne" diff --git a/addons/product/i18n/eu.po b/addons/product/i18n/eu.po index 41519985dd8..12067767e7a 100644 --- a/addons/product/i18n/eu.po +++ b/addons/product/i18n/eu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -56,7 +56,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "" @@ -462,7 +462,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Produktu guztiak" @@ -750,7 +750,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Osagaiak" @@ -1234,7 +1234,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Zerbitzuak" @@ -1321,7 +1321,7 @@ msgid "Minimal Quantity" msgstr "Kopuru Minimoa" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2309,7 +2309,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Pribatua" diff --git a/addons/product/i18n/fi.po b/addons/product/i18n/fi.po index cf0ec7dc25d..2b529d4f432 100644 --- a/addons/product/i18n/fi.po +++ b/addons/product/i18n/fi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -60,7 +60,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Myyntikelpoinen" @@ -480,7 +480,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Hintalistan version voimassaolon päättymispäivämäärä." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Kaikki tuotteet" @@ -779,7 +779,7 @@ msgstr "" "oletusmittayksikköä." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Lisälaitteet" @@ -1274,7 +1274,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Päätoimittaja jolla on korkein prioriteetti toimittajalistalla." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Palvelut" @@ -1363,7 +1363,7 @@ msgid "Minimal Quantity" msgstr "Vähimmäismäärä" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2395,7 +2395,7 @@ msgid "Category Type" msgstr "Kategorian tyyppi" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Yksityinen" diff --git a/addons/product/i18n/fr.po b/addons/product/i18n/fr.po index 97099dfd695..4a281c0b62c 100644 --- a/addons/product/i18n/fr.po +++ b/addons/product/i18n/fr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: view:product.product:0 @@ -104,7 +104,7 @@ msgstr "" "de stock de type \"interne\"" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "En vente" @@ -540,7 +540,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Date de fin pour la validité de cette liste de prix." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Tous les produits" @@ -861,7 +861,7 @@ msgstr "" "est définie ou pour l'unité de mesure par défaut sinon." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accessoires" @@ -1396,7 +1396,7 @@ msgstr "" "fournisseurs." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Services" @@ -1480,7 +1480,7 @@ msgid "Minimal Quantity" msgstr "Quantité minimale" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2500,7 +2500,7 @@ msgid "Category Type" msgstr "Type de catégorie" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privé" diff --git a/addons/product/i18n/gl.po b/addons/product/i18n/gl.po index fec312f998e..a82ca272886 100644 --- a/addons/product/i18n/gl.po +++ b/addons/product/i18n/gl.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -56,7 +56,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "" @@ -462,7 +462,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "" @@ -750,7 +750,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "" @@ -1234,7 +1234,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "" @@ -1321,7 +1321,7 @@ msgid "Minimal Quantity" msgstr "" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2307,7 +2307,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/product/i18n/hr.po b/addons/product/i18n/hr.po index a6178c4af11..f9cd6377049 100644 --- a/addons/product/i18n/hr.po +++ b/addons/product/i18n/hr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Može se prodavati" @@ -476,7 +476,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Datum do kojeg vrijedi cjenik" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Svi proizvodi" @@ -780,7 +780,7 @@ msgstr "" "artikla ukoliko nabavna JM nije upisana" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Dodatna oprema" @@ -1274,7 +1274,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Glavni dobavljač s najvećim prioritetom u listi dobavljača" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Usluge" @@ -1361,7 +1361,7 @@ msgid "Minimal Quantity" msgstr "Minimalna količina" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2371,7 +2371,7 @@ msgid "Category Type" msgstr "Tip kategorije" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privatno" diff --git a/addons/product/i18n/hu.po b/addons/product/i18n/hu.po index 222d51f65e8..6f9241f2716 100644 --- a/addons/product/i18n/hu.po +++ b/addons/product/i18n/hu.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -60,7 +60,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Értékesíthető" @@ -482,7 +482,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Záró dátum, ameddig ez az árlista verzió érvényes." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Minden termék" @@ -789,7 +789,7 @@ msgstr "" "alapértelmezett mértékegysége vagy bármely mértékegysége más." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Kiegészítők" @@ -1307,7 +1307,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Főszállító, aki a legelső a sorban a szállítók listáján." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Szolgáltatások" @@ -1396,7 +1396,7 @@ msgid "Minimal Quantity" msgstr "Minimum mennyiség" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2436,7 +2436,7 @@ msgid "Category Type" msgstr "Kategóriatípus" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privát" diff --git a/addons/product/i18n/id.po b/addons/product/i18n/id.po index aabd450fffb..478075ac0c4 100644 --- a/addons/product/i18n/id.po +++ b/addons/product/i18n/id.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Bisa Dijual" @@ -479,7 +479,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Tanggal akhir untuk versi daftar harga ini akan valid" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Semua Produk" @@ -784,7 +784,7 @@ msgstr "" "default Ukuran produk lain" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Aksesori" @@ -1305,7 +1305,7 @@ msgstr "" "Supplier utama yang memiliki prioritas tertinggi dalam Daftar Supplier." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Layanan" @@ -1395,7 +1395,7 @@ msgid "Minimal Quantity" msgstr "Kuantitas minimal" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2427,7 +2427,7 @@ msgid "Category Type" msgstr "Jenis Kategori" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Pribadi" diff --git a/addons/product/i18n/it.po b/addons/product/i18n/it.po index 572b2ff0ac8..172cf1374f4 100644 --- a/addons/product/i18n/it.po +++ b/addons/product/i18n/it.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Vendibile" @@ -480,7 +480,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Termine ultimo validità di questa versione del Listino" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Tutti i prodotti." @@ -785,7 +785,7 @@ msgstr "" "fornitore, se esiste, o altrimenti in quella di default del prodotto" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accessori" @@ -1307,7 +1307,7 @@ msgstr "" "Fornitore principale che ha la priorità maggiore nella lista fornitori" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Servizi" @@ -1396,7 +1396,7 @@ msgid "Minimal Quantity" msgstr "Quantità Minima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2430,7 +2430,7 @@ msgid "Category Type" msgstr "Tipo categoria" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privato" diff --git a/addons/product/i18n/ja.po b/addons/product/i18n/ja.po index 1f087eb974f..13ecf2b02f1 100644 --- a/addons/product/i18n/ja.po +++ b/addons/product/i18n/ja.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -61,7 +61,7 @@ msgstr "" "そうでない場合、在庫場所タイプが内部となっている全ての場所に格納されている商品が含まれます。" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "販売可能" @@ -474,7 +474,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "この価格リストのバージョンを有効にするための終了日" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "全製品" @@ -774,7 +774,7 @@ msgid "" msgstr "この価格は仕入先単位のための価格とみなされます。そうでない場合は製品のデフォルト単位の価格です。" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "アクセサリ" @@ -1273,7 +1273,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "仕入先リストの中で最も優先度を持つ主要仕入先" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "サービス" @@ -1360,7 +1360,7 @@ msgid "Minimal Quantity" msgstr "最小数量" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2360,7 +2360,7 @@ msgid "Category Type" msgstr "分類タイプ" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "非公開" diff --git a/addons/product/i18n/ko.po b/addons/product/i18n/ko.po index a9b10a3948a..ff02facde07 100644 --- a/addons/product/i18n/ko.po +++ b/addons/product/i18n/ko.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -56,7 +56,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "판매 가능" @@ -462,7 +462,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "모든 상품" @@ -750,7 +750,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "액세서리" @@ -1238,7 +1238,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "서비스" @@ -1325,7 +1325,7 @@ msgid "Minimal Quantity" msgstr "최소 수량" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2311,7 +2311,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "사적" diff --git a/addons/product/i18n/lt.po b/addons/product/i18n/lt.po index 4d43704020f..c72a3862b2c 100644 --- a/addons/product/i18n/lt.po +++ b/addons/product/i18n/lt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" "Language: lt\n" #. module: product @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Parduodami" @@ -469,7 +469,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Visi produktai" @@ -757,7 +757,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Priedai" @@ -1248,7 +1248,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Paslaugos" @@ -1335,7 +1335,7 @@ msgid "Minimal Quantity" msgstr "Minimalus kiekis" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PK" @@ -2329,7 +2329,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privatus" diff --git a/addons/product/i18n/lv.po b/addons/product/i18n/lv.po index ec7ea984413..622be8c58b8 100644 --- a/addons/product/i18n/lv.po +++ b/addons/product/i18n/lv.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -60,7 +60,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Pārdodams" @@ -482,7 +482,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Beigu datums līdz kuram cenrādis ir derīgs." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Visas preces" @@ -788,7 +788,7 @@ msgstr "" "noteikta, tiek izmantota produktam definētā mērvienība." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accessories" @@ -1286,7 +1286,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Pamatpiegādātājs ar visaugstāko prioritāti piegādātāju sarakstā." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Pakalpojumi" @@ -1375,7 +1375,7 @@ msgid "Minimal Quantity" msgstr "Minimālais daudzums" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2397,7 +2397,7 @@ msgid "Category Type" msgstr "Kategorijas tips" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privāts" diff --git a/addons/product/i18n/mn.po b/addons/product/i18n/mn.po index eb067f3a8ba..4629527264a 100644 --- a/addons/product/i18n/mn.po +++ b/addons/product/i18n/mn.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -68,7 +68,7 @@ msgstr "" "Бусад тохиолдолд  'дотоод' төрөлтэй бүх байрлалыг хамрана." #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Зарж болох" @@ -498,7 +498,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Уг үнийн хувилбарын хүчинтэй байх хугацааны төгсгөл." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Бүх бараа" @@ -816,7 +816,7 @@ msgstr "" "хэмжих нэгжээр үгүй бол барааны хэмжих нэгжээр илэрхийлэгдсэн үнэ юм." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Дагалдах" @@ -1342,7 +1342,7 @@ msgstr "" "урьтамжтай (чухал) нийлүүлэгч юм." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Үйлчилгээ" @@ -1432,7 +1432,7 @@ msgid "Minimal Quantity" msgstr "Хамгийн бага тоо хэмжээ" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2460,7 +2460,7 @@ msgid "Category Type" msgstr "Ангилалын төрөл" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Хувийн" diff --git a/addons/product/i18n/nb.po b/addons/product/i18n/nb.po index 88ed9705d82..7b4b2162133 100644 --- a/addons/product/i18n/nb.po +++ b/addons/product/i18n/nb.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -25,7 +25,7 @@ msgstr "DDR 512MB PC400" #. module: product #: field:product.packaging,rows:0 msgid "Number of Layers" -msgstr "" +msgstr "Antall lag/nivåer" #. module: product #: constraint:product.pricelist.item:0 @@ -42,6 +42,8 @@ msgid "" "Set a template if this rule only apply to a template of product. Keep empty " "for all products" msgstr "" +"Sett en mal hvis denne regelen bare gjelder en mal av produktet. Hold tom " +"for alle produkter" #. module: product #: help:product.product,virtual_available:0 @@ -58,7 +60,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Salgbar" @@ -70,7 +72,7 @@ msgstr "Mainboard ASUStek A7V8X-X" #. module: product #: help:product.template,seller_qty:0 msgid "This is minimum quantity to purchase from Main Supplier." -msgstr "" +msgstr "Dette er minimumsantall som kjøpes fra hovedleverandør." #. module: product #: model:product.uom,name:product.uom_day @@ -98,11 +100,13 @@ msgid "" "This pricelist will be used, instead of the default one, for sales to the " "current partner" msgstr "" +"Denne prislisten vil bli benyttet for salg til partneren i stedet for " +"standardprislisten." #. module: product #: field:product.template,seller_qty:0 msgid "Supplier Quantity" -msgstr "" +msgstr "Leverandørs antall" #. module: product #: selection:product.template,mes_type:0 @@ -147,6 +151,8 @@ msgid "" "The minimal quantity to trigger this rule, expressed in the supplier UoM if " "any or in the default UoM of the product otherrwise." msgstr "" +"Minimumsantallet for å utløse denne regelen, angitt i leverandørs enheter " +"(hvis spesifisert) eller standard vareenhet." #. module: product #: model:product.template,name:product.product_product_24_product_template @@ -165,6 +171,8 @@ msgid "" "Conversion from Product UoM %s to Default UoM %s is not possible as they " "both belong to different Category!." msgstr "" +"Konvertering fra vareenhet %s til standard enhet %s er ikke mulig ettersom " +"enhetene tilhører ulike kategorier!" #. module: product #: model:product.uom,name:product.product_uom_dozen @@ -257,7 +265,7 @@ msgstr "" #. module: product #: view:product.uom:0 msgid " e.g: 1 * (this unit) = ratio * (reference unit)" -msgstr "" +msgstr " f.eks.: 1 * (denne enhet) = faktor * (referanseenhet)" #. module: product #: code:addons/product/product.py:418 @@ -363,7 +371,7 @@ msgstr "Utgående" #. module: product #: selection:product.uom,uom_type:0 msgid "Reference UoM for this category" -msgstr "" +msgstr "Referanseenhet for denne kategorien" #. module: product #: model:product.price.type,name:product.list_price @@ -403,7 +411,7 @@ msgid "" "products, consumables or services. The Product form contains detailed " "information about your products related to procurement logistics, sales " "price, product category, suppliers and so on." -msgstr "" +msgstr "Produkter" #. module: product #: help:product.product,qty_available:0 @@ -469,7 +477,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Sluttdato for gyldighet på, denne prislisteversjonen." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Alle produkter" @@ -573,6 +581,8 @@ msgid "" "Quantity conversions may happen automatically between Units of Measure in " "the same category, according to their respective ratios." msgstr "" +"Antall konverteringer kan skje automatisk mellom måleenheter i samme " +"kategori, ifølge deres respektive forholdstall." #. module: product #: help:product.packaging,width:0 @@ -757,7 +767,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Tilbehør" @@ -1212,7 +1222,7 @@ msgstr "Bredde" #. module: product #: help:product.price.type,field:0 msgid "Associated field in the product form." -msgstr "" +msgstr "Tilknyttet feltet i produktskjemaet." #. module: product #: view:product.product:0 @@ -1251,7 +1261,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Hovedleverandør som har høyeste prioritet i leverandørlisten" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Tjenester" @@ -1338,7 +1348,7 @@ msgid "Minimal Quantity" msgstr "Minimum antall" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -1936,7 +1946,7 @@ msgstr "Prislistenavn" #. module: product #: field:product.supplierinfo,delay:0 msgid "Delivery Lead Time" -msgstr "" +msgstr "Leveringstid" #. module: product #: help:product.uom,active:0 @@ -1949,7 +1959,7 @@ msgstr "" #: model:ir.actions.act_window,name:product.product_uom_categ_form_action #: model:ir.ui.menu,name:product.menu_product_uom_categ_form_action msgid "UoM Categories" -msgstr "" +msgstr "Enhetskategorier" #. module: product #: field:product.template,seller_delay:0 @@ -2048,6 +2058,8 @@ msgid "" "The computed quantity will be a multiple of this value. Use 1.0 for a UoM " "that cannot be further split, such as a piece." msgstr "" +"Det beregnede kvantum vil være et multiplum av denne verdien. Bruk 1.0 for " +"en enhet som ikke kan bli yttere splittet, som et stykke." #. module: product #: view:product.product:0 @@ -2333,7 +2345,7 @@ msgid "Category Type" msgstr "Kategoritype" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privat" @@ -2349,7 +2361,7 @@ msgstr "" #. module: product #: constraint:res.partner:0 msgid "Error ! You cannot create recursive associated members." -msgstr "" +msgstr "Feil! Du kan ikke lage uendelig struktur av assosierte medlemmer." #. module: product #: field:product.pricelist.item,price_discount:0 diff --git a/addons/product/i18n/nl.po b/addons/product/i18n/nl.po index b0549761d27..e6953754ebe 100644 --- a/addons/product/i18n/nl.po +++ b/addons/product/i18n/nl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -70,7 +70,7 @@ msgstr "" "voorraadlocatie van het soort 'intern'" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Verkoopbaar" @@ -507,7 +507,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Einddatum van de geldigheid van deze prijslijstversie." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Alle producten" @@ -827,7 +827,7 @@ msgstr "" "indien bekend, anders per standaard maateenheid van het product." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accessoires" @@ -1358,7 +1358,7 @@ msgstr "" "Standaard leverancier met de hoogste prioriteit in de leverancierslijst" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Diensten" @@ -1448,7 +1448,7 @@ msgid "Minimal Quantity" msgstr "Minimale hoeveelheid" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2487,7 +2487,7 @@ msgid "Category Type" msgstr "Soort categorie" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privé" diff --git a/addons/product/i18n/nl_BE.po b/addons/product/i18n/nl_BE.po index 82d3f428ede..b448ddb1b05 100644 --- a/addons/product/i18n/nl_BE.po +++ b/addons/product/i18n/nl_BE.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -56,7 +56,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "" @@ -462,7 +462,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "" @@ -750,7 +750,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "" @@ -1234,7 +1234,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "" @@ -1321,7 +1321,7 @@ msgid "Minimal Quantity" msgstr "" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2307,7 +2307,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/product/i18n/pl.po b/addons/product/i18n/pl.po index 1d246853b90..d5af6d76fe9 100644 --- a/addons/product/i18n/pl.po +++ b/addons/product/i18n/pl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Do sprzedaży" @@ -477,7 +477,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Końcowa data ważności wersji cennika." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Wszystkie produkty" @@ -781,7 +781,7 @@ msgstr "" "(jeśli zdefiniowana) lub dla jednostki domyślnej w produkcie." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Akcesoria" @@ -1293,7 +1293,7 @@ msgstr "" "Główny dostawca, czyli ten który ma najwyższy priorytet w liście dostawców." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Usługi" @@ -1382,7 +1382,7 @@ msgid "Minimal Quantity" msgstr "Minimalna ilość" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "Komputer" @@ -2406,7 +2406,7 @@ msgid "Category Type" msgstr "Typ Kategorii" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Prywatne" diff --git a/addons/product/i18n/pt.po b/addons/product/i18n/pt.po index 27b62362ca9..881a013046e 100644 --- a/addons/product/i18n/pt.po +++ b/addons/product/i18n/pt.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -70,7 +70,7 @@ msgstr "" "Localização digitado como 'interno'." #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Pode ser Vendido" @@ -505,7 +505,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Data final para esta versão da lista de preço para ser valida." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Todos os artigos" @@ -823,7 +823,7 @@ msgstr "" "caso ou a unidade de medida padrão do artigo, caso contrário" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Acessórios" @@ -1353,7 +1353,7 @@ msgstr "" "Fornecedor principal, que tem a maior prioridade na lista de fornecedores." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Serviços" @@ -1442,7 +1442,7 @@ msgid "Minimal Quantity" msgstr "Quantidade Mínima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2477,7 +2477,7 @@ msgid "Category Type" msgstr "Categoria Tipo" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privado" diff --git a/addons/product/i18n/pt_BR.po b/addons/product/i18n/pt_BR.po index cc5b2f90809..6d50128ee72 100644 --- a/addons/product/i18n/pt_BR.po +++ b/addons/product/i18n/pt_BR.po @@ -8,13 +8,14 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-02-08 00:37+0000\n" "PO-Revision-Date: 2012-07-28 19:32+0000\n" -"Last-Translator: Fábio Martinelli \n" +"Last-Translator: Fábio Martinelli - http://zupy.com.br " +"\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -68,7 +69,7 @@ msgstr "" "descrito como \"Interno\"" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Vendável" @@ -493,7 +494,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Data final de validade para esta versão de lista de preços." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Todos os produtos" @@ -801,7 +802,7 @@ msgstr "" "UdM padrão caso contrário." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Acessórios" @@ -1325,7 +1326,7 @@ msgstr "" "Fornecedor Principal que tem prioridade máxima na Lista de Fornecedores." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Serviços" @@ -1415,7 +1416,7 @@ msgid "Minimal Quantity" msgstr "Quantidade mínima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2451,7 +2452,7 @@ msgid "Category Type" msgstr "Tipo de Categoria" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Particular" diff --git a/addons/product/i18n/ro.po b/addons/product/i18n/ro.po index cc7069dafd8..dc4d16a5d5a 100644 --- a/addons/product/i18n/ro.po +++ b/addons/product/i18n/ro.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -70,7 +70,7 @@ msgstr "" "introdusa ca 'interna'." #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Se poate vinde" @@ -507,7 +507,7 @@ msgstr "" "Data pana la care este valabila aceasta versiune a listei de preturi." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Toate produsele" @@ -827,7 +827,7 @@ msgstr "" "sau, daca nu exista, pentru UdM implicita a produsului" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Accesorii" @@ -1360,7 +1360,7 @@ msgstr "" "Furnizorul principal care are cea mai mare prioritate in Lista cu Furnizori." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Servicii" @@ -1449,7 +1449,7 @@ msgid "Minimal Quantity" msgstr "Cantitatea minima" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2495,7 +2495,7 @@ msgid "Category Type" msgstr "Tipul Categoriei" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Personal" diff --git a/addons/product/i18n/ru.po b/addons/product/i18n/ru.po index 589e5135207..2cb0b0ba735 100644 --- a/addons/product/i18n/ru.po +++ b/addons/product/i18n/ru.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Для продажи" @@ -478,7 +478,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Конечная дата, до которой каталог действителен" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Все ТМЦ" @@ -778,7 +778,7 @@ msgstr "" "иначе за единицу измерения ТМЦ." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Дополнительные" @@ -1292,7 +1292,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Основной поставщик - имеет высший приоритет в списке поставщиков." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Услуги" @@ -1381,7 +1381,7 @@ msgid "Minimal Quantity" msgstr "Минимальное количество" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "ПК" @@ -2403,7 +2403,7 @@ msgid "Category Type" msgstr "Тип категории" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Личное" diff --git a/addons/product/i18n/sk.po b/addons/product/i18n/sk.po index 75a42132c13..0e784836e1a 100644 --- a/addons/product/i18n/sk.po +++ b/addons/product/i18n/sk.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Predateľný" @@ -475,7 +475,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Termín ukončenia platnosti pre túto verziu cenníka." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Všetky produkty" @@ -769,7 +769,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Príslušenstvo" @@ -1263,7 +1263,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Služby" @@ -1350,7 +1350,7 @@ msgid "Minimal Quantity" msgstr "Minimálne množstvo" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2338,7 +2338,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/product/i18n/sl.po b/addons/product/i18n/sl.po index 7f618efe7fc..9e83e3cdc01 100644 --- a/addons/product/i18n/sl.po +++ b/addons/product/i18n/sl.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -60,7 +60,7 @@ msgstr "" "Predvidena količina(izračunana kot:razpoložliva količina+prihodi-odhodi)" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Možno prodati" @@ -479,7 +479,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Datum do katerega velja cenik" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Vsi proizvodi" @@ -783,7 +783,7 @@ msgstr "" "nabavna EM ni vpisana" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Pripomočki" @@ -1296,7 +1296,7 @@ msgstr "" "Glavni dobavitelj, ki ima največjo prednost iz seznama dobaviteljev." #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Storitve" @@ -1385,7 +1385,7 @@ msgid "Minimal Quantity" msgstr "Minimalna količina" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2397,7 +2397,7 @@ msgid "Category Type" msgstr "Vrsta kategorije" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Zasebno" diff --git a/addons/product/i18n/sq.po b/addons/product/i18n/sq.po index 0e0fdd2c712..c2830068339 100644 --- a/addons/product/i18n/sq.po +++ b/addons/product/i18n/sq.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:12+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:44+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -56,7 +56,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "" @@ -462,7 +462,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "" @@ -750,7 +750,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "" @@ -1234,7 +1234,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "" @@ -1321,7 +1321,7 @@ msgid "Minimal Quantity" msgstr "" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2307,7 +2307,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/product/i18n/sr.po b/addons/product/i18n/sr.po index 80e64a7feda..895a3519292 100644 --- a/addons/product/i18n/sr.po +++ b/addons/product/i18n/sr.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -60,7 +60,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Za prodaju" @@ -474,7 +474,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Datum završetka važenja ove verzije cenovnika." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Svi proizvodi" @@ -769,7 +769,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Alatke" @@ -1272,7 +1272,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Glavni Dobavljac koji ima najvisi prioritet na listi Dobavljaca" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Usluge" @@ -1361,7 +1361,7 @@ msgid "Minimal Quantity" msgstr "Minimalna količina" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2374,7 +2374,7 @@ msgid "Category Type" msgstr "Tip Kategorije" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privatno" diff --git a/addons/product/i18n/sr@latin.po b/addons/product/i18n/sr@latin.po index 4649d63514c..54873997260 100644 --- a/addons/product/i18n/sr@latin.po +++ b/addons/product/i18n/sr@latin.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -60,7 +60,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Za prodaju" @@ -474,7 +474,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Datum završetka važenja ove verzije cenovnika." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Svi proizvodi" @@ -769,7 +769,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Alatke" @@ -1272,7 +1272,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Glavni Dobavljac koji ima najvisi prioritet na listi Dobavljaca" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Usluge" @@ -1361,7 +1361,7 @@ msgid "Minimal Quantity" msgstr "Minimalna količina" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2374,7 +2374,7 @@ msgid "Category Type" msgstr "Tip Kategorije" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privatno" diff --git a/addons/product/i18n/sv.po b/addons/product/i18n/sv.po index 652d6d37c65..fe3398817d0 100644 --- a/addons/product/i18n/sv.po +++ b/addons/product/i18n/sv.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -67,7 +67,7 @@ msgstr "" "lagras i något lager läge skrivit som \"interna\".Ångra ändringarna" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Säljbar" @@ -488,7 +488,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Slutdatum för prislistans giltighet" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Alla produkter" @@ -783,7 +783,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Tillbehör" @@ -1287,7 +1287,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Huvudleverantör, den som har högst prioritet i leverantörslistan" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Tjänster" @@ -1374,7 +1374,7 @@ msgid "Minimal Quantity" msgstr "Minsta antal" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2384,7 +2384,7 @@ msgid "Category Type" msgstr "Kategorityp" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Privat" diff --git a/addons/product/i18n/th.po b/addons/product/i18n/th.po index 90e3f91806e..a2a7d9b5bd7 100644 --- a/addons/product/i18n/th.po +++ b/addons/product/i18n/th.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -56,7 +56,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "ขายได้" @@ -462,7 +462,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "" @@ -750,7 +750,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "" @@ -1234,7 +1234,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "" @@ -1321,7 +1321,7 @@ msgid "Minimal Quantity" msgstr "" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2307,7 +2307,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/product/i18n/tlh.po b/addons/product/i18n/tlh.po index b7acfdffdf5..8e0f2b053e4 100644 --- a/addons/product/i18n/tlh.po +++ b/addons/product/i18n/tlh.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -55,7 +55,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "" @@ -461,7 +461,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "" @@ -749,7 +749,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "" @@ -1233,7 +1233,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "" @@ -1320,7 +1320,7 @@ msgid "Minimal Quantity" msgstr "" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2306,7 +2306,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/product/i18n/tr.po b/addons/product/i18n/tr.po index b3f9cd3e3b3..10f0fb02810 100644 --- a/addons/product/i18n/tr.po +++ b/addons/product/i18n/tr.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -59,7 +59,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Satılabilir" @@ -478,7 +478,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Bu fiyat listesinin geçerli olduğu son gün" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Tüm Ürünler" @@ -783,7 +783,7 @@ msgstr "" "olarak değerlendirilir." #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Donatılar" @@ -1299,7 +1299,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "Tedarikçi listesindeki en yüksek önceliğe sahip ana Tedarikçi" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Hizmetler" @@ -1389,7 +1389,7 @@ msgid "Minimal Quantity" msgstr "Min. Miktar" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2413,7 +2413,7 @@ msgid "Category Type" msgstr "Kategori Tipi" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Özel" diff --git a/addons/product/i18n/uk.po b/addons/product/i18n/uk.po index 67aab1c117d..c8df83efc50 100644 --- a/addons/product/i18n/uk.po +++ b/addons/product/i18n/uk.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -55,7 +55,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "" @@ -461,7 +461,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "" @@ -749,7 +749,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "" @@ -1238,7 +1238,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "" @@ -1325,7 +1325,7 @@ msgid "Minimal Quantity" msgstr "" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2311,7 +2311,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/product/i18n/vi.po b/addons/product/i18n/vi.po index 6e70df4db03..f547c2ed8bc 100644 --- a/addons/product/i18n/vi.po +++ b/addons/product/i18n/vi.po @@ -14,8 +14,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -60,7 +60,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "Có thể bán" @@ -475,7 +475,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "Ngày hết hiệu lực của phiên bản bảng giá này." #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "Tất cả sản phẩm" @@ -766,7 +766,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "Phụ kiện" @@ -1261,7 +1261,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "Các dịch vụ" @@ -1348,7 +1348,7 @@ msgid "Minimal Quantity" msgstr "Số lượng tối thiểu" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2340,7 +2340,7 @@ msgid "Category Type" msgstr "" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "Bí mật" diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index fd3de4de33e..01a320a2dd4 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -60,7 +60,7 @@ msgstr "" "其它情况下,为“内部”类型库位的存货数量。" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "可销售" @@ -473,7 +473,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "价格表版本有效的结束日期" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "所有产品" @@ -770,7 +770,7 @@ msgid "" msgstr "这个价格是供应商计量单位的价格。如果没有输入供应商计量单位则此价格是产品基本计量单位的价格。" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "配件" @@ -1265,7 +1265,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "最优先的主供应商" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "服务" @@ -1352,7 +1352,7 @@ msgid "Minimal Quantity" msgstr "最少数量" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "PC" @@ -2347,7 +2347,7 @@ msgid "Category Type" msgstr "类属" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "私有" diff --git a/addons/product/i18n/zh_TW.po b/addons/product/i18n/zh_TW.po index 8be8527e939..a07ce3ea580 100644 --- a/addons/product/i18n/zh_TW.po +++ b/addons/product/i18n/zh_TW.po @@ -13,8 +13,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-07 05:13+0000\n" -"X-Generator: Launchpad (build 15745)\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" +"X-Generator: Launchpad (build 15791)\n" #. module: product #: model:product.template,name:product.product_product_ram512_product_template @@ -55,7 +55,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.cat1 +#: model:product.category,name:product.product_category_1 msgid "Sellable" msgstr "可售" @@ -461,7 +461,7 @@ msgid "Ending date for this pricelist version to be valid." msgstr "價目表版本有效期" #. module: product -#: model:product.category,name:product.cat0 +#: model:product.category,name:product.product_category_0 msgid "All products" msgstr "所有產品" @@ -749,7 +749,7 @@ msgid "" msgstr "" #. module: product -#: model:product.category,name:product.product_category_accessories +#: model:product.category,name:product.product_category_5 msgid "Accessories" msgstr "附件" @@ -1233,7 +1233,7 @@ msgid "Main Supplier who has highest priority in Supplier List." msgstr "於供應商清單有最高優先次序之主要供應商" #. module: product -#: model:product.category,name:product.product_category_services +#: model:product.category,name:product.product_category_6 #: view:product.product:0 msgid "Services" msgstr "服務" @@ -1320,7 +1320,7 @@ msgid "Minimal Quantity" msgstr "最小量" #. module: product -#: model:product.category,name:product.product_category_pc +#: model:product.category,name:product.product_category_9 msgid "PC" msgstr "" @@ -2308,7 +2308,7 @@ msgid "Category Type" msgstr "分類類型" #. module: product -#: model:product.category,name:product.cat2 +#: model:product.category,name:product.product_category_2 msgid "Private" msgstr "" diff --git a/addons/project_issue_sheet/i18n/pt_BR.po b/addons/project_issue_sheet/i18n/pt_BR.po index d3a44c56b48..582f81483c0 100644 --- a/addons/project_issue_sheet/i18n/pt_BR.po +++ b/addons/project_issue_sheet/i18n/pt_BR.po @@ -15,7 +15,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-08-13 05:25+0000\n" +"X-Launchpad-Export-Date: 2012-08-14 04:45+0000\n" "X-Generator: Launchpad (build 15791)\n" #. module: project_issue_sheet From 0c45b4763c761641f81b5ad6de4fa917fbf9eb69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Tue, 14 Aug 2012 09:52:34 +0200 Subject: [PATCH 13/14] [FIX] mail_thread: added forgotten brackets in hasattr. bzr revid: tde@openerp.com-20120814075234-t9v53dtfefg70zmt --- addons/mail/mail_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index b5e4f2fa4bc..af50bed3aa0 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -189,7 +189,7 @@ class mail_thread(osv.Model): notif_user_ids += self.message_parse_users(cr, uid, body, context=context) # add users requested to perform an action (need_action mechanism) - if hasattr(self, get_needaction_user_ids) and self._columns.get('user_id'): + if hasattr(self, 'get_needaction_user_ids') and self._columns.get('user_id'): user_ids_dict = self.get_needaction_user_ids(cr, uid, thread_ids, context=context) for id, user_ids in user_ids_dict.iteritems(): notif_user_ids += user_ids From 8d2c35cc7514f0485d372c7799c22a465189dad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Tue, 14 Aug 2012 10:16:16 +0200 Subject: [PATCH 14/14] [IMP] Misc addons: product_image -> image. bzr revid: tde@openerp.com-20120814081616-zb5xe06cy8r3n5ie --- addons/delivery/delivery_demo.xml | 2 +- addons/hr_expense/hr_expense_demo.xml | 6 +++--- addons/membership/membership_demo.xml | 6 +++--- addons/point_of_sale/account_statement_demo.xml | 1 - addons/product_expiry/product_expiry_demo.xml | 8 ++++---- 5 files changed, 11 insertions(+), 12 deletions(-) diff --git a/addons/delivery/delivery_demo.xml b/addons/delivery/delivery_demo.xml index 8adcbb649f0..a05d16110d3 100644 --- a/addons/delivery/delivery_demo.xml +++ b/addons/delivery/delivery_demo.xml @@ -25,7 +25,7 @@ make_to_order 10.0 10.0 - /9j/4AAQSkZJRgABAQEAWQBZAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCACAAIADASIAAhEBAxEB/8QAHAAAAQUBAQEAAAAAAAAAAAAABQAEBgcIAwEC/8QATxAAAgEDAwEEBgUGCgQPAAAAAQIDBAURAAYSIQcTMUEIFCJRYYEjMnGRoRUWUrHB0zRCVWJ1gpKWorMXM8PhJCUmNjdDU1djZXKVwtHw/8QAGwEAAQUBAQAAAAAAAAAAAAAAAAECAwQFBgf/xAAzEQABBAAEAggGAAcAAAAAAAABAAIDEQQSITEFUQYTIkFhgZGhFDJxscHhBxUjQlKi0f/aAAwDAQACEQMRAD8A2XpaWqv7ctz3KCa07G21cGorze2Z6mphKmWjolGHkX2so7MQqNxPhIRhlBAhPdzdrNnobxV2Hb9rue6LxSmSOaKgRVp6eZVBEc1Q5CJknB48ypVgRkYIOn7Uu0Hvomq+x+ZaXkDM1NuGnmlRM+0Vj4jm2MkLkZ8MjVXSTbouN7k7Nexq1RU0FnKR3K5sUEcLFsHLNnqDyz0Z2KvxU8STJIuwztNoKD8oUHasZ7ywSR6Wphk9WLkjmvecmPEe1giMZwOi56CFa2xO1HaW76w2ylqp7Ze0OJLRdIvVqxThj0QnD+ypf2C2FILYzqbayiY63tFpa3bm4KT8gdpe3nD0lSMxyiRPaXDqeqt0IYEgZDLkYJvnsV3w2/tiw3ippVornBM9Hc6VVcCCpjxyUcgCMgq2OvHlxJJB0IU10tLS0IS0tLS0IS0tC7/uPb23+5/L1+tdp7/l3PrtXHB3nHHLjzIzjIzjwyPfopoQlpaWloQlpaWloQlqmd3ilb0l6US8PWDtmHuc+P8ACKjOPw1c2s8elJcKDau/Nob0pa6hS5QcqOvpfWT6zJSsS0biLr9GrLNlgBkso6+QhP8A0K6J6bYe4pa6mEd1O4JoKyR1HesUii9l28TxZ5DjPQs3vOr41njbFxg2T23Ud5o/+bHaEqRSlFysNxBzGTxQn22YjGQCZXY9E1ofQhZD3Tu297teh7aqGjoKFLRItHNRUzyzVApM5Jlc4VsSM5AVF6N1ZsdJPQbih2F2qWzeVDJBHs7fRjhurcUCU9WA3CXmSoQZYsxJIIMxIJC45XkWjb3bvfLbQVNJdtubnSR7pT08yz+o1RJWdZlDsyZb2suFHtlVHsnTnZvZdfrnsvc/Z7dxA1piqf8AimuklDOg6NE/EdengR7IOGHgc6ELSOgW5N4bZ27MtNd7xTQVjorx0SEy1Uqs3EFIEBkcZB6qpxgnwBxSm767cHZ/u/ZVj3z2hXS6bYrYZEnqQxopY5olwrNLARKynmgId2zks2SARceyLZtGks0c+zaSzx26cZSa3InCXHTPJfrHIxkny0ITCLdu47nVRixbHq1o+bh6u9VQoAyggK0cYWSU5GTh0jI6eZOIHVbq3BUdqb9n2/dw0topHt6VlHUWeRreK5i6ju2d3aRSGVwBG6EhW5ZBwLp4aoPcO3IX7bt1XHe2zrpua3V1BDSWhY/Vu4jhKDvSGmkjKSKy+yUbkObn+MDprnBotxpAFqy5Oz7an5GutuprNSwG6wSw1dVw51EveAgs8rZd2yxOWYnPXQv0aLvWXDsugtN0738pbdqprLVl0VRygI4BePiFjaNckAkqc58Sb7KbHWbf2LRWaskqXFJJPHTesuGmWm75+4VyvTkIuAOOg8B4ahW2imz/AEnL3aGEUVFvK3R19Oe6YlqqDlyQEdBle+kbPmVwR4FQbFoVzaWlpaVCWlpaWhCqmq7dduNcq2lse2t37lpqOcwPX2a2CopXcAFgr8xnGfHGD4jIIJqSG7/l7ty3Hcbtsi+0lh3JSx0jPcbW0c0KiCOM5IB4glCejY6A+PhLfQcqqf8A0bXak76P1gXiSTuuXtce5hHLHuyNWFetsxC9tX3CqkrJpWEi5HFRg/Vx1yB01Tx+L+DhMzhYCt4KGGZxEjq5ULsqp7N2e3Wv7Na3s/3NNF6rJPIbBcEIdl7pjwJX+KcZBXp7JIyNH+1aHc1jte3b7FuXcG6oq+rjoLvbHhjKVVG3tyKtPCigN7BUtgsQ5UsV6asQ0klzttdRB2NVBIKuldjnDHyHn4g5/wDVoVT9/V3W2V0UBljAm5QjHKOVuPPGcfoZx4n2tNZjOuwoxEIuxoFCYssmRylG1vzYr9vvQ2O3RUVDw7t6P1I0pQEecbKpHn1x5HQSyzTWO6PTVLE+qEQysf8ArICfo5Pl5/PUmtNNKKp6uSNosx8FVsZbrnJHw8vtOhm+IIYhBdcxiSEGOZCRmWE/WHxx4/fqfDyPkiDpBR5JjwGmgVHt8dn1s3D2jQbjvMl0mphapLfFFTtmICVZElDAKWHJJCOQI+8A6kvZ3tOx7OtM1t27RTUVvkm71YZJZJDyIAZvpCSM4HTp4fHS29dZe5a3CJppacApIzgK8R+qc9Tny8PLXa33T8qtOIap+EL8GMScVJ8xyOSce8Y0UGvuzr3KN0oHZR2aeGFeU0qRr72ONNJLhGzBIYWkY/VLjgPx6/cDoVbI64XGqlqoYY4AeMGDykYZ+szEk/L467Q22mju010zI9RKvDLHoq9OgHl4aXO47BRZ3HYL5qbrM12jtfN0lkTmTAgIjXr9Zm+zyA1XXpDw3CntG1e0K1UtRU3LbV1jklhppGR5YXYJNECoJwzBUPQ+yW6HwNqZGh13tsd3s12skhAFVCTGxGeDEdCPsYBvnpRYO6fHo/tHQqCp28W115J2ddo7D3iyqf8Aaa9/07W//u57SP8A2Rf3mpztExLtqhWmQxIsQUp5hh9bPxznOn1X6w9PIkE/dSspCOV5BT5HGRn7NSt8VM/KHHLsqzPb/ZhJ3Z2B2hh844/kdM592O903uvpGbatMKz3XZe+6CJ24K9Ta44lZsZwC0o64B6aP7Y2BBaL815rLk9xqclkLxccOT1c9Tk+P36rf0050n7NrJJFKJY2uwIZWyD9DJqWZsbXVG6/ZQxGRzbe2lE/Rj25eqzaH5w2hy3qt8aOVI2KyBe7hJYe8YYgj9etPbqKRwwVD5wrFOg94z+zVP8AoP8A/RTdP6cl/wAiDVzbmi72zTD9DD/cev4Z1n8aL8Tw98Q3DTX3HupsIxsU+fmRaj1suUUV6o3CsFkYwOzDyfw/xBfv18XeM2/ckkEH0aVarPE5+rHOCcffx6/D7dDpIWaJgjFHxlWHip8j8jqR3aNLza6KqUcGlUAdc92zYI+YcKPmdcj0K4hJNh3wynVpsfQ/8P3WhxWMMcHt2KaXndNBbKOmnu1ZVM865NNRRhSmDg8iTnxBHQjOPDRcR2yssMVztkaGKRRJ3hXLMpyG5E9TgEkg+Y1V/aBSy1FJFdAh9n6GqX9Bx4H7D+vHv1N+xqqhrdjiid0cwyyRPHnqFJz4e72teiPwsZwolbvdFYAeevMbuWiZBJLHLhnZ/UMFXY/6ynY4IP2fs0ca8Wyl7qnpQZmfokVKnLyz5fDQjc0wjp6l5PakgpXp3OOrOTxA+Zwf62lQRiip6QzVFPTiHgO6j48iBhWPQ5A9nJ6kYHgCNUe4FWdCAUcmqK+SJWRIqQt0+ncHr0PgPHpkYzphFKDIW7+uuEsBVwUHFXY8sDGMY6eOcdep19WenoKtBWdzI55sFMpJGAxwQD5eBHy0XXiv1VC/YP8A979CEzi/LE5xI0FLH49Pbc5OcDwAABx4ZyPnp4heCSllkk5sv0cjYxnlgZx5e0F1yra2moqdqirnjhiXxZzgfZoE277PV1qWuI1LSVB4I4i6AnoCfMdceWpGwSSAljSaUckrGGiaKjW7N21u0d2V9ojt6zwzEVsDNO6+zJnl4fzw/wCGhp7VKvwNsgz8KiU/t0Q7eKEVVos+4VjPKCQ086qP4sg6ZPwdcf1tVklJVvQS1yq3q8TrG5THRj4D4/Lw6e8a3sBBhpoQ5zdVnYueaOSmnRaWpiCr4LcQ3TJJ6YB89Zf9KW03Kz7RpoKpi1NJdVeFlbKE93Lnp5HwzrTVnfnSc/eQf8I1R3ptH/kBZR/5r/sn1zr4wXA8l0UGKdFG+MDR9X5bIV6H+5mtG0aq3Swd5TVF3c8l+sjGKEZ+I6DprS9YvfUksJ8HQr941nz0O7ZQ3Hspr/W4A7xX6R43HRlIhpz0P7NaA56RrXWc2oSzyQujZ1bacBr48ioai5UHwyNE7HmW3VlvDcWjfnGcfVD5YH7Q4Y/dptLFwnlT9GRh8s9Pw10t7dxc4XPRZQYWycAE9VP3jH9bXlHApTw/jHUu2JLD66e4C0sWBNh781F9935qS7d5QW2OpgniU10Evg5ZQSB5dM9c+egNtlsc8/f0O1NwJUeIjQMFOfMNz8PsOrJa2UpuU7ywh35CRSR4Bs+fj48tPY0WNeMaKg9yjA17EMSGsAYCD367+S5fq3uNvo+SjVttlxuz95eqYUdImGhplk5szdfaZvePH7fv1I6Sio6WNUggVQv1c9SOmPE/Dprpk6WTqqrFLty0uWmnrKMeMQaZvdGOX3nwHz15UyvTw9/VzU1BB/2lRIB8vED8TppcALSDXZNN12WnvluMUoYzRK7QEOQA5UgZ9/XH3ag+yNtbhor/AE9zraqCARZD00JMrMCMEHHRfLz8hqTVm6LPGCtNHX3mQfoJwiB+JbiCPiA2vvb90vl+WoWM0lmhgcKEiXvpMEZ+sw4/4dGF4/GXOwUUjS4gmtyBsfAbpkvDC4idzSKT/dFrN12XebbUBadZ4naEyuAEfAZSTnAxIAfHVT22hvNZtD1NNt1o5RIYnQMObcssx8s+XyA8tW2u3LZJIs1wE1xmXqHq5DJx+wHoPlomtLSIoVKaFVAwAEGBq9hsU7DigLSS4Zslar4sylKPg4wy8QR7jxXWWvSO3ZW3/YtHQXCFRUUV1H0q9OYMcg6r5EY/3DWrIxHGvGNFQeOFGNZ79NGgootqWqvhp446me4hZZFGC4ET4z7z18dMY9ga4OGp28FI5jszS06DdP8A0LaumHZvc6Pv4/WReJZTFy9rgYYAGx7sg6vbnrKXo3beutVtMX+2SE+r3sxSRo3FwojhJYe8YYgj9etSc9EkbWta5pu/ZKx7i5wIqvdMqpR69N/O4v8AeMfs1xqY2aBu6IEi4aM48GByp+8DXesP/C428mQg/IjH6zrzXjnSOI4fikjm6WQ4eg/K38K7NCAU9ndJUpK9AVjlUA56YDDIz8wB89eLKj9IFec/+GMj7/D8dCjca+jpzb6W0R1Y5syyyzBY1BPLqMEkgk9OnTHXXGVb9Xfw68GmjPjDQp3Q/t9X/HXau6UYFkTXudbiASANisz4GQvNbIrX1EVEge4VtJb1b6okcF2+wdOv2Z0Je9Usxxb7ZXXU+Uk/0MJ/tD/4aVHZ7dSuZI6ZWlY5aST2nY+8k6fEgDXP4vplK7SBgHidf0rUfDmD5jaHyybhq1xNXQW6Lw7ujjy2PcXbP3rjTGS1UEUpqJUeqqPOapcyOfmdFZ5QAeug9wqcA9dcfxLjeLxAPWyE+Hd6LUw+FYD2QmlbIGYRoAB7hp/sybub9U0vgJaZJB8SGI/VjQyBC7cm8TryOqW37ys7seKVEcsLHyzlcfrOm9CcVXHYx/kHD/Un8KXijB8KRypWLy15y1x55GdLlr3pcou3LVCemi6vsSyMrBlNyyCD0P0T6vTlrLvpKUd1t206Whr+fcrc1eDrlDmOTJU/d00xz8rgK3VmHDiSJ78wBbWnPnX0U19Dlsdllw/pyb/Ip9XRz1nH0VdwyW3alTbpIhJTzXVjkdGVmjiGfiOg6a0PyOla8OJA7k2XDyRNa5w0cLCVY3+qc/xZB+II/aNfWm9Wx9WcjxUch9o6/s0qmtpKZQ1TVQQg+BkkCj8deddNMOfiYpGj5hXof2ruAd2CE415oTJuK15KwzPUN5CCJnz8wMfjrmbtXTfwSy1R+M7rGP1k/hrnIeDY+f5IXeYr70rTp427uRhmxpvNMAPHQ0ruGfxagpFPlhpGHz6D8NfP5Enm/hl4q5B+jHxiH3qM61Iuh3Epfmyt+pv7Wo/joW8yvmvrFRSzMAB5k6AzXKjLFmnEh8liBdvuXOpLFt2zIwd6QTv+lMxc/jolBBTQDEMEUY/moBq5H/DtjzeInJHJor3JP2R/OC0UxnqoG1duCoHCz7dmOfCWrPBf7I6n7xry2bW3bW32huV8rqZYqWXvEhjUAL9mP26sLn8de89dXwvoxwzhhD4IhmH9x1PqdvKlnz4yafR7tOS78vjrzlrhz0uet9VV25aov0yjnZNl/pI/5bau7kNZj9Ibdj7j2Rb6eopxFU0ly9tkPsODG4BA8j08NSNic5pcNhumOka1wadypb6J1vpK7surPWYVdor7KyP4MpENOeh1Zt53hZbZczbZ5JpKkYBWKPlgnwH2+HT46zLtyk7edj09VY7Ft/c1HAKp3lSGy+sI0uAhZZO7YMCEXBUlTjI8c6+IB27QXIXGPbe6PWw5k71tuljyPiesPjpYRECTID5JZXyuaGtOg5/ha6B5ICVK5GcHxGhdRRWegjmrpaSnjCgu7lATrOH5y+kl/Je6/wC7Q/cabXC7+kRcIO4rLNuuWLPLj+bmOvyh1C6603UseTMM+3fW60tZb1QXJ3joUkxGMsTHxA9w0T56ytbrr6Q1vhMNHY90QoW5EDbQOT84dOPzk9JH+St1f3ZX9xpGZq7W6fOYjIepBDe691oe/wC6rRY6iOnrp3ErryConIge8+7/AHaK0dUtVSxVKK6JKoZQ64bB8Mjy1kurj7dKy4m4VW290TVJYMXfbpOSPDp3OMdPDGNGfzk9JH+St0/3ZX9xqd5iygMu+/8ASqs6zMc1V3LT7yqiF3YKqjJJPQDQq2bjt1xrPVaRpZHwST3ZAAHnnWb6y9+kXWUz01RZ91PE4wyjbYXI+0Q503tdd6QNs5+o2HdEXeY5H82gxOPthOq5z5hWyuxnDiJ2cEu7tq81q7noXuDcVssUUT3Gcp3pIRVUsxx4nA8v/vWc/wA5PSR/kndP92F/caD3le3a8VQqbjt3dU8oUKCdvFQB7gBEBqeLq839S68FTkz5exv4rVtoudPdaCOupRJ3MmeBkQqSPfj3ad89Zdh3B6R0MSRRWfc6RooVVXa6gADwA+g0pdw+kfLE8b2ndXFwVONtAHB+IgyNMdVmk5uwtaLj3PapbkLfDLJLOX4AJGSM+fX3fHVM+lnarfR7dt1dSU6wzVNfibh0DYjfrj39TqFWuo7e7ZUGei27ueOUrx5HbnLp84TjTbeNP24bvo4KPcO2N0VsEEnexr+b7R8WxjOUiBPQ6bG6QA2d+SsYoYcuHUg0OdXfkv/Z + /9j/4AAQSkZJRgABAQEAWQBZAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCACAAIADASIAAhEBAxEB/8QAHAAAAQUBAQEAAAAAAAAAAAAABQAEBgcIAwEC/8QATxAAAgEDAwEEBgUGCgQPAAAAAQIDBAURAAYSIQcTMUEIFCJRYYEjMnGRoRUWUrHB0zRCVWJ1gpKWorMXM8PhJCUmNjdDU1djZXKVwtHw/8QAGwEAAQUBAQAAAAAAAAAAAAAAAAECAwQFBgf/xAAzEQABBAAEAggGAAcAAAAAAAABAAIDEQQSITEFUQYTIkFhgZGhFDJxscHhBxUjQlKi0f/aAAwDAQACEQMRAD8A2XpaWqv7ctz3KCa07G21cGorze2Z6mphKmWjolGHkX2so7MQqNxPhIRhlBAhPdzdrNnobxV2Hb9rue6LxSmSOaKgRVp6eZVBEc1Q5CJknB48ypVgRkYIOn7Uu0Hvomq+x+ZaXkDM1NuGnmlRM+0Vj4jm2MkLkZ8MjVXSTbouN7k7Nexq1RU0FnKR3K5sUEcLFsHLNnqDyz0Z2KvxU8STJIuwztNoKD8oUHasZ7ywSR6Wphk9WLkjmvecmPEe1giMZwOi56CFa2xO1HaW76w2ylqp7Ze0OJLRdIvVqxThj0QnD+ypf2C2FILYzqbayiY63tFpa3bm4KT8gdpe3nD0lSMxyiRPaXDqeqt0IYEgZDLkYJvnsV3w2/tiw3ippVornBM9Hc6VVcCCpjxyUcgCMgq2OvHlxJJB0IU10tLS0IS0tLS0IS0tC7/uPb23+5/L1+tdp7/l3PrtXHB3nHHLjzIzjIzjwyPfopoQlpaWloQlpaWloQlqmd3ilb0l6US8PWDtmHuc+P8ACKjOPw1c2s8elJcKDau/Nob0pa6hS5QcqOvpfWT6zJSsS0biLr9GrLNlgBkso6+QhP8A0K6J6bYe4pa6mEd1O4JoKyR1HesUii9l28TxZ5DjPQs3vOr41njbFxg2T23Ud5o/+bHaEqRSlFysNxBzGTxQn22YjGQCZXY9E1ofQhZD3Tu297teh7aqGjoKFLRItHNRUzyzVApM5Jlc4VsSM5AVF6N1ZsdJPQbih2F2qWzeVDJBHs7fRjhurcUCU9WA3CXmSoQZYsxJIIMxIJC45XkWjb3bvfLbQVNJdtubnSR7pT08yz+o1RJWdZlDsyZb2suFHtlVHsnTnZvZdfrnsvc/Z7dxA1piqf8AimuklDOg6NE/EdengR7IOGHgc6ELSOgW5N4bZ27MtNd7xTQVjorx0SEy1Uqs3EFIEBkcZB6qpxgnwBxSm767cHZ/u/ZVj3z2hXS6bYrYZEnqQxopY5olwrNLARKynmgId2zks2SARceyLZtGks0c+zaSzx26cZSa3InCXHTPJfrHIxkny0ITCLdu47nVRixbHq1o+bh6u9VQoAyggK0cYWSU5GTh0jI6eZOIHVbq3BUdqb9n2/dw0topHt6VlHUWeRreK5i6ju2d3aRSGVwBG6EhW5ZBwLp4aoPcO3IX7bt1XHe2zrpua3V1BDSWhY/Vu4jhKDvSGmkjKSKy+yUbkObn+MDprnBotxpAFqy5Oz7an5GutuprNSwG6wSw1dVw51EveAgs8rZd2yxOWYnPXQv0aLvWXDsugtN0738pbdqprLVl0VRygI4BePiFjaNckAkqc58Sb7KbHWbf2LRWaskqXFJJPHTesuGmWm75+4VyvTkIuAOOg8B4ahW2imz/AEnL3aGEUVFvK3R19Oe6YlqqDlyQEdBle+kbPmVwR4FQbFoVzaWlpaVCWlpaWhCqmq7dduNcq2lse2t37lpqOcwPX2a2CopXcAFgr8xnGfHGD4jIIJqSG7/l7ty3Hcbtsi+0lh3JSx0jPcbW0c0KiCOM5IB4glCejY6A+PhLfQcqqf8A0bXak76P1gXiSTuuXtce5hHLHuyNWFetsxC9tX3CqkrJpWEi5HFRg/Vx1yB01Tx+L+DhMzhYCt4KGGZxEjq5ULsqp7N2e3Wv7Na3s/3NNF6rJPIbBcEIdl7pjwJX+KcZBXp7JIyNH+1aHc1jte3b7FuXcG6oq+rjoLvbHhjKVVG3tyKtPCigN7BUtgsQ5UsV6asQ0klzttdRB2NVBIKuldjnDHyHn4g5/wDVoVT9/V3W2V0UBljAm5QjHKOVuPPGcfoZx4n2tNZjOuwoxEIuxoFCYssmRylG1vzYr9vvQ2O3RUVDw7t6P1I0pQEecbKpHn1x5HQSyzTWO6PTVLE+qEQysf8ArICfo5Pl5/PUmtNNKKp6uSNosx8FVsZbrnJHw8vtOhm+IIYhBdcxiSEGOZCRmWE/WHxx4/fqfDyPkiDpBR5JjwGmgVHt8dn1s3D2jQbjvMl0mphapLfFFTtmICVZElDAKWHJJCOQI+8A6kvZ3tOx7OtM1t27RTUVvkm71YZJZJDyIAZvpCSM4HTp4fHS29dZe5a3CJppacApIzgK8R+qc9Tny8PLXa33T8qtOIap+EL8GMScVJ8xyOSce8Y0UGvuzr3KN0oHZR2aeGFeU0qRr72ONNJLhGzBIYWkY/VLjgPx6/cDoVbI64XGqlqoYY4AeMGDykYZ+szEk/L467Q22mju010zI9RKvDLHoq9OgHl4aXO47BRZ3HYL5qbrM12jtfN0lkTmTAgIjXr9Zm+zyA1XXpDw3CntG1e0K1UtRU3LbV1jklhppGR5YXYJNECoJwzBUPQ+yW6HwNqZGh13tsd3s12skhAFVCTGxGeDEdCPsYBvnpRYO6fHo/tHQqCp28W115J2ddo7D3iyqf8Aaa9/07W//u57SP8A2Rf3mpztExLtqhWmQxIsQUp5hh9bPxznOn1X6w9PIkE/dSspCOV5BT5HGRn7NSt8VM/KHHLsqzPb/ZhJ3Z2B2hh844/kdM592O903uvpGbatMKz3XZe+6CJ24K9Ta44lZsZwC0o64B6aP7Y2BBaL815rLk9xqclkLxccOT1c9Tk+P36rf0050n7NrJJFKJY2uwIZWyD9DJqWZsbXVG6/ZQxGRzbe2lE/Rj25eqzaH5w2hy3qt8aOVI2KyBe7hJYe8YYgj9etPbqKRwwVD5wrFOg94z+zVP8AoP8A/RTdP6cl/wAiDVzbmi72zTD9DD/cev4Z1n8aL8Tw98Q3DTX3HupsIxsU+fmRaj1suUUV6o3CsFkYwOzDyfw/xBfv18XeM2/ckkEH0aVarPE5+rHOCcffx6/D7dDpIWaJgjFHxlWHip8j8jqR3aNLza6KqUcGlUAdc92zYI+YcKPmdcj0K4hJNh3wynVpsfQ/8P3WhxWMMcHt2KaXndNBbKOmnu1ZVM865NNRRhSmDg8iTnxBHQjOPDRcR2yssMVztkaGKRRJ3hXLMpyG5E9TgEkg+Y1V/aBSy1FJFdAh9n6GqX9Bx4H7D+vHv1N+xqqhrdjiid0cwyyRPHnqFJz4e72teiPwsZwolbvdFYAeevMbuWiZBJLHLhnZ/UMFXY/6ynY4IP2fs0ca8Wyl7qnpQZmfokVKnLyz5fDQjc0wjp6l5PakgpXp3OOrOTxA+Zwf62lQRiip6QzVFPTiHgO6j48iBhWPQ5A9nJ6kYHgCNUe4FWdCAUcmqK+SJWRIqQt0+ncHr0PgPHpkYzphFKDIW7+uuEsBVwUHFXY8sDGMY6eOcdep19WenoKtBWdzI55sFMpJGAxwQD5eBHy0XXiv1VC/YP8A979CEzi/LE5xI0FLH49Pbc5OcDwAABx4ZyPnp4heCSllkk5sv0cjYxnlgZx5e0F1yra2moqdqirnjhiXxZzgfZoE277PV1qWuI1LSVB4I4i6AnoCfMdceWpGwSSAljSaUckrGGiaKjW7N21u0d2V9ojt6zwzEVsDNO6+zJnl4fzw/wCGhp7VKvwNsgz8KiU/t0Q7eKEVVos+4VjPKCQ086qP4sg6ZPwdcf1tVklJVvQS1yq3q8TrG5THRj4D4/Lw6e8a3sBBhpoQ5zdVnYueaOSmnRaWpiCr4LcQ3TJJ6YB89Zf9KW03Kz7RpoKpi1NJdVeFlbKE93Lnp5HwzrTVnfnSc/eQf8I1R3ptH/kBZR/5r/sn1zr4wXA8l0UGKdFG+MDR9X5bIV6H+5mtG0aq3Swd5TVF3c8l+sjGKEZ+I6DprS9YvfUksJ8HQr941nz0O7ZQ3Hspr/W4A7xX6R43HRlIhpz0P7NaA56RrXWc2oSzyQujZ1bacBr48ioai5UHwyNE7HmW3VlvDcWjfnGcfVD5YH7Q4Y/dptLFwnlT9GRh8s9Pw10t7dxc4XPRZQYWycAE9VP3jH9bXlHApTw/jHUu2JLD66e4C0sWBNh781F9935qS7d5QW2OpgniU10Evg5ZQSB5dM9c+egNtlsc8/f0O1NwJUeIjQMFOfMNz8PsOrJa2UpuU7ywh35CRSR4Bs+fj48tPY0WNeMaKg9yjA17EMSGsAYCD367+S5fq3uNvo+SjVttlxuz95eqYUdImGhplk5szdfaZvePH7fv1I6Sio6WNUggVQv1c9SOmPE/Dprpk6WTqqrFLty0uWmnrKMeMQaZvdGOX3nwHz15UyvTw9/VzU1BB/2lRIB8vED8TppcALSDXZNN12WnvluMUoYzRK7QEOQA5UgZ9/XH3ag+yNtbhor/AE9zraqCARZD00JMrMCMEHHRfLz8hqTVm6LPGCtNHX3mQfoJwiB+JbiCPiA2vvb90vl+WoWM0lmhgcKEiXvpMEZ+sw4/4dGF4/GXOwUUjS4gmtyBsfAbpkvDC4idzSKT/dFrN12XebbUBadZ4naEyuAEfAZSTnAxIAfHVT22hvNZtD1NNt1o5RIYnQMObcssx8s+XyA8tW2u3LZJIs1wE1xmXqHq5DJx+wHoPlomtLSIoVKaFVAwAEGBq9hsU7DigLSS4Zslar4sylKPg4wy8QR7jxXWWvSO3ZW3/YtHQXCFRUUV1H0q9OYMcg6r5EY/3DWrIxHGvGNFQeOFGNZ79NGgootqWqvhp446me4hZZFGC4ET4z7z18dMY9ga4OGp28FI5jszS06DdP8A0LaumHZvc6Pv4/WReJZTFy9rgYYAGx7sg6vbnrKXo3beutVtMX+2SE+r3sxSRo3FwojhJYe8YYgj9etSc9EkbWta5pu/ZKx7i5wIqvdMqpR69N/O4v8AeMfs1xqY2aBu6IEi4aM48GByp+8DXesP/C428mQg/IjH6zrzXjnSOI4fikjm6WQ4eg/K38K7NCAU9ndJUpK9AVjlUA56YDDIz8wB89eLKj9IFec/+GMj7/D8dCjca+jpzb6W0R1Y5syyyzBY1BPLqMEkgk9OnTHXXGVb9Xfw68GmjPjDQp3Q/t9X/HXau6UYFkTXudbiASANisz4GQvNbIrX1EVEge4VtJb1b6okcF2+wdOv2Z0Je9Usxxb7ZXXU+Uk/0MJ/tD/4aVHZ7dSuZI6ZWlY5aST2nY+8k6fEgDXP4vplK7SBgHidf0rUfDmD5jaHyybhq1xNXQW6Lw7ujjy2PcXbP3rjTGS1UEUpqJUeqqPOapcyOfmdFZ5QAeug9wqcA9dcfxLjeLxAPWyE+Hd6LUw+FYD2QmlbIGYRoAB7hp/sybub9U0vgJaZJB8SGI/VjQyBC7cm8TryOqW37ys7seKVEcsLHyzlcfrOm9CcVXHYx/kHD/Un8KXijB8KRypWLy15y1x55GdLlr3pcou3LVCemi6vsSyMrBlNyyCD0P0T6vTlrLvpKUd1t206Whr+fcrc1eDrlDmOTJU/d00xz8rgK3VmHDiSJ78wBbWnPnX0U19Dlsdllw/pyb/Ip9XRz1nH0VdwyW3alTbpIhJTzXVjkdGVmjiGfiOg6a0PyOla8OJA7k2XDyRNa5w0cLCVY3+qc/xZB+II/aNfWm9Wx9WcjxUch9o6/s0qmtpKZQ1TVQQg+BkkCj8deddNMOfiYpGj5hXof2ruAd2CE415oTJuK15KwzPUN5CCJnz8wMfjrmbtXTfwSy1R+M7rGP1k/hrnIeDY+f5IXeYr70rTp427uRhmxpvNMAPHQ0ruGfxagpFPlhpGHz6D8NfP5Enm/hl4q5B+jHxiH3qM61Iuh3Epfmyt+pv7Wo/joW8yvmvrFRSzMAB5k6AzXKjLFmnEh8liBdvuXOpLFt2zIwd6QTv+lMxc/jolBBTQDEMEUY/moBq5H/DtjzeInJHJor3JP2R/OC0UxnqoG1duCoHCz7dmOfCWrPBf7I6n7xry2bW3bW32huV8rqZYqWXvEhjUAL9mP26sLn8de89dXwvoxwzhhD4IhmH9x1PqdvKlnz4yafR7tOS78vjrzlrhz0uet9VV25aov0yjnZNl/pI/5bau7kNZj9Ibdj7j2Rb6eopxFU0ly9tkPsODG4BA8j08NSNic5pcNhumOka1wadypb6J1vpK7surPWYVdor7KyP4MpENOeh1Zt53hZbZczbZ5JpKkYBWKPlgnwH2+HT46zLtyk7edj09VY7Ft/c1HAKp3lSGy+sI0uAhZZO7YMCEXBUlTjI8c6+IB27QXIXGPbe6PWw5k71tuljyPiesPjpYRECTID5JZXyuaGtOg5/ha6B5ICVK5GcHxGhdRRWegjmrpaSnjCgu7lATrOH5y+kl/Je6/wC7Q/cabXC7+kRcIO4rLNuuWLPLj+bmOvyh1C6603UseTMM+3fW60tZb1QXJ3joUkxGMsTHxA9w0T56ytbrr6Q1vhMNHY90QoW5EDbQOT84dOPzk9JH+St1f3ZX9xpGZq7W6fOYjIepBDe691oe/wC6rRY6iOnrp3ErryConIge8+7/AHaK0dUtVSxVKK6JKoZQ64bB8Mjy1kurj7dKy4m4VW290TVJYMXfbpOSPDp3OMdPDGNGfzk9JH+St0/3ZX9xqd5iygMu+/8ASqs6zMc1V3LT7yqiF3YKqjJJPQDQq2bjt1xrPVaRpZHwST3ZAAHnnWb6y9+kXWUz01RZ91PE4wyjbYXI+0Q503tdd6QNs5+o2HdEXeY5H82gxOPthOq5z5hWyuxnDiJ2cEu7tq81q7noXuDcVssUUT3Gcp3pIRVUsxx4nA8v/vWc/wA5PSR/kndP92F/caD3le3a8VQqbjt3dU8oUKCdvFQB7gBEBqeLq839S68FTkz5exv4rVtoudPdaCOupRJ3MmeBkQqSPfj3ad89Zdh3B6R0MSRRWfc6RooVVXa6gADwA+g0pdw+kfLE8b2ndXFwVONtAHB+IgyNMdVmk5uwtaLj3PapbkLfDLJLOX4AJGSM+fX3fHVM+lnarfR7dt1dSU6wzVNfibh0DYjfrj39TqFWuo7e7ZUGei27ueOUrx5HbnLp84TjTbeNP24bvo4KPcO2N0VsEEnexr+b7R8WxjOUiBPQ6bG6QA2d+SsYoYcuHUg0OdXfkv/Z diff --git a/addons/hr_expense/hr_expense_demo.xml b/addons/hr_expense/hr_expense_demo.xml index 54154e01f41..e1d6b0a00b0 100644 --- a/addons/hr_expense/hr_expense_demo.xml +++ b/addons/hr_expense/hr_expense_demo.xml @@ -13,7 +13,7 @@ CarTRA - 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 @@ -23,7 +23,7 @@ AT - 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 @@ -33,7 +33,7 @@ HA0 - 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 Expenses diff --git a/addons/membership/membership_demo.xml b/addons/membership/membership_demo.xml index 29825c7524b..49863bb1f4c 100644 --- a/addons/membership/membership_demo.xml +++ b/addons/membership/membership_demo.xml @@ -11,7 +11,7 @@ 180 service - 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 True @@ -21,7 +21,7 @@ 80 service - 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 True @@ -31,7 +31,7 @@ 40 service - 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 diff --git a/addons/point_of_sale/account_statement_demo.xml b/addons/point_of_sale/account_statement_demo.xml index e8ee0a7c349..982e0480aeb 100644 --- a/addons/point_of_sale/account_statement_demo.xml +++ b/addons/point_of_sale/account_statement_demo.xml @@ -12,7 +12,6 @@ - diff --git a/addons/product_expiry/product_expiry_demo.xml b/addons/product_expiry/product_expiry_demo.xml index 12d88ef6862..1d52e5b5272 100644 --- a/addons/product_expiry/product_expiry_demo.xml +++ b/addons/product_expiry/product_expiry_demo.xml @@ -17,7 +17,7 @@ JKB 3307630302014 - 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 box of 10 @@ -47,7 +47,7 @@ FKS 3307631101876 - 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 Box of 5 @@ -77,7 +77,7 @@ PKB 3307631102323 - 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 Bag of 2 @@ -107,7 +107,7 @@ LEX 3307630302045 - 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 Boxes of 1 liter