is.po 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276
  1. # Translation of Odoo Server.
  2. # This file contains the translation of the following modules:
  3. # * web_editor
  4. #
  5. # Translators:
  6. # Martin Trigaux, 2022
  7. #
  8. msgid ""
  9. msgstr ""
  10. "Project-Id-Version: Odoo Server 16.0beta\n"
  11. "Report-Msgid-Bugs-To: \n"
  12. "POT-Creation-Date: 2022-10-10 10:23+0000\n"
  13. "PO-Revision-Date: 2022-09-22 05:55+0000\n"
  14. "Last-Translator: Martin Trigaux, 2022\n"
  15. "Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: \n"
  19. "Language: is\n"
  20. "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
  21. #. module: web_editor
  22. #. openerp-web
  23. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  24. #, python-format
  25. msgid "%dpx (Original)"
  26. msgstr ""
  27. #. module: web_editor
  28. #. openerp-web
  29. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  30. #, python-format
  31. msgid "%dpx (Suggested)"
  32. msgstr ""
  33. #. module: web_editor
  34. #. openerp-web
  35. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  36. #, python-format
  37. msgid "%spx"
  38. msgstr ""
  39. #. module: web_editor
  40. #. openerp-web
  41. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  42. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  43. #, python-format
  44. msgid ""
  45. "'Alt tag' specifies an alternate text for an image, if the image cannot be "
  46. "displayed (slow connection, missing image, screen reader ...)."
  47. msgstr ""
  48. #. module: web_editor
  49. #. openerp-web
  50. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  51. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  52. #, python-format
  53. msgid "'Title tag' is shown as a tooltip when you hover the picture."
  54. msgstr ""
  55. #. module: web_editor
  56. #. openerp-web
  57. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  58. #, python-format
  59. msgid "(ALT Tag)"
  60. msgstr ""
  61. #. module: web_editor
  62. #. openerp-web
  63. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  64. #, python-format
  65. msgid "(TITLE Tag)"
  66. msgstr ""
  67. #. module: web_editor
  68. #. openerp-web
  69. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  70. #, python-format
  71. msgid "(URL or Embed)"
  72. msgstr ""
  73. #. module: web_editor
  74. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  75. msgid "100%"
  76. msgstr ""
  77. #. module: web_editor
  78. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  79. msgid "1977"
  80. msgstr ""
  81. #. module: web_editor
  82. #. openerp-web
  83. #: code:addons/web_editor/static/src/xml/editor.xml:0
  84. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  85. #, python-format
  86. msgid "1x"
  87. msgstr ""
  88. #. module: web_editor
  89. #. openerp-web
  90. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  91. #, python-format
  92. msgid "2 columns"
  93. msgstr ""
  94. #. module: web_editor
  95. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  96. msgid "25"
  97. msgstr ""
  98. #. module: web_editor
  99. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  100. msgid "25%"
  101. msgstr ""
  102. #. module: web_editor
  103. #. openerp-web
  104. #: code:addons/web_editor/static/src/xml/editor.xml:0
  105. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  106. #, python-format
  107. msgid "2x"
  108. msgstr ""
  109. #. module: web_editor
  110. #. openerp-web
  111. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  112. #, python-format
  113. msgid "3 Stars"
  114. msgstr ""
  115. #. module: web_editor
  116. #. openerp-web
  117. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  118. #, python-format
  119. msgid "3 columns"
  120. msgstr ""
  121. #. module: web_editor
  122. #. openerp-web
  123. #: code:addons/web_editor/static/src/xml/editor.xml:0
  124. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  125. #, python-format
  126. msgid "3x"
  127. msgstr ""
  128. #. module: web_editor
  129. #. openerp-web
  130. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  131. #, python-format
  132. msgid "4 columns"
  133. msgstr ""
  134. #. module: web_editor
  135. #. openerp-web
  136. #: code:addons/web_editor/static/src/xml/editor.xml:0
  137. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  138. #, python-format
  139. msgid "4x"
  140. msgstr ""
  141. #. module: web_editor
  142. #. openerp-web
  143. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  144. #, python-format
  145. msgid "5 Stars"
  146. msgstr ""
  147. #. module: web_editor
  148. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  149. msgid "50%"
  150. msgstr ""
  151. #. module: web_editor
  152. #. openerp-web
  153. #: code:addons/web_editor/static/src/xml/editor.xml:0
  154. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  155. #, python-format
  156. msgid "5x"
  157. msgstr ""
  158. #. module: web_editor
  159. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  160. msgid "90"
  161. msgstr ""
  162. #. module: web_editor
  163. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  164. msgid "<span class=\"flex-grow-0 ms-1 text-white-50\">%</span>"
  165. msgstr ""
  166. #. module: web_editor
  167. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  168. msgid "<span class=\"flex-grow-0 ms-1 text-white-50\">deg</span>"
  169. msgstr ""
  170. #. module: web_editor
  171. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  172. msgid "<span class=\"me-2 ms-3\">Y</span>"
  173. msgstr ""
  174. #. module: web_editor
  175. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  176. msgid "<span class=\"me-2\">X</span>"
  177. msgstr ""
  178. #. module: web_editor
  179. #: model_terms:ir.ui.view,arch_db:web_editor.snippets
  180. msgid "<span>Blocks</span>"
  181. msgstr ""
  182. #. module: web_editor
  183. #: model_terms:ir.ui.view,arch_db:web_editor.snippets
  184. msgid "<span>Customize</span>"
  185. msgstr ""
  186. #. module: web_editor
  187. #. openerp-web
  188. #: code:addons/web_editor/static/src/js/common/ace.js:0
  189. #, python-format
  190. msgid ""
  191. "A server error occured. Please check you correctly signed in and that the "
  192. "file you are saving is correctly formatted."
  193. msgstr ""
  194. #. module: web_editor
  195. #. openerp-web
  196. #: code:addons/web_editor/static/src/xml/editor.xml:0
  197. #, python-format
  198. msgid "Above"
  199. msgstr ""
  200. #. module: web_editor
  201. #. openerp-web
  202. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  203. #, python-format
  204. msgid "Accepts"
  205. msgstr ""
  206. #. module: web_editor
  207. #. openerp-web
  208. #: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0
  209. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  210. #, python-format
  211. msgid "Add"
  212. msgstr ""
  213. #. module: web_editor
  214. #. openerp-web
  215. #: code:addons/web_editor/static/src/xml/editor.xml:0
  216. #, python-format
  217. msgid "Add Column"
  218. msgstr ""
  219. #. module: web_editor
  220. #. openerp-web
  221. #: code:addons/web_editor/static/src/xml/editor.xml:0
  222. #, python-format
  223. msgid "Add Row"
  224. msgstr ""
  225. #. module: web_editor
  226. #. openerp-web
  227. #: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0
  228. #, python-format
  229. msgid "Add URL"
  230. msgstr ""
  231. #. module: web_editor
  232. #. openerp-web
  233. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  234. #, python-format
  235. msgid "Add a blockquote section."
  236. msgstr ""
  237. #. module: web_editor
  238. #. openerp-web
  239. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  240. #, python-format
  241. msgid "Add a button."
  242. msgstr ""
  243. #. module: web_editor
  244. #. openerp-web
  245. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  246. #, python-format
  247. msgid "Add a code section."
  248. msgstr ""
  249. #. module: web_editor
  250. #. openerp-web
  251. #: code:addons/web_editor/static/src/xml/editor.xml:0
  252. #, python-format
  253. msgid "Add a column left"
  254. msgstr ""
  255. #. module: web_editor
  256. #. openerp-web
  257. #: code:addons/web_editor/static/src/xml/editor.xml:0
  258. #, python-format
  259. msgid "Add a column right"
  260. msgstr ""
  261. #. module: web_editor
  262. #. openerp-web
  263. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  264. #, python-format
  265. msgid "Add a link."
  266. msgstr ""
  267. #. module: web_editor
  268. #. openerp-web
  269. #: code:addons/web_editor/static/src/xml/editor.xml:0
  270. #, python-format
  271. msgid "Add a row above"
  272. msgstr ""
  273. #. module: web_editor
  274. #. openerp-web
  275. #: code:addons/web_editor/static/src/xml/editor.xml:0
  276. #, python-format
  277. msgid "Add a row below"
  278. msgstr ""
  279. #. module: web_editor
  280. #. openerp-web
  281. #: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0
  282. #, python-format
  283. msgid "Add document"
  284. msgstr ""
  285. #. module: web_editor
  286. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  287. msgid "Aden"
  288. msgstr ""
  289. #. module: web_editor
  290. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  291. msgid "Airy & Zigs"
  292. msgstr ""
  293. #. module: web_editor
  294. #. openerp-web
  295. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0
  296. #, python-format
  297. msgid "Alert"
  298. msgstr ""
  299. #. module: web_editor
  300. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  301. msgid "Align Center"
  302. msgstr ""
  303. #. module: web_editor
  304. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  305. msgid "Align Left"
  306. msgstr ""
  307. #. module: web_editor
  308. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  309. msgid "Align Right"
  310. msgstr ""
  311. #. module: web_editor
  312. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  313. msgid "Alignment"
  314. msgstr ""
  315. #. module: web_editor
  316. #. openerp-web
  317. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0
  318. #, python-format
  319. msgid "All"
  320. msgstr ""
  321. #. module: web_editor
  322. #. openerp-web
  323. #: code:addons/web_editor/static/src/xml/ace.xml:0
  324. #, python-format
  325. msgid "All SCSS Files"
  326. msgstr ""
  327. #. module: web_editor
  328. #. openerp-web
  329. #: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0
  330. #, python-format
  331. msgid "All documents have been loaded"
  332. msgstr ""
  333. #. module: web_editor
  334. #. openerp-web
  335. #: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0
  336. #, python-format
  337. msgid "All images have been loaded"
  338. msgstr ""
  339. #. module: web_editor
  340. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  341. msgid "Alt tag"
  342. msgstr ""
  343. #. module: web_editor
  344. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  345. msgid "Angle"
  346. msgstr ""
  347. #. module: web_editor
  348. #. openerp-web
  349. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  350. #, python-format
  351. msgid "Animated"
  352. msgstr ""
  353. #. module: web_editor
  354. #. openerp-web
  355. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  356. #, python-format
  357. msgid "Anonymous"
  358. msgstr ""
  359. #. module: web_editor
  360. #. openerp-web
  361. #: code:addons/web_editor/static/src/xml/editor.xml:0
  362. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  363. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  364. #, python-format
  365. msgid "Apply"
  366. msgstr ""
  367. #. module: web_editor
  368. #. openerp-web
  369. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  370. #, python-format
  371. msgid "Are you sure you want to delete the snippet: %s ?"
  372. msgstr ""
  373. #. module: web_editor
  374. #. openerp-web
  375. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0
  376. #, python-format
  377. msgid "Are you sure you want to delete this file ?"
  378. msgstr ""
  379. #. module: web_editor
  380. #. openerp-web
  381. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  382. #, python-format
  383. msgid "Aspect Ratio"
  384. msgstr ""
  385. #. module: web_editor
  386. #: model:ir.model,name:web_editor.model_web_editor_assets
  387. msgid "Assets Utils"
  388. msgstr ""
  389. #. module: web_editor
  390. #: model:ir.model,name:web_editor.model_ir_attachment
  391. msgid "Attachment"
  392. msgstr ""
  393. #. module: web_editor
  394. #: model:ir.model.fields,field_description:web_editor.field_ir_attachment__local_url
  395. msgid "Attachment URL"
  396. msgstr ""
  397. #. module: web_editor
  398. #. openerp-web
  399. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  400. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  401. #, python-format
  402. msgid "Autoconvert to relative link"
  403. msgstr ""
  404. #. module: web_editor
  405. #. openerp-web
  406. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  407. #, python-format
  408. msgid "Autoplay"
  409. msgstr ""
  410. #. module: web_editor
  411. #. openerp-web
  412. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  413. #, python-format
  414. msgid "Back to one column."
  415. msgstr ""
  416. #. module: web_editor
  417. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  418. msgid "Background"
  419. msgstr ""
  420. #. module: web_editor
  421. #. openerp-web
  422. #: code:addons/web_editor/static/src/xml/editor.xml:0
  423. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  424. #, python-format
  425. msgid "Background Color"
  426. msgstr ""
  427. #. module: web_editor
  428. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  429. msgid "Background Position"
  430. msgstr ""
  431. #. module: web_editor
  432. #: model:ir.model,name:web_editor.model_base
  433. msgid "Base"
  434. msgstr ""
  435. #. module: web_editor
  436. #. openerp-web
  437. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  438. #, python-format
  439. msgid "Basic blocks"
  440. msgstr ""
  441. #. module: web_editor
  442. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  443. msgid "Basics"
  444. msgstr ""
  445. #. module: web_editor
  446. #. openerp-web
  447. #: code:addons/web_editor/static/src/xml/editor.xml:0
  448. #, python-format
  449. msgid "Below"
  450. msgstr ""
  451. #. module: web_editor
  452. #. openerp-web
  453. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  454. #, python-format
  455. msgid "Big section heading."
  456. msgstr ""
  457. #. module: web_editor
  458. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  459. msgid "Blobs"
  460. msgstr ""
  461. #. module: web_editor
  462. #. openerp-web
  463. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  464. #, python-format
  465. msgid "Block"
  466. msgstr ""
  467. #. module: web_editor
  468. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  469. msgid "Blocks & Rainy"
  470. msgstr ""
  471. #. module: web_editor
  472. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  473. msgid "Blur"
  474. msgstr ""
  475. #. module: web_editor
  476. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  477. msgid "Bold"
  478. msgstr ""
  479. #. module: web_editor
  480. #. openerp-web
  481. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  482. #, python-format
  483. msgid "Border"
  484. msgstr ""
  485. #. module: web_editor
  486. #. openerp-web
  487. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  488. #, python-format
  489. msgid "Border Color"
  490. msgstr ""
  491. #. module: web_editor
  492. #. openerp-web
  493. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  494. #, python-format
  495. msgid "Border Style"
  496. msgstr ""
  497. #. module: web_editor
  498. #. openerp-web
  499. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  500. #, python-format
  501. msgid "Border Width"
  502. msgstr ""
  503. #. module: web_editor
  504. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  505. msgid "Brannan"
  506. msgstr ""
  507. #. module: web_editor
  508. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  509. msgid "Brightness"
  510. msgstr ""
  511. #. module: web_editor
  512. #. openerp-web
  513. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  514. #, python-format
  515. msgid "Bulleted list"
  516. msgstr ""
  517. #. module: web_editor
  518. #. openerp-web
  519. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  520. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  521. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  522. #, python-format
  523. msgid "Button"
  524. msgstr ""
  525. #. module: web_editor
  526. #. openerp-web
  527. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  528. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  529. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  530. #, python-format
  531. msgid "Cancel"
  532. msgstr ""
  533. #. module: web_editor
  534. #. openerp-web
  535. #: code:addons/web_editor/static/src/js/common/ace.js:0
  536. #, python-format
  537. msgid "Careful !"
  538. msgstr ""
  539. #. module: web_editor
  540. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  541. msgid "Center"
  542. msgstr ""
  543. #. module: web_editor
  544. #. openerp-web
  545. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/alt_dialog.js:0
  546. #, python-format
  547. msgid "Change media description and tooltip"
  548. msgstr ""
  549. #. module: web_editor
  550. #. openerp-web
  551. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  552. #, python-format
  553. msgid "Checklist"
  554. msgstr ""
  555. #. module: web_editor
  556. #. openerp-web
  557. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  558. #, python-format
  559. msgid "Choose a record..."
  560. msgstr ""
  561. #. module: web_editor
  562. #. openerp-web
  563. #: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0
  564. #: code:addons/web_editor/static/src/xml/ace.xml:0
  565. #: code:addons/web_editor/static/src/xml/ace.xml:0
  566. #, python-format
  567. msgid "Close"
  568. msgstr ""
  569. #. module: web_editor
  570. #. openerp-web
  571. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  572. #: code:addons/web_editor/static/src/xml/editor.xml:0
  573. #, python-format
  574. msgid "Code"
  575. msgstr ""
  576. #. module: web_editor
  577. #. openerp-web
  578. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  579. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  580. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  581. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_color_widget
  582. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  583. #, python-format
  584. msgid "Color"
  585. msgstr ""
  586. #. module: web_editor
  587. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  588. msgid "Color filter"
  589. msgstr ""
  590. #. module: web_editor
  591. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  592. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  593. msgid "Colors"
  594. msgstr ""
  595. #. module: web_editor
  596. #. openerp-web
  597. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  598. #: code:addons/web_editor/static/src/xml/editor.xml:0
  599. #, python-format
  600. msgid "Column"
  601. msgstr ""
  602. #. module: web_editor
  603. #. openerp-web
  604. #: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0
  605. #, python-format
  606. msgid "Common colors"
  607. msgstr ""
  608. #. module: web_editor
  609. #. openerp-web
  610. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  611. #, python-format
  612. msgid "Confirm"
  613. msgstr ""
  614. #. module: web_editor
  615. #. openerp-web
  616. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  617. #, python-format
  618. msgid "Confirmation"
  619. msgstr ""
  620. #. module: web_editor
  621. #. openerp-web
  622. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  623. #, python-format
  624. msgid "Content conflict"
  625. msgstr ""
  626. #. module: web_editor
  627. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  628. msgid "Contrast"
  629. msgstr ""
  630. #. module: web_editor
  631. #. openerp-web
  632. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  633. #, python-format
  634. msgid "Convert into 2 columns."
  635. msgstr ""
  636. #. module: web_editor
  637. #. openerp-web
  638. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  639. #, python-format
  640. msgid "Convert into 3 columns."
  641. msgstr ""
  642. #. module: web_editor
  643. #. openerp-web
  644. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  645. #, python-format
  646. msgid "Convert into 4 columns."
  647. msgstr ""
  648. #. module: web_editor
  649. #. openerp-web
  650. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  651. #, python-format
  652. msgid "Copy Link"
  653. msgstr ""
  654. #. module: web_editor
  655. #. openerp-web
  656. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  657. #, python-format
  658. msgid "Copy-paste your URL or embed code here"
  659. msgstr ""
  660. #. module: web_editor
  661. #. openerp-web
  662. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  663. #, python-format
  664. msgid "Could not install module <strong>%s</strong>"
  665. msgstr ""
  666. #. module: web_editor
  667. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  668. msgid "Cover"
  669. msgstr ""
  670. #. module: web_editor
  671. #. openerp-web
  672. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  673. #, python-format
  674. msgid "Create"
  675. msgstr ""
  676. #. module: web_editor
  677. #. openerp-web
  678. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  679. #, python-format
  680. msgid "Create a list with numbering."
  681. msgstr ""
  682. #. module: web_editor
  683. #. openerp-web
  684. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  685. #, python-format
  686. msgid "Create a simple bulleted list."
  687. msgstr ""
  688. #. module: web_editor
  689. #. openerp-web
  690. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  691. #, python-format
  692. msgid "Create an URL."
  693. msgstr ""
  694. #. module: web_editor
  695. #: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_uid
  696. msgid "Created by"
  697. msgstr ""
  698. #. module: web_editor
  699. #: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__create_date
  700. msgid "Created on"
  701. msgstr ""
  702. #. module: web_editor
  703. #. openerp-web
  704. #: code:addons/web_editor/static/src/xml/editor.xml:0
  705. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  706. #, python-format
  707. msgid "Crop Image"
  708. msgstr ""
  709. #. module: web_editor
  710. #. openerp-web
  711. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0
  712. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  713. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  714. #: model_terms:ir.ui.view,arch_db:web_editor.snippets
  715. #, python-format
  716. msgid "Custom"
  717. msgstr ""
  718. #. module: web_editor
  719. #. openerp-web
  720. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  721. #, python-format
  722. msgid "Custom %s"
  723. msgstr ""
  724. #. module: web_editor
  725. #. openerp-web
  726. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  727. #, python-format
  728. msgid "Dailymotion"
  729. msgstr ""
  730. #. module: web_editor
  731. #. openerp-web
  732. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  733. #, python-format
  734. msgid "Dashed"
  735. msgstr ""
  736. #. module: web_editor
  737. #. openerp-web
  738. #: code:addons/web_editor/static/src/xml/editor.xml:0
  739. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  740. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  741. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  742. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  743. #, python-format
  744. msgid "Default"
  745. msgstr ""
  746. #. module: web_editor
  747. #. openerp-web
  748. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  749. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  750. #, python-format
  751. msgid "Default + Rounded"
  752. msgstr ""
  753. #. module: web_editor
  754. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  755. msgid "Define a custom gradient"
  756. msgstr ""
  757. #. module: web_editor
  758. #. openerp-web
  759. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  760. #, python-format
  761. msgid "Delete %s"
  762. msgstr ""
  763. #. module: web_editor
  764. #. openerp-web
  765. #: code:addons/web_editor/static/src/xml/editor.xml:0
  766. #, python-format
  767. msgid "Delete current table"
  768. msgstr ""
  769. #. module: web_editor
  770. #. openerp-web
  771. #: code:addons/web_editor/static/src/xml/editor.xml:0
  772. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  773. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  774. #, python-format
  775. msgid "Description"
  776. msgstr ""
  777. #. module: web_editor
  778. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  779. msgid "Devices"
  780. msgstr ""
  781. #. module: web_editor
  782. #. openerp-web
  783. #: code:addons/web_editor/static/src/components/media_dialog/media_dialog.xml:0
  784. #: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0
  785. #: code:addons/web_editor/static/src/xml/editor.xml:0
  786. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  787. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  788. #: model_terms:ir.ui.view,arch_db:web_editor.snippets
  789. #, python-format
  790. msgid "Discard"
  791. msgstr ""
  792. #. module: web_editor
  793. #: model_terms:ir.ui.view,arch_db:web_editor.snippets
  794. msgid "Discard record"
  795. msgstr ""
  796. #. module: web_editor
  797. #: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__display_name
  798. msgid "Display Name"
  799. msgstr ""
  800. #. module: web_editor
  801. #. openerp-web
  802. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  803. #, python-format
  804. msgid "Do you want to install the %s App?"
  805. msgstr ""
  806. #. module: web_editor
  807. #. openerp-web
  808. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  809. #, python-format
  810. msgid "Dotted"
  811. msgstr ""
  812. #. module: web_editor
  813. #. openerp-web
  814. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  815. #, python-format
  816. msgid "Double"
  817. msgstr ""
  818. #. module: web_editor
  819. #. openerp-web
  820. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  821. #, python-format
  822. msgid "Double-click to edit"
  823. msgstr ""
  824. #. module: web_editor
  825. #. openerp-web
  826. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  827. #, python-format
  828. msgid "Drag and drop the building block."
  829. msgstr ""
  830. #. module: web_editor
  831. #. openerp-web
  832. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  833. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  834. #, python-format
  835. msgid "Duplicate Container"
  836. msgstr ""
  837. #. module: web_editor
  838. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  839. msgid "Dynamic Colors"
  840. msgstr ""
  841. #. module: web_editor
  842. #. openerp-web
  843. #: code:addons/web_editor/static/src/js/backend/html_field.js:0
  844. #, python-format
  845. msgid "Dynamic Placeholder"
  846. msgstr ""
  847. #. module: web_editor
  848. #: code:addons/web_editor/controllers/main.py:0
  849. #, python-format
  850. msgid "ERROR: couldn't get download urls from media library."
  851. msgstr ""
  852. #. module: web_editor
  853. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  854. msgid "EarlyBird"
  855. msgstr ""
  856. #. module: web_editor
  857. #. openerp-web
  858. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  859. #, python-format
  860. msgid "Edit Link"
  861. msgstr ""
  862. #. module: web_editor
  863. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  864. msgid "Edit image"
  865. msgstr ""
  866. #. module: web_editor
  867. #. openerp-web
  868. #: code:addons/web_editor/static/src/xml/editor.xml:0
  869. #, python-format
  870. msgid "Edit media description"
  871. msgstr ""
  872. #. module: web_editor
  873. #. openerp-web
  874. #: code:addons/web_editor/static/src/xml/ace.xml:0
  875. #, python-format
  876. msgid ""
  877. "Editing a built-in file through this editor is not advised, as it will "
  878. "prevent it from being updated during future App upgrades."
  879. msgstr ""
  880. #. module: web_editor
  881. #. openerp-web
  882. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  883. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  884. #, python-format
  885. msgid "Embed"
  886. msgstr ""
  887. #. module: web_editor
  888. #. openerp-web
  889. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  890. #, python-format
  891. msgid "Embed Image"
  892. msgstr ""
  893. #. module: web_editor
  894. #. openerp-web
  895. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  896. #, python-format
  897. msgid "Embed Youtube Video"
  898. msgstr ""
  899. #. module: web_editor
  900. #. openerp-web
  901. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  902. #, python-format
  903. msgid "Embed the image in the document."
  904. msgstr ""
  905. #. module: web_editor
  906. #. openerp-web
  907. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  908. #, python-format
  909. msgid "Embed the youtube video in the document."
  910. msgstr ""
  911. #. module: web_editor
  912. #. openerp-web
  913. #: code:addons/web_editor/static/src/js/common/ace.js:0
  914. #, python-format
  915. msgid "Expected "
  916. msgstr ""
  917. #. module: web_editor
  918. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  919. msgid "Extend to the closest corner"
  920. msgstr ""
  921. #. module: web_editor
  922. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  923. msgid "Extend to the closest side"
  924. msgstr ""
  925. #. module: web_editor
  926. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  927. msgid "Extend to the farthest corner"
  928. msgstr ""
  929. #. module: web_editor
  930. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  931. msgid "Extend to the farthest side"
  932. msgstr ""
  933. #. module: web_editor
  934. #. openerp-web
  935. #: code:addons/web_editor/static/src/components/upload_progress_toast/upload_progress_toast.xml:0
  936. #, python-format
  937. msgid "File has been uploaded"
  938. msgstr ""
  939. #. module: web_editor
  940. #. openerp-web
  941. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  942. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  943. #, python-format
  944. msgid "Fill"
  945. msgstr ""
  946. #. module: web_editor
  947. #. openerp-web
  948. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  949. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  950. #, python-format
  951. msgid "Fill + Rounded"
  952. msgstr ""
  953. #. module: web_editor
  954. #. openerp-web
  955. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  956. #, python-format
  957. msgid "Fill Color"
  958. msgstr ""
  959. #. module: web_editor
  960. #. openerp-web
  961. #: code:addons/web_editor/static/src/xml/ace.xml:0
  962. #: code:addons/web_editor/static/src/xml/ace.xml:0
  963. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  964. #, python-format
  965. msgid "Filter"
  966. msgstr ""
  967. #. module: web_editor
  968. #: model_terms:ir.ui.view,arch_db:web_editor.snippets
  969. msgid "First Panel"
  970. msgstr ""
  971. #. module: web_editor
  972. #. openerp-web
  973. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  974. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  975. #, python-format
  976. msgid "Flat"
  977. msgstr ""
  978. #. module: web_editor
  979. #. openerp-web
  980. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0
  981. #, python-format
  982. msgid "Flexible"
  983. msgstr ""
  984. #. module: web_editor
  985. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  986. msgid "Flip"
  987. msgstr ""
  988. #. module: web_editor
  989. #. openerp-web
  990. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  991. #, python-format
  992. msgid "Flip Horizontal"
  993. msgstr ""
  994. #. module: web_editor
  995. #. openerp-web
  996. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  997. #, python-format
  998. msgid "Flip Vertical"
  999. msgstr ""
  1000. #. module: web_editor
  1001. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  1002. msgid "Floating shapes"
  1003. msgstr ""
  1004. #. module: web_editor
  1005. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1006. msgid "Floats"
  1007. msgstr ""
  1008. #. module: web_editor
  1009. #. openerp-web
  1010. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1011. #, python-format
  1012. msgid "Font Color"
  1013. msgstr ""
  1014. #. module: web_editor
  1015. #. openerp-web
  1016. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1017. #, python-format
  1018. msgid "Font size"
  1019. msgstr ""
  1020. #. module: web_editor
  1021. #. openerp-web
  1022. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1023. #, python-format
  1024. msgid "For technical reasons, this block cannot be dropped here"
  1025. msgstr ""
  1026. #. module: web_editor
  1027. #. openerp-web
  1028. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1029. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1030. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1031. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1032. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1033. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1034. #: code:addons/web_editor/static/src/xml/ace.xml:0
  1035. #, python-format
  1036. msgid "Format"
  1037. msgstr ""
  1038. #. module: web_editor
  1039. #. openerp-web
  1040. #: code:addons/web_editor/static/src/xml/backend.xml:0
  1041. #, python-format
  1042. msgid "Fullscreen"
  1043. msgstr ""
  1044. #. module: web_editor
  1045. #. openerp-web
  1046. #: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0
  1047. #, python-format
  1048. msgid ""
  1049. "Get the perfect image by searching in our library of copyright free photos "
  1050. "and illustrations."
  1051. msgstr ""
  1052. #. module: web_editor
  1053. #. openerp-web
  1054. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  1055. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  1056. #, python-format
  1057. msgid "Gradient"
  1058. msgstr ""
  1059. #. module: web_editor
  1060. #: model:ir.model,name:web_editor.model_ir_http
  1061. msgid "HTTP Routing"
  1062. msgstr ""
  1063. #. module: web_editor
  1064. #. openerp-web
  1065. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1066. #, python-format
  1067. msgid "Header 1"
  1068. msgstr ""
  1069. #. module: web_editor
  1070. #. openerp-web
  1071. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1072. #, python-format
  1073. msgid "Header 2"
  1074. msgstr ""
  1075. #. module: web_editor
  1076. #. openerp-web
  1077. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1078. #, python-format
  1079. msgid "Header 3"
  1080. msgstr ""
  1081. #. module: web_editor
  1082. #. openerp-web
  1083. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1084. #, python-format
  1085. msgid "Header 4"
  1086. msgstr ""
  1087. #. module: web_editor
  1088. #. openerp-web
  1089. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1090. #, python-format
  1091. msgid "Header 5"
  1092. msgstr ""
  1093. #. module: web_editor
  1094. #. openerp-web
  1095. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1096. #, python-format
  1097. msgid "Header 6"
  1098. msgstr ""
  1099. #. module: web_editor
  1100. #. openerp-web
  1101. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1102. #, python-format
  1103. msgid "Heading 1"
  1104. msgstr ""
  1105. #. module: web_editor
  1106. #. openerp-web
  1107. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1108. #, python-format
  1109. msgid "Heading 2"
  1110. msgstr ""
  1111. #. module: web_editor
  1112. #. openerp-web
  1113. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1114. #, python-format
  1115. msgid "Heading 3"
  1116. msgstr ""
  1117. #. module: web_editor
  1118. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  1119. msgid "Height"
  1120. msgstr ""
  1121. #. module: web_editor
  1122. #. openerp-web
  1123. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  1124. #, python-format
  1125. msgid "Hide Dailymotion logo"
  1126. msgstr ""
  1127. #. module: web_editor
  1128. #. openerp-web
  1129. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  1130. #, python-format
  1131. msgid "Hide Youtube logo"
  1132. msgstr ""
  1133. #. module: web_editor
  1134. #. openerp-web
  1135. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  1136. #, python-format
  1137. msgid "Hide fullscreen button"
  1138. msgstr ""
  1139. #. module: web_editor
  1140. #. openerp-web
  1141. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  1142. #, python-format
  1143. msgid "Hide player controls"
  1144. msgstr ""
  1145. #. module: web_editor
  1146. #. openerp-web
  1147. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  1148. #, python-format
  1149. msgid "Hide sharing button"
  1150. msgstr ""
  1151. #. module: web_editor
  1152. #. openerp-web
  1153. #: code:addons/web_editor/static/src/js/backend/field_html.js:0
  1154. #: code:addons/web_editor/static/src/js/backend/html_field.js:0
  1155. #, python-format
  1156. msgid "Html"
  1157. msgstr ""
  1158. #. module: web_editor
  1159. #: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__id
  1160. msgid "ID"
  1161. msgstr ""
  1162. #. module: web_editor
  1163. #. openerp-web
  1164. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1165. #, python-format
  1166. msgid "Icon"
  1167. msgstr ""
  1168. #. module: web_editor
  1169. #. openerp-web
  1170. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1171. #, python-format
  1172. msgid "Icon Formatting"
  1173. msgstr ""
  1174. #. module: web_editor
  1175. #. openerp-web
  1176. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1177. #, python-format
  1178. msgid "Icon size 1x"
  1179. msgstr ""
  1180. #. module: web_editor
  1181. #. openerp-web
  1182. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1183. #, python-format
  1184. msgid "Icon size 2x"
  1185. msgstr ""
  1186. #. module: web_editor
  1187. #. openerp-web
  1188. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1189. #, python-format
  1190. msgid "Icon size 3x"
  1191. msgstr ""
  1192. #. module: web_editor
  1193. #. openerp-web
  1194. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1195. #, python-format
  1196. msgid "Icon size 4x"
  1197. msgstr ""
  1198. #. module: web_editor
  1199. #. openerp-web
  1200. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1201. #, python-format
  1202. msgid "Icon size 5x"
  1203. msgstr ""
  1204. #. module: web_editor
  1205. #. openerp-web
  1206. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1207. #, python-format
  1208. msgid ""
  1209. "If you discard the current edits, all unsaved changes will be lost. You can "
  1210. "cancel to return to edit mode."
  1211. msgstr ""
  1212. #. module: web_editor
  1213. #. openerp-web
  1214. #: code:addons/web_editor/static/src/js/common/ace.js:0
  1215. #, python-format
  1216. msgid ""
  1217. "If you reset this file, all your customizations will be lost as it will be "
  1218. "reverted to the default file."
  1219. msgstr ""
  1220. #. module: web_editor
  1221. #. openerp-web
  1222. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0
  1223. #, python-format
  1224. msgid "Illustrations"
  1225. msgstr ""
  1226. #. module: web_editor
  1227. #. openerp-web
  1228. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1229. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1230. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  1231. #, python-format
  1232. msgid "Image"
  1233. msgstr ""
  1234. #. module: web_editor
  1235. #. openerp-web
  1236. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1237. #, python-format
  1238. msgid "Image Formatting"
  1239. msgstr ""
  1240. #. module: web_editor
  1241. #: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_height
  1242. msgid "Image Height"
  1243. msgstr ""
  1244. #. module: web_editor
  1245. #: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_src
  1246. msgid "Image Src"
  1247. msgstr ""
  1248. #. module: web_editor
  1249. #: model:ir.model.fields,field_description:web_editor.field_ir_attachment__image_width
  1250. msgid "Image Width"
  1251. msgstr ""
  1252. #. module: web_editor
  1253. #. openerp-web
  1254. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1255. #, python-format
  1256. msgid "Image padding"
  1257. msgstr ""
  1258. #. module: web_editor
  1259. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  1260. msgid "Inkwell"
  1261. msgstr ""
  1262. #. module: web_editor
  1263. #. openerp-web
  1264. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1265. #, python-format
  1266. msgid "Inline Text"
  1267. msgstr ""
  1268. #. module: web_editor
  1269. #. openerp-web
  1270. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1271. #, python-format
  1272. msgid "Insert a rating over 3 stars."
  1273. msgstr ""
  1274. #. module: web_editor
  1275. #. openerp-web
  1276. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1277. #, python-format
  1278. msgid "Insert a rating over 5 stars."
  1279. msgstr ""
  1280. #. module: web_editor
  1281. #. openerp-web
  1282. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1283. #, python-format
  1284. msgid "Insert a table."
  1285. msgstr ""
  1286. #. module: web_editor
  1287. #. openerp-web
  1288. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1289. #, python-format
  1290. msgid "Insert a video."
  1291. msgstr ""
  1292. #. module: web_editor
  1293. #. openerp-web
  1294. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1295. #, python-format
  1296. msgid "Insert an horizontal rule separator."
  1297. msgstr ""
  1298. #. module: web_editor
  1299. #. openerp-web
  1300. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1301. #, python-format
  1302. msgid "Insert an image."
  1303. msgstr ""
  1304. #. module: web_editor
  1305. #. openerp-web
  1306. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1307. #, python-format
  1308. msgid "Insert media"
  1309. msgstr ""
  1310. #. module: web_editor
  1311. #. openerp-web
  1312. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1313. #, python-format
  1314. msgid "Insert or edit link"
  1315. msgstr ""
  1316. #. module: web_editor
  1317. #. openerp-web
  1318. #: code:addons/web_editor/static/src/js/backend/html_field.js:0
  1319. #, python-format
  1320. msgid "Insert personalized content"
  1321. msgstr ""
  1322. #. module: web_editor
  1323. #. openerp-web
  1324. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1325. #, python-format
  1326. msgid "Insert table"
  1327. msgstr ""
  1328. #. module: web_editor
  1329. #. openerp-web
  1330. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1331. #, python-format
  1332. msgid "Insert your signature."
  1333. msgstr ""
  1334. #. module: web_editor
  1335. #. openerp-web
  1336. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1337. #, python-format
  1338. msgid "Install"
  1339. msgstr ""
  1340. #. module: web_editor
  1341. #. openerp-web
  1342. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1343. #, python-format
  1344. msgid "Install %s"
  1345. msgstr ""
  1346. #. module: web_editor
  1347. #. openerp-web
  1348. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1349. #, python-format
  1350. msgid "Install in progress"
  1351. msgstr ""
  1352. #. module: web_editor
  1353. #: code:addons/web_editor/models/ir_ui_view.py:0
  1354. #, python-format
  1355. msgid "Invalid field value for %s: %s"
  1356. msgstr ""
  1357. #. module: web_editor
  1358. #. openerp-web
  1359. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1360. #, python-format
  1361. msgid "Invisible Elements"
  1362. msgstr ""
  1363. #. module: web_editor
  1364. #. openerp-web
  1365. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  1366. #, python-format
  1367. msgid "Item"
  1368. msgstr ""
  1369. #. module: web_editor
  1370. #. openerp-web
  1371. #: code:addons/web_editor/static/src/xml/ace.xml:0
  1372. #, python-format
  1373. msgid "JS"
  1374. msgstr ""
  1375. #. module: web_editor
  1376. #. openerp-web
  1377. #: code:addons/web_editor/static/src/js/common/ace.js:0
  1378. #, python-format
  1379. msgid "JS file: %s"
  1380. msgstr ""
  1381. #. module: web_editor
  1382. #. openerp-web
  1383. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1384. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1385. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1386. #, python-format
  1387. msgid "Large"
  1388. msgstr ""
  1389. #. module: web_editor
  1390. #: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub____last_update
  1391. msgid "Last Modified on"
  1392. msgstr ""
  1393. #. module: web_editor
  1394. #: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_uid
  1395. msgid "Last Updated by"
  1396. msgstr ""
  1397. #. module: web_editor
  1398. #: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__write_date
  1399. msgid "Last Updated on"
  1400. msgstr ""
  1401. #. module: web_editor
  1402. #. openerp-web
  1403. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1404. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1405. #, python-format
  1406. msgid "Left"
  1407. msgstr ""
  1408. #. module: web_editor
  1409. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  1410. msgid "Linear"
  1411. msgstr ""
  1412. #. module: web_editor
  1413. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1414. msgid "Lines"
  1415. msgstr ""
  1416. #. module: web_editor
  1417. #. openerp-web
  1418. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0
  1419. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1420. #, python-format
  1421. msgid "Link"
  1422. msgstr ""
  1423. #. module: web_editor
  1424. #. openerp-web
  1425. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1426. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1427. #, python-format
  1428. msgid "Link Label"
  1429. msgstr ""
  1430. #. module: web_editor
  1431. #. openerp-web
  1432. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0
  1433. #, python-format
  1434. msgid "Link copied to clipboard."
  1435. msgstr ""
  1436. #. module: web_editor
  1437. #. openerp-web
  1438. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0
  1439. #, python-format
  1440. msgid "Link to"
  1441. msgstr ""
  1442. #. module: web_editor
  1443. #. openerp-web
  1444. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0
  1445. #, python-format
  1446. msgid "Load more..."
  1447. msgstr ""
  1448. #. module: web_editor
  1449. #. openerp-web
  1450. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  1451. #, python-format
  1452. msgid "Loop"
  1453. msgstr ""
  1454. #. module: web_editor
  1455. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  1456. msgid "Main Color"
  1457. msgstr ""
  1458. #. module: web_editor
  1459. #. openerp-web
  1460. #: code:addons/web_editor/static/src/js/backend/html_field.js:0
  1461. #, python-format
  1462. msgid "Marketing Tools"
  1463. msgstr ""
  1464. #. module: web_editor
  1465. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  1466. msgid "Maven"
  1467. msgstr ""
  1468. #. module: web_editor
  1469. #. openerp-web
  1470. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1471. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1472. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1473. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1474. #, python-format
  1475. msgid "Media"
  1476. msgstr ""
  1477. #. module: web_editor
  1478. #. openerp-web
  1479. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1480. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1481. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1482. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1483. #, python-format
  1484. msgid "Medium"
  1485. msgstr ""
  1486. #. module: web_editor
  1487. #. openerp-web
  1488. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1489. #, python-format
  1490. msgid "Medium section heading."
  1491. msgstr ""
  1492. #. module: web_editor
  1493. #. openerp-web
  1494. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1495. #, python-format
  1496. msgid "More info about this app."
  1497. msgstr ""
  1498. #. module: web_editor
  1499. #. openerp-web
  1500. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0
  1501. #, python-format
  1502. msgid "My Images"
  1503. msgstr ""
  1504. #. module: web_editor
  1505. #: model:ir.model.fields,field_description:web_editor.field_web_editor_converter_test_sub__name
  1506. msgid "Name"
  1507. msgstr ""
  1508. #. module: web_editor
  1509. #. openerp-web
  1510. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1511. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1512. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1513. #, python-format
  1514. msgid "Navigation"
  1515. msgstr ""
  1516. #. module: web_editor
  1517. #. openerp-web
  1518. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1519. #, python-format
  1520. msgid "No"
  1521. msgstr "No"
  1522. #. module: web_editor
  1523. #. openerp-web
  1524. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0
  1525. #, python-format
  1526. msgid "No URL specified"
  1527. msgstr ""
  1528. #. module: web_editor
  1529. #. openerp-web
  1530. #: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0
  1531. #, python-format
  1532. msgid "No documents found."
  1533. msgstr ""
  1534. #. module: web_editor
  1535. #. openerp-web
  1536. #: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0
  1537. #, python-format
  1538. msgid "No images found."
  1539. msgstr ""
  1540. #. module: web_editor
  1541. #. openerp-web
  1542. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1543. #, python-format
  1544. msgid "No location to drop in"
  1545. msgstr ""
  1546. #. module: web_editor
  1547. #. openerp-web
  1548. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  1549. #, python-format
  1550. msgid "No more records"
  1551. msgstr ""
  1552. #. module: web_editor
  1553. #. openerp-web
  1554. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1555. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  1556. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1557. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  1558. #, python-format
  1559. msgid "None"
  1560. msgstr ""
  1561. #. module: web_editor
  1562. #. openerp-web
  1563. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1564. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1565. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  1566. #, python-format
  1567. msgid "Normal"
  1568. msgstr ""
  1569. #. module: web_editor
  1570. #. openerp-web
  1571. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1572. #, python-format
  1573. msgid "Numbered list"
  1574. msgstr ""
  1575. #. module: web_editor
  1576. #: model_terms:ir.ui.view,arch_db:web_editor.tests
  1577. msgid "Odoo Editor Tests"
  1578. msgstr ""
  1579. #. module: web_editor
  1580. #. openerp-web
  1581. #: code:addons/web_editor/static/src/xml/ace.xml:0
  1582. #, python-format
  1583. msgid "Only Custom SCSS Files"
  1584. msgstr ""
  1585. #. module: web_editor
  1586. #. openerp-web
  1587. #: code:addons/web_editor/static/src/xml/ace.xml:0
  1588. #, python-format
  1589. msgid "Only Page SCSS Files"
  1590. msgstr ""
  1591. #. module: web_editor
  1592. #. openerp-web
  1593. #: code:addons/web_editor/static/src/xml/ace.xml:0
  1594. #, python-format
  1595. msgid "Only Views"
  1596. msgstr ""
  1597. #. module: web_editor
  1598. #. openerp-web
  1599. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1600. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1601. #, python-format
  1602. msgid "Open in a new tab"
  1603. msgstr ""
  1604. #. module: web_editor
  1605. #. openerp-web
  1606. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1607. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1608. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1609. #, python-format
  1610. msgid "Open in new window"
  1611. msgstr ""
  1612. #. module: web_editor
  1613. #. openerp-web
  1614. #: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0
  1615. #, python-format
  1616. msgid "Optimized"
  1617. msgstr ""
  1618. #. module: web_editor
  1619. #: model:ir.model.fields,field_description:web_editor.field_ir_attachment__original_id
  1620. msgid "Original (unoptimized, unresized) attachment"
  1621. msgstr ""
  1622. #. module: web_editor
  1623. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  1624. msgid "Origins"
  1625. msgstr ""
  1626. #. module: web_editor
  1627. #. openerp-web
  1628. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1629. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1630. #, python-format
  1631. msgid "Outline"
  1632. msgstr ""
  1633. #. module: web_editor
  1634. #. openerp-web
  1635. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1636. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1637. #, python-format
  1638. msgid "Outline + Rounded"
  1639. msgstr ""
  1640. #. module: web_editor
  1641. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1642. msgid "Padding"
  1643. msgstr ""
  1644. #. module: web_editor
  1645. #. openerp-web
  1646. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1647. #, python-format
  1648. msgid "Page Options"
  1649. msgstr ""
  1650. #. module: web_editor
  1651. #. openerp-web
  1652. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1653. #, python-format
  1654. msgid "Paragraph block."
  1655. msgstr ""
  1656. #. module: web_editor
  1657. #. openerp-web
  1658. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1659. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1660. #, python-format
  1661. msgid "Paste"
  1662. msgstr ""
  1663. #. module: web_editor
  1664. #. openerp-web
  1665. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1666. #, python-format
  1667. msgid "Paste as URL"
  1668. msgstr ""
  1669. #. module: web_editor
  1670. #. openerp-web
  1671. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  1672. #, python-format
  1673. msgid "Paste as text"
  1674. msgstr ""
  1675. #. module: web_editor
  1676. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1677. msgid "Patterns"
  1678. msgstr ""
  1679. #. module: web_editor
  1680. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  1681. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  1682. msgid "Position"
  1683. msgstr ""
  1684. #. module: web_editor
  1685. #. openerp-web
  1686. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  1687. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1688. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1689. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1690. #, python-format
  1691. msgid "Preview"
  1692. msgstr ""
  1693. #. module: web_editor
  1694. #. openerp-web
  1695. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0
  1696. #, python-format
  1697. msgid "Primary"
  1698. msgstr ""
  1699. #. module: web_editor
  1700. #: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__c
  1701. msgid "Qu'est-ce qu'il fout ce maudit pancake, tabernacle ?"
  1702. msgstr ""
  1703. #. module: web_editor
  1704. #: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__a
  1705. msgid "Qu'il n'est pas arrivé à Toronto"
  1706. msgstr ""
  1707. #. module: web_editor
  1708. #: model:ir.model.fields.selection,name:web_editor.selection__web_editor_converter_test__selection_str__b
  1709. msgid "Qu'il était supposé arriver à Toronto"
  1710. msgstr ""
  1711. #. module: web_editor
  1712. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  1713. msgid "Quality"
  1714. msgstr ""
  1715. #. module: web_editor
  1716. #. openerp-web
  1717. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1718. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1719. #, python-format
  1720. msgid "Quote"
  1721. msgstr ""
  1722. #. module: web_editor
  1723. #: model:ir.model,name:web_editor.model_ir_qweb
  1724. msgid "Qweb"
  1725. msgstr ""
  1726. #. module: web_editor
  1727. #: model:ir.model,name:web_editor.model_ir_qweb_field
  1728. msgid "Qweb Field"
  1729. msgstr ""
  1730. #. module: web_editor
  1731. #: model:ir.model,name:web_editor.model_ir_qweb_field_contact
  1732. msgid "Qweb Field Contact"
  1733. msgstr ""
  1734. #. module: web_editor
  1735. #: model:ir.model,name:web_editor.model_ir_qweb_field_date
  1736. msgid "Qweb Field Date"
  1737. msgstr ""
  1738. #. module: web_editor
  1739. #: model:ir.model,name:web_editor.model_ir_qweb_field_datetime
  1740. msgid "Qweb Field Datetime"
  1741. msgstr ""
  1742. #. module: web_editor
  1743. #: model:ir.model,name:web_editor.model_ir_qweb_field_duration
  1744. msgid "Qweb Field Duration"
  1745. msgstr ""
  1746. #. module: web_editor
  1747. #: model:ir.model,name:web_editor.model_ir_qweb_field_float
  1748. msgid "Qweb Field Float"
  1749. msgstr ""
  1750. #. module: web_editor
  1751. #: model:ir.model,name:web_editor.model_ir_qweb_field_html
  1752. msgid "Qweb Field HTML"
  1753. msgstr ""
  1754. #. module: web_editor
  1755. #: model:ir.model,name:web_editor.model_ir_qweb_field_image
  1756. msgid "Qweb Field Image"
  1757. msgstr ""
  1758. #. module: web_editor
  1759. #: model:ir.model,name:web_editor.model_ir_qweb_field_integer
  1760. msgid "Qweb Field Integer"
  1761. msgstr ""
  1762. #. module: web_editor
  1763. #: model:ir.model,name:web_editor.model_ir_qweb_field_many2one
  1764. msgid "Qweb Field Many to One"
  1765. msgstr ""
  1766. #. module: web_editor
  1767. #: model:ir.model,name:web_editor.model_ir_qweb_field_monetary
  1768. msgid "Qweb Field Monetary"
  1769. msgstr ""
  1770. #. module: web_editor
  1771. #: model:ir.model,name:web_editor.model_ir_qweb_field_relative
  1772. msgid "Qweb Field Relative"
  1773. msgstr ""
  1774. #. module: web_editor
  1775. #: model:ir.model,name:web_editor.model_ir_qweb_field_selection
  1776. msgid "Qweb Field Selection"
  1777. msgstr ""
  1778. #. module: web_editor
  1779. #: model:ir.model,name:web_editor.model_ir_qweb_field_text
  1780. msgid "Qweb Field Text"
  1781. msgstr ""
  1782. #. module: web_editor
  1783. #: model:ir.model,name:web_editor.model_ir_qweb_field_qweb
  1784. msgid "Qweb Field qweb"
  1785. msgstr ""
  1786. #. module: web_editor
  1787. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  1788. msgid "Radial"
  1789. msgstr ""
  1790. #. module: web_editor
  1791. #. openerp-web
  1792. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1793. #, python-format
  1794. msgid "Readonly field"
  1795. msgstr ""
  1796. #. module: web_editor
  1797. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1798. msgid "Redirect the user elsewhere when he clicks on the media."
  1799. msgstr ""
  1800. #. module: web_editor
  1801. #. openerp-web
  1802. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1803. #, python-format
  1804. msgid "Remove (DELETE)"
  1805. msgstr ""
  1806. #. module: web_editor
  1807. #. openerp-web
  1808. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  1809. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  1810. #, python-format
  1811. msgid "Remove Block"
  1812. msgstr ""
  1813. #. module: web_editor
  1814. #. openerp-web
  1815. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1816. #, python-format
  1817. msgid "Remove Current"
  1818. msgstr ""
  1819. #. module: web_editor
  1820. #. openerp-web
  1821. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1822. #, python-format
  1823. msgid "Remove Link"
  1824. msgstr ""
  1825. #. module: web_editor
  1826. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  1827. msgid "Remove Selected Color"
  1828. msgstr ""
  1829. #. module: web_editor
  1830. #. openerp-web
  1831. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  1832. #, python-format
  1833. msgid "Remove columns"
  1834. msgstr ""
  1835. #. module: web_editor
  1836. #. openerp-web
  1837. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1838. #, python-format
  1839. msgid "Remove current column"
  1840. msgstr ""
  1841. #. module: web_editor
  1842. #. openerp-web
  1843. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1844. #, python-format
  1845. msgid "Remove current row"
  1846. msgstr ""
  1847. #. module: web_editor
  1848. #. openerp-web
  1849. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1850. #, python-format
  1851. msgid "Remove format"
  1852. msgstr ""
  1853. #. module: web_editor
  1854. #. openerp-web
  1855. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1856. #, python-format
  1857. msgid "Remove link"
  1858. msgstr ""
  1859. #. module: web_editor
  1860. #. openerp-web
  1861. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1862. #, python-format
  1863. msgid "Rename %s"
  1864. msgstr ""
  1865. #. module: web_editor
  1866. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  1867. msgid "Repeat pattern"
  1868. msgstr ""
  1869. #. module: web_editor
  1870. #. openerp-web
  1871. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  1872. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1873. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1874. #, python-format
  1875. msgid "Replace"
  1876. msgstr ""
  1877. #. module: web_editor
  1878. #. openerp-web
  1879. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1880. #, python-format
  1881. msgid "Replace media"
  1882. msgstr ""
  1883. #. module: web_editor
  1884. #. openerp-web
  1885. #: code:addons/web_editor/static/src/xml/ace.xml:0
  1886. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  1887. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1888. #, python-format
  1889. msgid "Reset"
  1890. msgstr ""
  1891. #. module: web_editor
  1892. #. openerp-web
  1893. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1894. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1895. #, python-format
  1896. msgid "Reset Image"
  1897. msgstr ""
  1898. #. module: web_editor
  1899. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1900. msgid "Reset crop"
  1901. msgstr ""
  1902. #. module: web_editor
  1903. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1904. msgid "Reset transformation"
  1905. msgstr ""
  1906. #. module: web_editor
  1907. #. openerp-web
  1908. #: code:addons/web_editor/static/src/js/common/ace.js:0
  1909. #, python-format
  1910. msgid "Reseting views is not supported yet"
  1911. msgstr ""
  1912. #. module: web_editor
  1913. #. openerp-web
  1914. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1915. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1916. #, python-format
  1917. msgid "Resize Default"
  1918. msgstr ""
  1919. #. module: web_editor
  1920. #. openerp-web
  1921. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1922. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1923. #, python-format
  1924. msgid "Resize Full"
  1925. msgstr ""
  1926. #. module: web_editor
  1927. #. openerp-web
  1928. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1929. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1930. #, python-format
  1931. msgid "Resize Half"
  1932. msgstr ""
  1933. #. module: web_editor
  1934. #. openerp-web
  1935. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1936. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1937. #, python-format
  1938. msgid "Resize Quarter"
  1939. msgstr ""
  1940. #. module: web_editor
  1941. #. openerp-web
  1942. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1943. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  1944. #, python-format
  1945. msgid "Right"
  1946. msgstr ""
  1947. #. module: web_editor
  1948. #. openerp-web
  1949. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1950. #, python-format
  1951. msgid "Rotate Left"
  1952. msgstr ""
  1953. #. module: web_editor
  1954. #. openerp-web
  1955. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  1956. #, python-format
  1957. msgid "Rotate Right"
  1958. msgstr ""
  1959. #. module: web_editor
  1960. #. openerp-web
  1961. #: code:addons/web_editor/static/src/xml/editor.xml:0
  1962. #, python-format
  1963. msgid "Row"
  1964. msgstr ""
  1965. #. module: web_editor
  1966. #. openerp-web
  1967. #: code:addons/web_editor/static/src/xml/ace.xml:0
  1968. #, python-format
  1969. msgid "SCSS (CSS)"
  1970. msgstr ""
  1971. #. module: web_editor
  1972. #. openerp-web
  1973. #: code:addons/web_editor/static/src/js/common/ace.js:0
  1974. #, python-format
  1975. msgid "SCSS file: %s"
  1976. msgstr ""
  1977. #. module: web_editor
  1978. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  1979. msgid "Saturation"
  1980. msgstr ""
  1981. #. module: web_editor
  1982. #. openerp-web
  1983. #: code:addons/web_editor/static/src/js/wysiwyg/dialog.js:0
  1984. #: code:addons/web_editor/static/src/xml/ace.xml:0
  1985. #: model_terms:ir.ui.view,arch_db:web_editor.snippets
  1986. #, python-format
  1987. msgid "Save"
  1988. msgstr ""
  1989. #. module: web_editor
  1990. #. openerp-web
  1991. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  1992. #, python-format
  1993. msgid "Save and Install"
  1994. msgstr ""
  1995. #. module: web_editor
  1996. #. openerp-web
  1997. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  1998. #, python-format
  1999. msgid "Save and Reload"
  2000. msgstr ""
  2001. #. module: web_editor
  2002. #: model_terms:ir.ui.view,arch_db:web_editor.snippets
  2003. msgid "Save record"
  2004. msgstr ""
  2005. #. module: web_editor
  2006. #. openerp-web
  2007. #: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0
  2008. #, python-format
  2009. msgid "Search a document"
  2010. msgstr ""
  2011. #. module: web_editor
  2012. #. openerp-web
  2013. #: code:addons/web_editor/static/src/components/media_dialog/icon_selector.js:0
  2014. #, python-format
  2015. msgid "Search a pictogram"
  2016. msgstr ""
  2017. #. module: web_editor
  2018. #. openerp-web
  2019. #: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0
  2020. #, python-format
  2021. msgid "Search an image"
  2022. msgstr ""
  2023. #. module: web_editor
  2024. #: model_terms:ir.ui.view,arch_db:web_editor.snippets
  2025. msgid "Search for a block (e.g. numbers, image wall, ...)"
  2026. msgstr ""
  2027. #. module: web_editor
  2028. #. openerp-web
  2029. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  2030. #, python-format
  2031. msgid "Search for records..."
  2032. msgstr ""
  2033. #. module: web_editor
  2034. #. openerp-web
  2035. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  2036. #, python-format
  2037. msgid "Search more..."
  2038. msgstr ""
  2039. #. module: web_editor
  2040. #. openerp-web
  2041. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  2042. #, python-format
  2043. msgid "Search to show more records"
  2044. msgstr ""
  2045. #. module: web_editor
  2046. #. openerp-web
  2047. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/link.js:0
  2048. #, python-format
  2049. msgid "Secondary"
  2050. msgstr ""
  2051. #. module: web_editor
  2052. #. openerp-web
  2053. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  2054. #, python-format
  2055. msgid "Select a block on your page to style it."
  2056. msgstr ""
  2057. #. module: web_editor
  2058. #. openerp-web
  2059. #: code:addons/web_editor/static/src/components/media_dialog/media_dialog.js:0
  2060. #, python-format
  2061. msgid "Select a media"
  2062. msgstr ""
  2063. #. module: web_editor
  2064. #. openerp-web
  2065. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2066. #, python-format
  2067. msgid "Separator"
  2068. msgstr ""
  2069. #. module: web_editor
  2070. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2071. msgid "Sepia"
  2072. msgstr ""
  2073. #. module: web_editor
  2074. #. openerp-web
  2075. #: code:addons/web_editor/static/src/js/common/ace.js:0
  2076. #, python-format
  2077. msgid "Server error"
  2078. msgstr ""
  2079. #. module: web_editor
  2080. #. openerp-web
  2081. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2082. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2083. #, python-format
  2084. msgid "Shadow"
  2085. msgstr ""
  2086. #. module: web_editor
  2087. #. openerp-web
  2088. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2089. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2090. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  2091. #, python-format
  2092. msgid "Shape"
  2093. msgstr ""
  2094. #. module: web_editor
  2095. #. openerp-web
  2096. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2097. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2098. #, python-format
  2099. msgid "Shape: Circle"
  2100. msgstr ""
  2101. #. module: web_editor
  2102. #. openerp-web
  2103. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2104. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2105. #, python-format
  2106. msgid "Shape: Rounded"
  2107. msgstr ""
  2108. #. module: web_editor
  2109. #. openerp-web
  2110. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2111. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2112. #, python-format
  2113. msgid "Shape: Thumbnail"
  2114. msgstr ""
  2115. #. module: web_editor
  2116. #. openerp-web
  2117. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0
  2118. #, python-format
  2119. msgid "Show optimized images"
  2120. msgstr ""
  2121. #. module: web_editor
  2122. #. openerp-web
  2123. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2124. #, python-format
  2125. msgid "Signature"
  2126. msgstr ""
  2127. #. module: web_editor
  2128. #. openerp-web
  2129. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2130. #, python-format
  2131. msgid "Simple text paste."
  2132. msgstr ""
  2133. #. module: web_editor
  2134. #. openerp-web
  2135. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  2136. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2137. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2138. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  2139. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2140. #, python-format
  2141. msgid "Size"
  2142. msgstr ""
  2143. #. module: web_editor
  2144. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2145. msgid "Size 1x"
  2146. msgstr ""
  2147. #. module: web_editor
  2148. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2149. msgid "Size 2x"
  2150. msgstr ""
  2151. #. module: web_editor
  2152. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2153. msgid "Size 3x"
  2154. msgstr ""
  2155. #. module: web_editor
  2156. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2157. msgid "Size 4x"
  2158. msgstr ""
  2159. #. module: web_editor
  2160. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2161. msgid "Size 5x"
  2162. msgstr ""
  2163. #. module: web_editor
  2164. #. openerp-web
  2165. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2166. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2167. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2168. #, python-format
  2169. msgid "Small"
  2170. msgstr ""
  2171. #. module: web_editor
  2172. #. openerp-web
  2173. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2174. #, python-format
  2175. msgid "Small section heading."
  2176. msgstr ""
  2177. #. module: web_editor
  2178. #. openerp-web
  2179. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  2180. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  2181. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2182. #, python-format
  2183. msgid "Solid"
  2184. msgstr ""
  2185. #. module: web_editor
  2186. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2187. msgid "Solids"
  2188. msgstr ""
  2189. #. module: web_editor
  2190. #. openerp-web
  2191. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2192. #, python-format
  2193. msgid ""
  2194. "Someone with escalated rights previously modified this area, you are "
  2195. "therefore not able to modify it yourself."
  2196. msgstr ""
  2197. #. module: web_editor
  2198. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2199. msgid "Specials"
  2200. msgstr ""
  2201. #. module: web_editor
  2202. #. openerp-web
  2203. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2204. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2205. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2206. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2207. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2208. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2209. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2210. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2211. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2212. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2213. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2214. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2215. #, python-format
  2216. msgid "Structure"
  2217. msgstr ""
  2218. #. module: web_editor
  2219. #. openerp-web
  2220. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2221. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2222. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2223. #, python-format
  2224. msgid "Style"
  2225. msgstr ""
  2226. #. module: web_editor
  2227. #. openerp-web
  2228. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  2229. #, python-format
  2230. msgid "Suggestions"
  2231. msgstr ""
  2232. #. module: web_editor
  2233. #. openerp-web
  2234. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2235. #, python-format
  2236. msgid "Switch direction"
  2237. msgstr ""
  2238. #. module: web_editor
  2239. #. openerp-web
  2240. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2241. #, python-format
  2242. msgid "Switch the text's direction."
  2243. msgstr ""
  2244. #. module: web_editor
  2245. #. openerp-web
  2246. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2247. #, python-format
  2248. msgid "Table"
  2249. msgstr ""
  2250. #. module: web_editor
  2251. #. openerp-web
  2252. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2253. #, python-format
  2254. msgid "Table Options"
  2255. msgstr ""
  2256. #. module: web_editor
  2257. #. openerp-web
  2258. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2259. #, python-format
  2260. msgid "Table tools"
  2261. msgstr ""
  2262. #. module: web_editor
  2263. #. openerp-web
  2264. #: code:addons/web_editor/static/src/js/common/ace.js:0
  2265. #, python-format
  2266. msgid "Template ID: %s"
  2267. msgstr ""
  2268. #. module: web_editor
  2269. #. openerp-web
  2270. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2271. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  2272. #, python-format
  2273. msgid "Text"
  2274. msgstr ""
  2275. #. module: web_editor
  2276. #. openerp-web
  2277. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2278. #, python-format
  2279. msgid "Text Color"
  2280. msgstr ""
  2281. #. module: web_editor
  2282. #. openerp-web
  2283. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2284. #, python-format
  2285. msgid "Text align"
  2286. msgstr ""
  2287. #. module: web_editor
  2288. #. openerp-web
  2289. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2290. #, python-format
  2291. msgid "Text style"
  2292. msgstr ""
  2293. #. module: web_editor
  2294. #. openerp-web
  2295. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0
  2296. #, python-format
  2297. msgid "The URL does not seem to work."
  2298. msgstr ""
  2299. #. module: web_editor
  2300. #. openerp-web
  2301. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.xml:0
  2302. #, python-format
  2303. msgid "The URL seems valid."
  2304. msgstr ""
  2305. #. module: web_editor
  2306. #: code:addons/web_editor/models/ir_qweb_fields.py:0
  2307. #, python-format
  2308. msgid "The datetime %s does not match the format %s"
  2309. msgstr ""
  2310. #. module: web_editor
  2311. #. openerp-web
  2312. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  2313. #, python-format
  2314. msgid "The provided url does not reference any supported video"
  2315. msgstr ""
  2316. #. module: web_editor
  2317. #: code:addons/web_editor/tools.py:0
  2318. #, python-format
  2319. msgid "The provided url is invalid"
  2320. msgstr ""
  2321. #. module: web_editor
  2322. #. openerp-web
  2323. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  2324. #, python-format
  2325. msgid "The provided url is not valid"
  2326. msgstr ""
  2327. #. module: web_editor
  2328. #. openerp-web
  2329. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2330. #, python-format
  2331. msgid ""
  2332. "The version from the database will be used.\n"
  2333. " If you need to keep your changes, copy the content below and edit the new document."
  2334. msgstr ""
  2335. #. module: web_editor
  2336. #. openerp-web
  2337. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  2338. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  2339. #, python-format
  2340. msgid "Theme"
  2341. msgstr ""
  2342. #. module: web_editor
  2343. #. openerp-web
  2344. #: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0
  2345. #, python-format
  2346. msgid "Theme colors"
  2347. msgstr ""
  2348. #. module: web_editor
  2349. #. openerp-web
  2350. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2351. #, python-format
  2352. msgid "There is a conflict between your version and the one in the database."
  2353. msgstr ""
  2354. #. module: web_editor
  2355. #. openerp-web
  2356. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/link_popover_widget.js:0
  2357. #, python-format
  2358. msgid "This URL is invalid. Preview couldn't be updated."
  2359. msgstr ""
  2360. #. module: web_editor
  2361. #. openerp-web
  2362. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  2363. #, python-format
  2364. msgid "This block is outdated"
  2365. msgstr ""
  2366. #. module: web_editor
  2367. #. openerp-web
  2368. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2369. #, python-format
  2370. msgid "This document is not saved!"
  2371. msgstr ""
  2372. #. module: web_editor
  2373. #. openerp-web
  2374. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0
  2375. #, python-format
  2376. msgid "This file is a public view attachment."
  2377. msgstr ""
  2378. #. module: web_editor
  2379. #. openerp-web
  2380. #: code:addons/web_editor/static/src/components/media_dialog/file_selector.js:0
  2381. #, python-format
  2382. msgid "This file is attached to the current record."
  2383. msgstr ""
  2384. #. module: web_editor
  2385. #. openerp-web
  2386. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0
  2387. #, python-format
  2388. msgid "This image is an external image"
  2389. msgstr ""
  2390. #. module: web_editor
  2391. #. openerp-web
  2392. #: code:addons/web_editor/static/src/js/wysiwyg/widgets/image_crop_widget.js:0
  2393. #, python-format
  2394. msgid ""
  2395. "This type of image is not supported for cropping.<br/>If you want to crop "
  2396. "it, please first download it from the original source and upload it in Odoo."
  2397. msgstr ""
  2398. #. module: web_editor
  2399. #. openerp-web
  2400. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  2401. #, python-format
  2402. msgid "Title"
  2403. msgstr ""
  2404. #. module: web_editor
  2405. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2406. msgid "Title tag"
  2407. msgstr ""
  2408. #. module: web_editor
  2409. #. openerp-web
  2410. #: code:addons/web_editor/static/src/xml/snippets.xml:0
  2411. #, python-format
  2412. msgid ""
  2413. "To make changes, drop this block and use the new options in the last "
  2414. "version."
  2415. msgstr ""
  2416. #. module: web_editor
  2417. #. openerp-web
  2418. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  2419. #, python-format
  2420. msgid ""
  2421. "To save a snippet, we need to save all your previous modifications and "
  2422. "reload the page."
  2423. msgstr ""
  2424. #. module: web_editor
  2425. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2426. msgid "Toaster"
  2427. msgstr ""
  2428. #. module: web_editor
  2429. #. openerp-web
  2430. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2431. #, python-format
  2432. msgid "Toggle bold"
  2433. msgstr ""
  2434. #. module: web_editor
  2435. #. openerp-web
  2436. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2437. #, python-format
  2438. msgid "Toggle checklist"
  2439. msgstr ""
  2440. #. module: web_editor
  2441. #. openerp-web
  2442. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2443. #, python-format
  2444. msgid "Toggle icon spin"
  2445. msgstr ""
  2446. #. module: web_editor
  2447. #. openerp-web
  2448. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2449. #, python-format
  2450. msgid "Toggle italic"
  2451. msgstr ""
  2452. #. module: web_editor
  2453. #. openerp-web
  2454. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2455. #, python-format
  2456. msgid "Toggle ordered list"
  2457. msgstr ""
  2458. #. module: web_editor
  2459. #. openerp-web
  2460. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2461. #, python-format
  2462. msgid "Toggle strikethrough"
  2463. msgstr ""
  2464. #. module: web_editor
  2465. #. openerp-web
  2466. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2467. #, python-format
  2468. msgid "Toggle underline"
  2469. msgstr ""
  2470. #. module: web_editor
  2471. #. openerp-web
  2472. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2473. #, python-format
  2474. msgid "Toggle unordered list"
  2475. msgstr ""
  2476. #. module: web_editor
  2477. #. openerp-web
  2478. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2479. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2480. #, python-format
  2481. msgid "Tooltip"
  2482. msgstr ""
  2483. #. module: web_editor
  2484. #. openerp-web
  2485. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2486. #, python-format
  2487. msgid "Track tasks with a checklist."
  2488. msgstr ""
  2489. #. module: web_editor
  2490. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2491. msgid "Transform"
  2492. msgstr ""
  2493. #. module: web_editor
  2494. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2495. msgid "Transform the picture"
  2496. msgstr ""
  2497. #. module: web_editor
  2498. #. openerp-web
  2499. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2500. #, python-format
  2501. msgid "Transform the picture (click twice to reset transformation)"
  2502. msgstr ""
  2503. #. module: web_editor
  2504. #. openerp-web
  2505. #: code:addons/web_editor/static/src/xml/backend.xml:0
  2506. #: code:addons/web_editor/static/src/xml/backend.xml:0
  2507. #, python-format
  2508. msgid "Translate"
  2509. msgstr ""
  2510. #. module: web_editor
  2511. #. openerp-web
  2512. #: code:addons/web_editor/static/src/xml/wysiwyg_colorpicker.xml:0
  2513. #, python-format
  2514. msgid "Transparent colors"
  2515. msgstr ""
  2516. #. module: web_editor
  2517. #. openerp-web
  2518. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2519. #: model_terms:ir.ui.view,arch_db:web_editor.colorpicker
  2520. #, python-format
  2521. msgid "Type"
  2522. msgstr ""
  2523. #. module: web_editor
  2524. #. openerp-web
  2525. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2526. #, python-format
  2527. msgid "Type \"/\" for commands"
  2528. msgstr ""
  2529. #. module: web_editor
  2530. #. openerp-web
  2531. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2532. #, python-format
  2533. msgid "URL or Email"
  2534. msgstr ""
  2535. #. module: web_editor
  2536. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2537. msgid "Unalign"
  2538. msgstr ""
  2539. #. module: web_editor
  2540. #. openerp-web
  2541. #: code:addons/web_editor/static/src/js/common/ace.js:0
  2542. #, python-format
  2543. msgid "Unexpected "
  2544. msgstr ""
  2545. #. module: web_editor
  2546. #. openerp-web
  2547. #: code:addons/web_editor/static/src/components/media_dialog/document_selector.js:0
  2548. #, python-format
  2549. msgid "Upload a document"
  2550. msgstr ""
  2551. #. module: web_editor
  2552. #. openerp-web
  2553. #: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0
  2554. #, python-format
  2555. msgid "Upload an image"
  2556. msgstr ""
  2557. #. module: web_editor
  2558. #. openerp-web
  2559. #: code:addons/web_editor/static/src/components/media_dialog/image_selector.js:0
  2560. #, python-format
  2561. msgid "Uploaded image's format is not supported. Try with: "
  2562. msgstr ""
  2563. #. module: web_editor
  2564. #: code:addons/web_editor/controllers/main.py:0
  2565. #, python-format
  2566. msgid "Uploaded image's format is not supported. Try with: %s"
  2567. msgstr ""
  2568. #. module: web_editor
  2569. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2570. msgid "Valencia"
  2571. msgstr ""
  2572. #. module: web_editor
  2573. #. openerp-web
  2574. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  2575. #: code:addons/web_editor/static/src/js/wysiwyg/wysiwyg.js:0
  2576. #, python-format
  2577. msgid "Video"
  2578. msgstr ""
  2579. #. module: web_editor
  2580. #. openerp-web
  2581. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  2582. #, python-format
  2583. msgid "Video Formatting"
  2584. msgstr ""
  2585. #. module: web_editor
  2586. #. openerp-web
  2587. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  2588. #, python-format
  2589. msgid "Video code"
  2590. msgstr ""
  2591. #. module: web_editor
  2592. #. openerp-web
  2593. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.js:0
  2594. #, python-format
  2595. msgid "Videos are muted when autoplay is enabled"
  2596. msgstr ""
  2597. #. module: web_editor
  2598. #: model:ir.model,name:web_editor.model_ir_ui_view
  2599. msgid "View"
  2600. msgstr ""
  2601. #. module: web_editor
  2602. #. openerp-web
  2603. #: code:addons/web_editor/static/src/xml/ace.xml:0
  2604. #, python-format
  2605. msgid "Views and Assets bundles"
  2606. msgstr ""
  2607. #. module: web_editor
  2608. #. openerp-web
  2609. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  2610. #, python-format
  2611. msgid "Vimeo"
  2612. msgstr ""
  2613. #. module: web_editor
  2614. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2615. msgid "Walden"
  2616. msgstr ""
  2617. #. module: web_editor
  2618. #. openerp-web
  2619. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2620. #, python-format
  2621. msgid ""
  2622. "Warning: after closing this dialog, the version you were working on will be "
  2623. "discarded and will never be available anymore."
  2624. msgstr ""
  2625. #. module: web_editor
  2626. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  2627. msgid "Wavy"
  2628. msgstr ""
  2629. #. module: web_editor
  2630. #: model:ir.model,name:web_editor.model_web_editor_converter_test_sub
  2631. msgid "Web Editor Converter Subtest"
  2632. msgstr ""
  2633. #. module: web_editor
  2634. #: model:ir.model,name:web_editor.model_web_editor_converter_test
  2635. msgid "Web Editor Converter Test"
  2636. msgstr ""
  2637. #. module: web_editor
  2638. #. openerp-web
  2639. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2640. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2641. #: code:addons/web_editor/static/src/js/editor/odoo-editor/src/OdooEditor.js:0
  2642. #, python-format
  2643. msgid "Widgets"
  2644. msgstr ""
  2645. #. module: web_editor
  2646. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2647. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  2648. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2649. msgid "Width"
  2650. msgstr ""
  2651. #. module: web_editor
  2652. #. openerp-web
  2653. #: code:addons/web_editor/static/src/js/editor/snippets.options.js:0
  2654. #, python-format
  2655. msgid "Write something..."
  2656. msgstr ""
  2657. #. module: web_editor
  2658. #. openerp-web
  2659. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2660. #, python-format
  2661. msgid "XL"
  2662. msgstr ""
  2663. #. module: web_editor
  2664. #. openerp-web
  2665. #: code:addons/web_editor/static/src/xml/ace.xml:0
  2666. #: code:addons/web_editor/static/src/xml/ace.xml:0
  2667. #, python-format
  2668. msgid "XML (HTML)"
  2669. msgstr ""
  2670. #. module: web_editor
  2671. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2672. msgid "Xpro"
  2673. msgstr ""
  2674. #. module: web_editor
  2675. #. openerp-web
  2676. #: code:addons/web_editor/static/src/js/editor/snippets.editor.js:0
  2677. #, python-format
  2678. msgid "Yes"
  2679. msgstr "Yes"
  2680. #. module: web_editor
  2681. #. openerp-web
  2682. #: code:addons/web_editor/static/src/components/media_dialog/document_selector.xml:0
  2683. #, python-format
  2684. msgid ""
  2685. "You can upload documents with the button located in the top left of the "
  2686. "screen."
  2687. msgstr ""
  2688. #. module: web_editor
  2689. #. openerp-web
  2690. #: code:addons/web_editor/static/src/components/media_dialog/image_selector.xml:0
  2691. #, python-format
  2692. msgid ""
  2693. "You can upload images with the button located in the top left of the screen."
  2694. msgstr ""
  2695. #. module: web_editor
  2696. #: code:addons/web_editor/controllers/main.py:0
  2697. #, python-format
  2698. msgid "You need to specify either data or url to create an attachment."
  2699. msgstr ""
  2700. #. module: web_editor
  2701. #. openerp-web
  2702. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  2703. #, python-format
  2704. msgid "Youku"
  2705. msgstr ""
  2706. #. module: web_editor
  2707. #. openerp-web
  2708. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2709. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2710. #, python-format
  2711. msgid "Your URL"
  2712. msgstr ""
  2713. #. module: web_editor
  2714. #. openerp-web
  2715. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  2716. #, python-format
  2717. msgid "Youtube"
  2718. msgstr ""
  2719. #. module: web_editor
  2720. #. openerp-web
  2721. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2722. #, python-format
  2723. msgid "Zoom In"
  2724. msgstr ""
  2725. #. module: web_editor
  2726. #. openerp-web
  2727. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2728. #, python-format
  2729. msgid "Zoom Out"
  2730. msgstr ""
  2731. #. module: web_editor
  2732. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2733. msgid "add"
  2734. msgstr ""
  2735. #. module: web_editor
  2736. #. openerp-web
  2737. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  2738. #, python-format
  2739. msgid "and"
  2740. msgstr ""
  2741. #. module: web_editor
  2742. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_background_options
  2743. msgid "auto"
  2744. msgstr ""
  2745. #. module: web_editor
  2746. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2747. msgid "darken"
  2748. msgstr ""
  2749. #. module: web_editor
  2750. #. openerp-web
  2751. #: code:addons/web_editor/static/src/xml/editor.xml:0
  2752. #, python-format
  2753. msgid "default"
  2754. msgstr ""
  2755. #. module: web_editor
  2756. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2757. msgid "exclusion"
  2758. msgstr ""
  2759. #. module: web_editor
  2760. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2761. msgid "lighten"
  2762. msgstr ""
  2763. #. module: web_editor
  2764. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2765. msgid "multiply"
  2766. msgstr ""
  2767. #. module: web_editor
  2768. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2769. msgid "overlay"
  2770. msgstr ""
  2771. #. module: web_editor
  2772. #. openerp-web
  2773. #: code:addons/web_editor/static/src/xml/wysiwyg.xml:0
  2774. #, python-format
  2775. msgid "px"
  2776. msgstr ""
  2777. #. module: web_editor
  2778. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options_image_optimization_widgets
  2779. msgid "screen"
  2780. msgstr ""
  2781. #. module: web_editor
  2782. #. openerp-web
  2783. #: code:addons/web_editor/static/src/components/media_dialog/video_selector.xml:0
  2784. #, python-format
  2785. msgid "videos"
  2786. msgstr ""
  2787. #. module: web_editor
  2788. #: model:ir.model,name:web_editor.model_ir_websocket
  2789. msgid "websocket message handling"
  2790. msgstr ""
  2791. #. module: web_editor
  2792. #: model_terms:ir.ui.view,arch_db:web_editor.snippet_options
  2793. msgid "www.example.com"
  2794. msgstr ""