6
0
Eric Tröbs 4 жил өмнө
parent
commit
84ca4d7475

+ 2 - 2
webui/src/components/projects/project-creation-window.vue

@@ -25,11 +25,11 @@
 
     <div class="footer">
       <button-input @click="create" type="primary">
-        Anlegen
+        Create Project
       </button-input>
 
       <button-input @click="$emit('cancel', null)">
-        Abbrechen
+        Cancel
       </button-input>
     </div>
   </div>

+ 3 - 3
webui/src/components/projects/project-open-window.vue

@@ -6,8 +6,8 @@
                              @cancel="create = false"></project-creation-window>
     <template v-else>
       <div class="title">
-        <h1>Projekt öffnen</h1>
-        Klicken Sie ein Projekt an, um es zu öffnen oder neu anzulegen.
+        <h1>Open Project</h1>
+        Click a project to open it or create a new one.
       </div>
 
       <div class="projects">
@@ -30,7 +30,7 @@
 
       <div class="footer">
         <button-input @click="create = true" type="primary">
-          new project
+          New Project
         </button-input>
       </div>
     </template>