Explorar el Código

Fix git/version-control tab title from #9711

This changes the title from "Git" to "Version control" which makes the title
consistent like all other titles. It also makes it translatable like
other setting titles
Gabriel Horner hace 2 años
padre
commit
b1ee33d0f2
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/main/frontend/components/settings.cljs

+ 2 - 2
src/main/frontend/components/settings.cljs

@@ -1048,7 +1048,7 @@
                [:editor "editor" (t :settings-page/tab-editor) (ui/icon "writing")]
 
                (when (util/electron?)
-                 [:git "git" (t :settings-page/tab-version-control) (ui/icon "history")])
+                 [:version-control "git" (t :settings-page/tab-version-control) (ui/icon "history")])
 
                ;; (when (util/electron?)
                ;;   [:assets "assets" (t :settings-page/tab-assets) (ui/icon "box")])
@@ -1091,7 +1091,7 @@
          :editor
          (settings-editor current-repo)
 
-         :git
+         :version-control
          (settings-git)
 
          :assets