Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ def translate_text(text, src_lang, target_lang):
|
|
22 |
with gr.Blocks() as interface:
|
23 |
# Titre et description avec du texte en italique et en gras en lingala
|
24 |
gr.Markdown("""
|
25 |
-
<div
|
26 |
<h2 style=" width:100%;">Traduction automatique Lingala-Fran莽ais</h2>
|
27 |
<div style=" width:100%;">Ceci est la version d'essai et nous comptons sur vous pour am茅liorer les performances du mod猫le pour notre langue Lingala.</div>
|
28 |
<div style=" width:100%;"><strong><em>Oyo e za version ya komeka pe to zo talela bino p么na ko kolisa makoki ya modeli p么na nkota n脿 biso Lingala.</em></strong></p>
|
@@ -34,8 +34,9 @@ with gr.Blocks() as interface:
|
|
34 |
text_input = gr.Textbox(label="Entrez le texte 脿 traduire", placeholder="Entrez le texte 脿 traduire ici...", lines=3)
|
35 |
source_lang = gr.Dropdown(choices=["fr", "li"], label="Langue Source")
|
36 |
target_lang = gr.Dropdown(choices=["li", "fr"], label="Langue Cible")
|
37 |
-
translate_button = gr.Button("Traduire")
|
38 |
translation_output = gr.Textbox(label="Traduction", placeholder="Le texte traduit s'affichera ici...")
|
|
|
|
|
39 |
|
40 |
# Lier le bouton au processus de traduction
|
41 |
translate_button.click(
|
@@ -51,6 +52,15 @@ interface.css = """
|
|
51 |
|
52 |
.gradio-container {
|
53 |
font-family: 'Arial', sans-serif;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
}
|
55 |
.gradio-button {
|
56 |
background-color: #4CAF50;
|
|
|
22 |
with gr.Blocks() as interface:
|
23 |
# Titre et description avec du texte en italique et en gras en lingala
|
24 |
gr.Markdown("""
|
25 |
+
<div class="contenant">
|
26 |
<h2 style=" width:100%;">Traduction automatique Lingala-Fran莽ais</h2>
|
27 |
<div style=" width:100%;">Ceci est la version d'essai et nous comptons sur vous pour am茅liorer les performances du mod猫le pour notre langue Lingala.</div>
|
28 |
<div style=" width:100%;"><strong><em>Oyo e za version ya komeka pe to zo talela bino p么na ko kolisa makoki ya modeli p么na nkota n脿 biso Lingala.</em></strong></p>
|
|
|
34 |
text_input = gr.Textbox(label="Entrez le texte 脿 traduire", placeholder="Entrez le texte 脿 traduire ici...", lines=3)
|
35 |
source_lang = gr.Dropdown(choices=["fr", "li"], label="Langue Source")
|
36 |
target_lang = gr.Dropdown(choices=["li", "fr"], label="Langue Cible")
|
|
|
37 |
translation_output = gr.Textbox(label="Traduction", placeholder="Le texte traduit s'affichera ici...")
|
38 |
+
translate_button = gr.Button("Traduire")
|
39 |
+
|
40 |
|
41 |
# Lier le bouton au processus de traduction
|
42 |
translate_button.click(
|
|
|
52 |
|
53 |
.gradio-container {
|
54 |
font-family: 'Arial', sans-serif;
|
55 |
+
}
|
56 |
+
.contenant {
|
57 |
+
text-align: center;
|
58 |
+
font-family: Ghisha;
|
59 |
+
width:100%;
|
60 |
+
display: flex;
|
61 |
+
justify-content: center;
|
62 |
+
width:100%;
|
63 |
+
flex-wrap: wrap;
|
64 |
}
|
65 |
.gradio-button {
|
66 |
background-color: #4CAF50;
|