13 lines
210 B
Go
13 lines
210 B
Go
|
/*
|
||
|
* SPDX-FileCopyrightText: 2023 jordi fita mas <jfita@peritasoft.com>
|
||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||
|
*/
|
||
|
|
||
|
package locale
|
||
|
|
||
|
type Translation struct {
|
||
|
URL string
|
||
|
Endonym string
|
||
|
Missing bool
|
||
|
}
|