A crate to use KF5I18n from Rust.
Find a file
Ayush Singh 9608d9fd8e Using Qt include path for QtCore.
Would like to avoid having to add Qtcore folder to include seperately
but don't have any solution yet.
2021-11-01 21:21:56 +05:30
.github/workflows Fix Github Action 2021-11-01 19:01:15 +05:30
src Added Documentation. 2021-11-01 18:02:04 +05:30
tests Added Documentation. 2021-11-01 18:02:04 +05:30
.gitignore Initial Commit. 2021-11-01 15:01:02 +05:30
build.rs Using Qt include path for QtCore. 2021-11-01 21:21:56 +05:30
Cargo.toml Added Documentation. 2021-11-01 18:02:04 +05:30
LICENSE.txt Added README and LICENSE. 2021-11-01 15:53:52 +05:30
README.md Added README and LICENSE. 2021-11-01 15:53:52 +05:30

KI18n Crate for Rust

KI18n is a cross-platform internationalization framework used by KDE applications. This crate is meant to allow using KI18n with Rust and qmetaobject-rs crate.

Example

use cstr::cstr;
use qmetaobject::prelude::*;
use ki18n_rs::KLocalizedContext;

fn main() {
  let mut engine = QmlEngine::new();
  KLocalizedContext::init_from_engine(&engine);
  engine.load_data(r#"
    import QtQuick 2.6
    import QtQuick.Controls 2.0 as Controls
    import QtQuick.Layouts 1.2
    import org.kde.kirigami 2.13 as Kirigami
    
    // Base element, provides basic features needed for all kirigami applications
    Kirigami.ApplicationWindow {
        // ID provides unique identifier to reference this element
        id: root
    
        // Window title
        // i18nc is useful for adding context for translators, also lets strings be changed for different languages
        title: i18nc("@title:window", "Hello World")
    
        // Initial page to be loaded on app load
        pageStack.initialPage: Kirigami.Page {
    
            Controls.Label {
                // Center label horizontally and vertically within parent element
                anchors.centerIn: parent
                text: i18n("Hello World!")
            }
        }
    }
  "#.into());
  engine.exec();
}