Skip to content
Extraits de code Groupes Projets
Valider b30ce275 rédigé par Rémi - Le Filament's avatar Rémi - Le Filament
Parcourir les fichiers

[ADD] license and copyright everywhere

parent 1a5138f8
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
# Copyright 2023 Le Filament (https://le-filament.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
from . import controllers, models from . import controllers, models
# Copyright 2023 Le Filament (<http://www.le-filament.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from . import main from . import main
# Copyright 2023 Le Filament (<http://www.le-filament.com>) # Copyright 2021- Le Filament (https://le-filament.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
from odoo import http from odoo import http
from odoo.http import request from odoo.http import request
......
# Copyright 2023 Le Filament (https://le-filament.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
from . import acc_operation from . import acc_operation
# Copyright 2023 Le Filament (<http://www.le-filament.com>) # Copyright 2021- Le Filament (https://le-filament.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
from odoo import models from odoo import models
......
/**
* @copyright: 2023- Le Filament (<https://le-filament.com>)
* @license: AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
*/
odoo.define("oacc_portal_overview_cdc.canvas", function (require) { odoo.define("oacc_portal_overview_cdc.canvas", function (require) {
"use strict"; "use strict";
......
/** /**
* Select2 French translation * Select2 French translation
* From https://raw.githubusercontent.com/select2/select2/stable/3.5/select2_locale_fr.js * @source https://raw.githubusercontent.com/select2/select2/stable/3.5/select2_locale_fr.js
* Copyright 2015 Igor Vaynberg * @copyright 2015 Igor Vaynberg
* License Apache License, Version 2.0 * @license Apache License, Version 2.0
*/ */
(function ($) { (function ($) {
"use strict"; "use strict";
$.fn.select2.locales['fr'] = { $.fn.select2.locales.fr = {
formatMatches: function (matches) { return matches + " résultats sont disponibles, utilisez les flèches haut et bas pour naviguer."; }, formatMatches: function (matches) {
formatNoMatches: function () { return "Aucun résultat trouvé"; }, return (
formatInputTooShort: function (input, min) { var n = min - input.length; return "Saisissez " + n + " caractère" + (n == 1? "" : "s") + " supplémentaire" + (n == 1? "" : "s") ; }, matches +
formatInputTooLong: function (input, max) { var n = input.length - max; return "Supprimez " + n + " caractère" + (n == 1? "" : "s"); }, " résultats sont disponibles, utilisez les flèches haut et bas pour naviguer."
formatSelectionTooBig: function (limit) { return "Vous pouvez seulement sélectionner " + limit + " élément" + (limit == 1 ? "" : "s"); }, );
formatLoadMore: function (pageNumber) { return "Chargement de résultats supplémentaires…"; }, },
formatSearching: function () { return "Recherche en cours…"; } formatNoMatches: function () {
return "Aucun résultat trouvé";
},
formatInputTooShort: function (input, min) {
var n = min - input.length;
return (
"Saisissez " +
n +
" caractère" +
(n == 1 ? "" : "s") +
" supplémentaire" +
(n == 1 ? "" : "s")
);
},
formatInputTooLong: function (input, max) {
var n = input.length - max;
return "Supprimez " + n + " caractère" + (n == 1 ? "" : "s");
},
formatSelectionTooBig: function (limit) {
return (
"Vous pouvez seulement sélectionner " +
limit +
" élément" +
(limit == 1 ? "" : "s")
);
},
formatLoadMore: function (pageNumber) {
return "Chargement de résultats supplémentaires…";
},
formatSearching: function () {
return "Recherche en cours…";
},
}; };
$.extend($.fn.select2.defaults, $.fn.select2.locales['fr']); $.extend($.fn.select2.defaults, $.fn.select2.locales.fr);
})(jQuery); })(jQuery);
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2021- Le Filament (https://le-filament.com)
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo> <odoo>
<!-- Operation PMO template --> <!-- Operation PMO template -->
......
<?xml version="1.0" encoding="utf-8" ?> <?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2021- Le Filament (https://le-filament.com)
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
<odoo> <odoo>
<!-- Layout operation --> <!-- Layout operation -->
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter