Actualiza el código para las nuevas denominaciones

This commit is contained in:
Manuel Cillero 2022-05-02 12:30:30 +02:00
parent 16996eeee0
commit a8cb7f0d29
38 changed files with 123 additions and 139 deletions

View file

@ -5,15 +5,11 @@ localize!("src/locales");
//mod entity;
mod migration;
pub struct NodeModule;
pub struct Node;
impl ModuleTrait for NodeModule {
fn name(&self) -> &'static str {
"Node"
}
fn fullname(&self) -> String {
l("module_fullname")
impl ModuleTrait for Node {
fn name(&self) -> String {
l("module_name")
}
fn description(&self) -> Option<String> {

View file

@ -1,2 +1,2 @@
module_fullname = Node
module_name = Node
module_description = Allows content to be submitted to the site and displayed on pages.

View file

@ -1,2 +1,2 @@
module_fullname = Nodo
module_name = Nodo
module_description = Permite enviar contenidos al sitio y mostrarlos en páginas.