Paul Bignier [Mon, 15 Sep 2014 07:45:16 +0000]
Xcos MVC: Fixed default datatype
* Added a copy constructor for future use
* Fixed Model destructor
* Strengthened test
Change-Id: I2b9b690de593aad1fff8f9b82a1898695f25dc87
Antoine ELIAS [Wed, 17 Sep 2014 13:45:49 +0000]
remove useless files
Change-Id: I0365c2437f9f9b2545991bafc29168922684492c
Cedric Delamarre [Tue, 16 Sep 2014 11:44:36 +0000]
export/import hdf5 : management of hypermatrix.
a=rand(3,2,4)
export_to_hdf5("~/hypermat.sod", "a");
clear a;
import_from_hdf5("~/hypermat.sod");
a
Change-Id: I1931d9b48216268a7dec4f7ccb936430778bec1f
Antoine ELIAS [Tue, 16 Sep 2014 11:59:39 +0000]
backport analysis visitor and stuff in yasp branch from jit
Change-Id: Ie543781a7afc520d290eb7cb1752091323ebefef
Cedric Delamarre [Tue, 16 Sep 2014 10:21:01 +0000]
comparison between 2 list of integer.
l1 = list(int16(ones(3,3))); l2 = list(int16(ones(3,3)));
l1 == l2
Change-Id: I77e7a9892749ab6426e609a917a9b556d228f0a3
Paul Bignier [Wed, 10 Sep 2014 08:08:11 +0000]
Xcos MVC: fix LinkAdapter to with IDs instead of indexes
* fixed the from setter and getter to mind the third input element.
* complicated the test by using two different blocks and controlling their
properties.
Change-Id: I0dac595ab05c2f48d65d01e9c765025046ace004
Paul Bignier [Tue, 9 Sep 2014 13:19:37 +0000]
Xcos MVC: fix Diagrams's 'objs' property getter and setter
Implemented double-linkage of the diagram with its children.
Change-Id: Ia7a236eb7e38b6b2793a768f01d16e4e918772ee
Clément DAVID [Fri, 12 Sep 2014 11:48:17 +0000]
fix valgrind issues during ast serialization
Change-Id: I02de60699c787ee7e051942d6fc5fa95e3ed48e7
Calixte DENIZET [Mon, 25 Aug 2014 15:00:33 +0000]
Lexer: fix a=[1 -[1 2]]
Change-Id: I65ee206196178858ce196f585246a5cf0b111f7b
Antoine ELIAS [Tue, 2 Sep 2014 09:05:29 +0000]
fix subtraction and addition on sparse
Change-Id: I68a21225280f95ebce30006161e7d1e5e244faea
Antoine ELIAS [Mon, 1 Sep 2014 14:14:12 +0000]
reforge "|" operator
Change-Id: I45afe3b0f1db11d5dc4fb2801104e6adadbdd216
Cedric Delamarre [Thu, 11 Sep 2014 13:00:18 +0000]
fix warning in ast module.
CXXFLAGS="-Wall -Wextra -Wno-unused-local-typedefs"
-Wno-unused-local-typedefs used to avoid eigen warning
Change-Id: I0d149a5c4db0ca04af2cd4588135cf7dbbaddacd
Vincent COUVERT [Fri, 12 Sep 2014 10:39:07 +0000]
Activate some replugged modules
Change-Id: I551791bb8ee1bad11b0ef5454235648efded754a
Antoine ELIAS [Tue, 9 Sep 2014 16:10:41 +0000]
replug consolebox and update windows launching modes
Change-Id: I2a915bf7be18ebdec2a52d801ebbb1d358a508f3
Vincent COUVERT [Fri, 12 Sep 2014 10:07:47 +0000]
Fix f2c compilation
Change-Id: I08b10e4fb2b68f358b2de14d3dcd44b18b629993
Paul Bignier [Fri, 12 Sep 2014 07:38:58 +0000]
Xcos MVC: fix a vector copy
Change-Id: I4da8d7668ef49654f98ae0baa49571aed271942a
Cedric Delamarre [Thu, 11 Sep 2014 15:42:34 +0000]
fix windows compilation
Change-Id: I09cfba7646aa33da80a2853890f1c198aa8ace89
Clément DAVID [Thu, 11 Sep 2014 13:23:51 +0000]
Requires conforming C++11 compilers
Change-Id: I340df086b2311dc87a219ece3ca1b69bd753ded8
Antoine ELIAS [Thu, 11 Sep 2014 14:27:52 +0000]
Xcos MVC: fix windows std::copy warnings
Change-Id: I4a4b3dd113917749cbf6f0a9184bd5fd932aedb1
Clément DAVID [Thu, 11 Sep 2014 14:37:26 +0000]
Fix Makefile.am merge artefact
Change-Id: I0185fec18bb1d0ca1435eec6aca89afb86f967cd
Clément DAVID [Wed, 23 Jul 2014 12:26:25 +0000]
Xcos MVC: implement a clone method
Model object can be cloned and all property changes are emitted but the
properties are not setted in a particular order, views have to handle
that well.
Change-Id: I71520c0cce58bf9d36fa4074e68f6d82bf7e426e
Sylvain GENIN [Tue, 9 Sep 2014 07:29:24 +0000]
modification of hypermatrix test in meanf
Change-Id: I9cab6e61d72d9c23c90b35434cd1c305df6c1680
Sylvain GENIN [Tue, 26 Aug 2014 09:44:06 +0000]
fix vector insert along with Colon(:)
tst(1,:) = [1,1,1,1,1]
//error
tst(:,1) = [1;1;1;1;1]
tst(2,:) = [2,2,2,2,2]
clear tst
tst(1,:) = [1;1;1;1;1]
clear tst
tst(:,1) = [1;1;1;1;1]
//error
tst(1,:) = [1,1,1,1,1]
tst(:,2) = [2;2;2;2;2]
tst(:,3) = [3;3;3;3;3]
tst(:,4) = [4;4;4;4;4]
tst(:,5) = [5;5;5;5;5]
tst(1,:) = [1,1,1,1,1]
//
test_run("genetic_algorithms","optim_moga",["no_check_error_output" ]);
test_run("genetic_algorithms","optim_nsga2",["no_check_error_output" ]);
test_run("genetic_algorithms","optim_nsga",["no_check_error_output" ]);
test_run("genetic_algorithms","pareto_filter",["no_check_error_output" ]);
Change-Id: Icbfca78ec89cd504bdaa6a2bf496ed2fc84457a4
Clément DAVID [Thu, 4 Sep 2014 13:54:35 +0000]
let ref-count debug provide a awk / CSV compatible display
Change-Id: Ifa3a287dc346a47d5aaf25fad032d76cb427711b
Vladislav TRUBKIN [Wed, 10 Sep 2014 12:12:54 +0000]
api_scilab: set fixed in api_int for createCommonNamedMatrixOfInteger.
Change-Id: If3b1cfc78189091e5d162bcd407eea9f5bb3d0c0
Cedric Delamarre [Wed, 10 Sep 2014 12:42:30 +0000]
gateway sci_int... corrected.
typeof(int8([])) == "constant"
Change-Id: Ie79dbe9f4d3c20042696d2ca40d96a2e353cb581
Cedric Delamarre [Wed, 10 Sep 2014 11:53:35 +0000]
xml tests fixed.
doc = xmlReadStr("<root><a b=""b"" c=""c"" d=""d""><b>b</b></a><c>c</c></root>");
doc.root.children(1)
Change-Id: I6e843bcec58fb9b5be883d2001c61842fad4a733
Paul Bignier [Mon, 8 Sep 2014 11:51:46 +0000]
Xcos MVC: base objects tests
Change-Id: Ie8924a040f6057d9f8614471a38384770adb3722
Cedric Delamarre [Tue, 9 Sep 2014 15:18:59 +0000]
print corrected for string function.
string(-1)
str=string([0 1])
str=="0"
str=="1"
rl = rlist(%s,2);
tt=[rl rl rl] * %s
Change-Id: Idc32a41e8d4914e5a4f7796f52c53db1e4d8246f
Sylvain GENIN [Thu, 4 Sep 2014 13:19:28 +0000]
retour the conv2 function under Windows
test_run("signal_processing","conv2",["no_check_error_output" ]);
Change-Id: I488106d2833b871fe3711d83217c38e0459b5587
Antoine ELIAS [Tue, 9 Sep 2014 14:59:25 +0000]
replug funptr, newfun and clearfun
Change-Id: I359ef755b33cc887baa5a7d3e47f2d1d485fb192
Vincent COUVERT [Mon, 8 Sep 2014 13:43:25 +0000]
Fix --without-xcos option.
Change-Id: I7e0cfac70584703e9b687220c9a7a43b99628b7a
Sylvain GENIN [Thu, 10 Jul 2014 13:23:32 +0000]
fix srkf
a transpose function is loophole used by 5.5 for transpose an element
l=list([1 2 3], [1;2;3], [4 5 6])
[a,b,c] = l(1:3)'
test_run("signal_processing","srkf",["no_check_error_output" ])
Change-Id: I2cc0946cc0af669b71b2da2ec169a1d789dcb0ff
Cedric Delamarre [Tue, 2 Sep 2014 12:14:24 +0000]
print of double and polynom fixed.
Change-Id: Ifbaccd34df183a237665dfdbeaf39356e9c1d983
Cedric Delamarre [Mon, 25 Aug 2014 13:50:40 +0000]
ode corrected
test_run differential_equations odedc
test_run differential_equations matode
test_run differential_equations ode
Change-Id: I75f1fd73aadfac541749d037256191c27e503489
Paul Bignier [Fri, 5 Sep 2014 10:25:27 +0000]
Xcos MVC: fix the adaptor-local parameters getters
* fix all the adapters to let Block.tst PASS.
* 'gui' Block property setter fixed
Change-Id: I6f0c25df41c16746b9ab24f06c837789ae401cf6
Sylvain GENIN [Fri, 5 Sep 2014 14:36:35 +0000]
fix fft gateway
assert_checkequal(fft([1,0;2,0;0,0;0,0],-1,4,1),[3,0;1-2*%i,0;-1,0;1+2*%i,0])
assert_checkequal(convol2d([3;4],[1;2]),[3;10;8]);
assert_checkequal(convol2d([3;4;1],[1;2]),[3;10;9;2])
Change-Id: Ie2f198defc56039d6c753f245abac250a6ca92ed
Sylvain GENIN [Thu, 4 Sep 2014 08:00:43 +0000]
fix display of sci_exec: the prompt does not appear
do a file *.tst with
"
if ( %t ) then
a = 1;
end
"
then
exec("path\*.tst")
test_run("randlib","grand_prm",["no_check_error_output" ]);
Change-Id: Ice1ceea9a79e3c236fef60d6a22ad191d568ae9f
Paul Bignier [Thu, 28 Aug 2014 09:22:18 +0000]
Xcos MVC: implement Annotations
Change-Id: Iad8dd86eef130a7eb3910cfe9f5949916b30aaf9
Paul Bignier [Fri, 5 Sep 2014 08:25:17 +0000]
Remove redundant static statements and add fix headers
Change-Id: Ibcb7609c1e385a54a7f13c46a362250fc80c8e67
Calixte DENIZET [Mon, 25 Aug 2014 14:39:49 +0000]
Lexer: fix sin (1)
Change-Id: I1ade0cf75cc00118334b1eb03a4538f4470153dd
Calixte DENIZET [Mon, 25 Aug 2014 14:36:45 +0000]
Lexer: fix 1 < = 2
Change-Id: I9edc07f372b6a2aec3a3500eba080f4d3b06f9f4
Antoine ELIAS [Fri, 5 Sep 2014 09:52:12 +0000]
windows install : add ast/macros/lib file to installer
Change-Id: I5d91273d63d2d6f674329717f857f66a6cdb53c2
Clément DAVID [Fri, 5 Sep 2014 09:21:38 +0000]
Xcos MVC: use model adapters instead of mlists or tlists #2
Change-Id: Id6ac4878ef96963c4999457aef1a3dd34b32939b
Cedric Delamarre [Wed, 3 Sep 2014 14:55:37 +0000]
call without argument fixed.
plot([1,2]);
e=gce();
e.children
e.children()
a.b=12
a.b
a.b()
Change-Id: I28612114cd1d71e00344c9f04d13f70411e68bfa
Vladislav TRUBKIN [Tue, 26 Aug 2014 15:06:05 +0000]
api scilab: updated createNamedMatrixOfBoolean.
Change-Id: I01ee3091206db25799447dcfce6494d3062a5cd0
Antoine ELIAS [Fri, 5 Sep 2014 08:56:30 +0000]
_W macro do really a gettext call
Change-Id: Ib3622aa41a550a053e51cef5be1dc34d944e3ec6
Clément DAVID [Thu, 4 Sep 2014 18:15:38 +0000]
Xcos MVC: blk.model.blocktype is a string
Change-Id: I16b76e7d48c53a5508718f4436869eadf331ea9b
Clément DAVID [Thu, 4 Sep 2014 17:03:16 +0000]
Xcos MVC: use model adapters instead of mlists or tlists
Some tlist might be preserved as they do not interact with the model and
do not need modification notification.
Change-Id: I5bc108d8a8166b6400689499e6a700b1fa7ceef1
Paul Bignier [Fri, 29 Aug 2014 14:58:25 +0000]
Xcos MVC: implement diagram objs / version / contrib
Change-Id: I0bf8ff0166d7efa9d8636c86f82e413f8282efd2
Clément DAVID [Thu, 4 Sep 2014 13:46:50 +0000]
Fix GCC 4.8 optional warnings (-Wall -Wextra)
Change-Id: I623b8198f643c02390c3d34bd5a6a910cfbdd7cf
Anais AUBERT [Fri, 22 Aug 2014 08:13:50 +0000]
fix bug 1805 test
Change-Id: I8e1e79e6d212f8d8ba18c959461267e0522f3d87
Anais AUBERT [Fri, 22 Aug 2014 08:16:47 +0000]
fix bug 186 test
Change-Id: I78c7796ba80d14d935ed85392c191f141938b3d8
Antoine ELIAS [Thu, 4 Sep 2014 14:31:17 +0000]
Remove calling of Initialize and Finalize of shared libraries
Shared object constructors should be used instead. For the windows
platform use 'Dllmain', on Unix use '__attribute__((constructor))'.
Change-Id: Ia6267864c5653717a0d8b2036917ca09c9e09e38
Anais AUBERT [Thu, 21 Aug 2014 09:43:28 +0000]
fix bug 12045 test
Change-Id: Icbe478ff88d97cdc756f777e353c219cd67cd392
Antoine ELIAS [Thu, 4 Sep 2014 14:26:26 +0000]
slipt .quit and unload operation to clean and destroy context in the middle during scilab exit
Change-Id: Ibc0b5d404ce57cae30536310d6452fe0382f6824
Anais AUBERT [Wed, 20 Aug 2014 08:34:54 +0000]
regenerated schur test ref file
Change-Id: Ie18ded707ff07b147b613662ebe38b6eca31dc1f
Paul Bignier [Fri, 29 Aug 2014 06:03:00 +0000]
Xcos MVC: add missing headers
Change-Id: Ic0b7abc6cdfb86b41e809451232935dffc2e87da
Vincent COUVERT [Thu, 4 Sep 2014 14:09:06 +0000]
Fix DLL name
Change-Id: I833db032abf3af3c6eeab2bbd06a14d177bc9544
Sylvain GENIN [Fri, 25 Jul 2014 14:21:27 +0000]
the display changed on warnings for sparser -> bug_3310
Change-Id: I5c164d5699490674ad19290b469e6782ffebcc6b
Anais AUBERT [Wed, 3 Sep 2014 14:48:15 +0000]
regenerated checkfilesequal test ref
Change-Id: I0f662692fdf003f58051c49a34d3839fa3c1a70d
Clément DAVID [Wed, 3 Sep 2014 10:21:52 +0000]
Xcos MVC: clean -Wall -Wextra warnings
Change-Id: I33828e34c01dd0cafe79f65f607e502bfe7b866a
Antoine ELIAS [Wed, 3 Sep 2014 10:42:11 +0000]
Merge remote-tracking branch 'origin/master' into YaSp
Conflicts:
scilab/configure
scilab/modules/elementary_functions/sci_gateway/fortran/sci_f_rand.f
scilab/modules/scinotes/src/java/org/scilab/modules/scinotes/MatchingBlockScanner.java
scilab/modules/string/sci_gateway/c/sci_strtod.c
Change-Id: I9fc4ccbbe0edf01bbec4c595ff3e906eba43ad1b
Antoine ELIAS [Wed, 3 Sep 2014 10:20:37 +0000]
Merge remote-tracking branch 'origin/5.5'
Change-Id: I1399a4a8f0b6a367107103f5f0fe683f0e63ffba
Antoine ELIAS [Wed, 3 Sep 2014 10:14:03 +0000]
update dumpexts to remote Intel C++/Fortran 14 strange symbols
Change-Id: Ia31b737ed022120f5f861d3a7df0704e3ac878c4
Sylvain GENIN [Tue, 2 Sep 2014 14:41:35 +0000]
fix removelinehistory
test_run("history_manager","removelinehistory",["no_check_error_output" ]);
Change-Id: Ia75c4106ebd70096e6bb99c8193fd26c74304ff9
Sylvain GENIN [Mon, 1 Sep 2014 09:15:05 +0000]
fix the complete removal of data in a table returns Double::Empty()
tst = int8([4512,1231])
tst(1,1) = []
tst(1,1) = []
tst = ["a","b"]
tst(1,1) = []
tst(1,1) = []
tst = rand(3,3);
tst(1:2, 1:2) = [] // must return an error
Change-Id: I9d3de25e4fd88d1cbc99ebcb8a5b46bb7d287fad
Antoine ELIAS [Wed, 3 Sep 2014 08:12:11 +0000]
fix inline warning message ( removing inline for defined functions in cpp files )
Change-Id: Idf4e121acf944e33850e21c0ce4d6ec82dbb335f
Antoine ELIAS [Tue, 2 Sep 2014 15:42:42 +0000]
fix template mismatching
Change-Id: I9c785f870ee95a9caa62e084cb7cd585b1905901
Antoine ELIAS [Tue, 2 Sep 2014 16:18:39 +0000]
fix warning in scicos MVC compilation
Change-Id: I888221cbab5786211caf810a8e33bd04b9ec181c
Antoine ELIAS [Tue, 2 Sep 2014 16:17:58 +0000]
fix windows compilation, rename CONTEXT in scicos MVC to DIAGRAM_CONTEXT ( CONTEXT is a struct defined in winnt.h)
Change-Id: I0055b0284626442a0db5776c96541e1b7356aff6
Clément DAVID [Tue, 2 Sep 2014 15:11:00 +0000]
Xcos MVC: remove __cxa_guard_acquire dependency
__cxa_guard_acquire calls are generated using static storage variable in
a multithreaded environment. This API may or may not be supported with a
statically linked stdlibc++.
See http://mentorembedded.github.io/cxx-abi/abi.html#once-ctor
Change-Id: Ic953e2c361ee79f2417c121fad630d34f64c3992
Antoine ELIAS [Tue, 2 Sep 2014 14:08:24 +0000]
enable localisation on button text in x_dialog dialog
Change-Id: I7c28d0ccdbc2e8887de80db510e2f4dc9feb9fea
Sylvain GENIN [Thu, 3 Jul 2014 10:39:59 +0000]
fix double insertion in polynom
Change-Id: I057f9a5cd3965fdcff0d9eb28255209e93d662d8
Paul Bignier [Tue, 2 Sep 2014 10:08:19 +0000]
Xcos MVC: get default values for odstate, opar and firing
Fixed the absence of FIRING in ports management getter.
Change-Id: I84e378ebcea119dcf3fdac3683f152d6e4c91fd9
Paul Bignier [Thu, 28 Aug 2014 16:06:59 +0000]
Xcos MVC: implement params 'doc' / 'options" and slight fixes
Change-Id: Iaa75965e76fb67bc886d0d6aba829c2b4a4bf623
Paul Bignier [Thu, 28 Aug 2014 15:43:35 +0000]
Xcos MVC: implement params wpar / title / tol / tf / context
Also, prepared the remaining properties for the test to pass.
Change-Id: Ib5b32fd24f68e5bbad308007f1e55d720d75e8ac
Antoine ELIAS [Tue, 2 Sep 2014 10:41:56 +0000]
add function::createfunction with optional list AND loaddeps
Change-Id: I5b5bf5da7438868d0e82003d8c4d8c7ca6d563a1
Antoine ELIAS [Tue, 2 Sep 2014 12:01:46 +0000]
replace if ... else if ... by switch
Change-Id: I7dfab2ec4371a76283e8f146177c3876a8871567
Clément DAVID [Wed, 23 Jul 2014 12:26:25 +0000]
Xcos MVC: generate Controller JNI using SWIG
* Implement a default logger XcosView in Java
* Use SWIG Vectors for data handling
* Move needed includes from scicos/src/cpp to scicos/includes
Change-Id: I8b63ab07f4c335c37dfdf3bf81051c1ebbbe615f
Anais AUBERT [Thu, 21 Aug 2014 10:06:46 +0000]
regenerated bug 2345 test ref
Change-Id: Ic766026bcb2f5cafaea7964d98c9bf6b62610e50
Sylvain GENIN [Thu, 28 Aug 2014 09:54:06 +0000]
fix error message of the overloading
Change-Id: I957cca0dac8343ea3ac6e778f25a329344c2a1ce
Paul Bignier [Thu, 28 Aug 2014 09:15:41 +0000]
Xcos MVC: Allow string for 'rpar' (Text blocks)
Text blocks are now allowed to define strings in 'rpar'.
Change-Id: I4c1da343159a0f1a345495b9485131fb7219bee4
Anais AUBERT [Fri, 29 Aug 2014 12:35:29 +0000]
fix global test
Change-Id: Ib9f2f0ffea77368930f2cff0674d6d9b0d86c458
Bruno JOFRET [Fri, 29 Aug 2014 10:35:56 +0000]
Fix location within implicit call
Change-Id: I686ca819552a12b43dd2b3e630997a6abbea7edc
Sylvain GENIN [Wed, 27 Aug 2014 12:50:50 +0000]
the suppression of overloading %c_f_s for duplicate the same behavior
Change-Id: I4e7232148510899f397cb6bab4521c7e1255fa8b
Antoine ELIAS [Mon, 1 Sep 2014 07:55:40 +0000]
reforge "&" operator
Change-Id: I8faed5faea05bf3da7ca75401c8813124e97a814
Cedric Delamarre [Thu, 28 Aug 2014 09:55:44 +0000]
insert in struct corrected.
a("b")(2) = 12
a(3)("b")(2)=13
test_run ast insert
Change-Id: Ib56a320de05e7e2581b714e11de42eeded04e62d
Antoine ELIAS [Tue, 19 Aug 2014 10:40:26 +0000]
reforge dot multiplication
Change-Id: I1386d392a50e5e95754b18ae9bba05792e8717ad
Vincent COUVERT [Thu, 28 Aug 2014 15:31:58 +0000]
Merge remote-tracking branch 'origin/5.5'
Conflicts:
scilab/modules/helptools/data/pages/homepage-ru_RU.html
Change-Id: I03db64455e82edd715a78e4465510f6ef0745968
Bruno JOFRET [Mon, 18 Aug 2014 07:58:47 +0000]
Make compilation fail on grammar shift/reduce or reduce/reduce conflict
Change-Id: Ic077160d5f3c4da69bb1456aa9616f8b26c9ca52
Bruno JOFRET [Thu, 28 Aug 2014 08:49:29 +0000]
Fix complex display
Change-Id: I7b1caed2f483ab93d8b52d09ea456319a3280579
Bruno JOFRET [Thu, 28 Aug 2014 14:19:30 +0000]
Configure option: --enable-build-swig as --enable-build-giws
Change-Id: I8f5dc425e2be616d358c16e66b8183983f800051
Bruno JOFRET [Thu, 28 Aug 2014 13:59:12 +0000]
SWIG Makefiles: add per Makefile.am SWIG_OPTIONS to ease customization
Change-Id: Ie499d10eab49fd430df73705a807065bf4763283
Paul Bignier [Thu, 28 Aug 2014 09:11:41 +0000]
Xcos MVC: slight corrections
Change-Id: Iacebdeef3b8523c3eda776da6ad81eb89e99f84d
Paul Bignier [Thu, 28 Aug 2014 13:44:09 +0000]
Xcos MVC: fix MList header
'header' was not used.
Change-Id: I8b52a0991d03b18e2300ed591317bc03384d2f07
Clément DAVID [Wed, 27 Aug 2014 07:48:26 +0000]
Xcos MVC: manage scicos_graphics and scicos_models as MList
Ports' Datatypes are now [1 1 1]] by default, to prevent null sizes.
Using mlist avoid a model::Block merge at graphics or model assignation.
This commit also fix default value of some ports' properties.
Change-Id: I7767ef2e745ea0b10ff1ec4e09e5a946320f5832
Vincent COUVERT [Wed, 27 Aug 2014 12:32:43 +0000]
Update localization templates
Change-Id: I3bc4fd894e6a0bb4ad0cbb74dafc86388c6ff493
Vincent COUVERT [Wed, 27 Aug 2014 12:32:23 +0000]
Do not localize empty string (make gettext fail)
Change-Id: I4cfa4dbb6fbb548598b02e2283937e35f1e3de2b
Vincent COUVERT [Wed, 27 Aug 2014 08:30:48 +0000]
Fix warning message
Change-Id: I724613d52d5678b003d4176cd444ea15a261ff71