diff --git a/app/src/main/java/io/xpipe/app/browser/file/BrowserFileListComp.java b/app/src/main/java/io/xpipe/app/browser/file/BrowserFileListComp.java index 2d957220..f64cdcba 100644 --- a/app/src/main/java/io/xpipe/app/browser/file/BrowserFileListComp.java +++ b/app/src/main/java/io/xpipe/app/browser/file/BrowserFileListComp.java @@ -81,6 +81,7 @@ public final class BrowserFileListComp extends SimpleComp { filenameCol.setSortType(ASCENDING); filenameCol.setCellFactory(col -> new FilenameCell(fileList.getEditing(), col.getTableView())); filenameCol.setReorderable(false); + filenameCol.setResizable(false); var sizeCol = new TableColumn(); sizeCol.textProperty().bind(AppI18n.observable("size")); @@ -118,36 +119,53 @@ public final class BrowserFileListComp extends SimpleComp { ownerCol.setCellFactory(col -> new FileOwnerCell()); ownerCol.setSortable(false); ownerCol.setReorderable(false); - ownerCol.prefWidthProperty().bind(ownerWidth); ownerCol.setResizable(false); var table = new TableView(); + table.setSkin(new TableViewSkin<>(table)); table.setAccessibleText("Directory contents"); table.setPlaceholder(new Region()); table.getStyleClass().add(Styles.STRIPED); - table.getColumns().setAll(filenameCol, sizeCol, modeCol, mtimeCol); + table.getColumns().setAll(filenameCol, sizeCol, modeCol, ownerCol, mtimeCol); table.getSortOrder().add(filenameCol); table.setFocusTraversable(true); table.setSortPolicy(param -> { fileList.setComparator(table.getComparator()); return true; }); - table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY_FLEX_NEXT_COLUMN); table.setFixedCellSize(32.0); - + var os = fileList.getFileSystemModel().getFileSystem().getShell().orElseThrow().getOsType(); table.widthProperty().subscribe((newValue) -> { - ownerCol.setVisible(newValue.doubleValue() > 1000); + if (os != OsType.WINDOWS) { + ownerCol.setVisible(newValue.doubleValue() > 1000); + } + var width = getFilenameWidth(table); + filenameCol.setPrefWidth(width); + }); + + table.lookupAll(".scroll-bar").stream().filter(node -> node.getPseudoClassStates().contains(PseudoClass.getPseudoClass("horizontal"))).findFirst().ifPresent(node -> { + Region region = (Region) node; + region.setMinHeight(0); + region.setPrefHeight(0); + region.setMaxHeight(0); }); prepareTableSelectionModel(table); prepareTableShortcuts(table); prepareTableEntries(table); - prepareTableChanges(table, mtimeCol, modeCol, ownerCol); + prepareTableChanges(table, filenameCol, mtimeCol, modeCol, ownerCol); prepareTypedSelectionModel(table); return table; } + private double getFilenameWidth(TableView tableView) { + var sum = tableView.getColumns().stream().filter(tableColumn -> tableColumn.isVisible() && + tableView.getColumns().indexOf(tableColumn) != 0) + .mapToDouble(value -> value.getPrefWidth()).sum() + 7; + return tableView.getWidth() - sum; + } + private String formatOwner(BrowserEntry param) { FileInfo.Unix unix = param.getRawFileEntry().resolved().getInfo() instanceof FileInfo.Unix u ? u : null; if (unix == null) { @@ -400,72 +418,60 @@ public final class BrowserFileListComp extends SimpleComp { private void prepareTableChanges( TableView table, + TableColumn filenameCol, TableColumn mtimeCol, TableColumn modeCol, TableColumn ownerCol) { var lastDir = new SimpleObjectProperty(); Runnable updateHandler = () -> { - Platform.runLater(() -> { + PlatformThread.runLaterIfNeeded(() -> { var newItems = new ArrayList<>(fileList.getShown().getValue()); + table.getItems().clear(); - var hasModifiedDate = newItems.size() == 0 - || newItems.stream() - .anyMatch(entry -> entry.getRawFileEntry().getDate() != null); + var hasModifiedDate = newItems.size() == 0 || newItems.stream().anyMatch(entry -> entry.getRawFileEntry().getDate() != null); if (!hasModifiedDate) { - table.getColumns().remove(mtimeCol); + mtimeCol.setVisible(false); } else { - if (!table.getColumns().contains(mtimeCol)) { - table.getColumns().add(mtimeCol); - } + mtimeCol.setVisible(true); } - ownerWidth.set(fileList.getAll().getValue().stream() - .map(browserEntry -> formatOwner(browserEntry)) - .map(s -> s != null ? s.length() * 10 : 0) - .max(Comparator.naturalOrder()).orElse(150)); + ownerWidth.set(fileList.getAll().getValue().stream().map(browserEntry -> formatOwner(browserEntry)).map( + s -> s != null ? s.length() * 9 : 0).max(Comparator.naturalOrder()).orElse(150)); + ownerCol.setPrefWidth(ownerWidth.get()); + if (fileList.getFileSystemModel().getFileSystem() != null) { - var shell = fileList.getFileSystemModel() - .getFileSystem() - .getShell() - .orElseThrow(); - var notWindows = !OsType.WINDOWS.equals(shell.getOsType()); - if (!notWindows) { - table.getColumns().remove(modeCol); - table.getColumns().remove(ownerCol); + var shell = fileList.getFileSystemModel().getFileSystem().getShell().orElseThrow(); + if (OsType.WINDOWS.equals(shell.getOsType())) { + modeCol.setVisible(false); + ownerCol.setVisible(false); } else { - if (!table.getColumns().contains(modeCol)) { - table.getColumns().add(modeCol); - } - if (!table.getColumns().contains(ownerCol)) { - table.getColumns().add(table.getColumns().size() - 1, ownerCol); - } else { - table.getColumns().remove(ownerCol); + modeCol.setVisible(true); + if (table.getWidth() > 1000) { + ownerCol.setVisible(true); } } } - if (!table.getItems().equals(newItems)) { - // Sort the list ourselves as sorting the table would incur a lot of cell updates - var obs = FXCollections.observableList(newItems); - table.getItems().setAll(obs); - } + // Sort the list ourselves as sorting the table would incur a lot of cell updates + var obs = FXCollections.observableList(newItems); + table.getItems().setAll(obs); + var width = getFilenameWidth(table); + filenameCol.setPrefWidth(width); + + TableViewSkin skin = (TableViewSkin) table.getSkin(); var currentDirectory = fileList.getFileSystemModel().getCurrentDirectory(); - if (!Objects.equals(lastDir.get(), currentDirectory)) { - TableViewSkin skin = (TableViewSkin) table.getSkin(); - if (skin != null) { - VirtualFlow flow = - (VirtualFlow) skin.getChildren().get(1); - ScrollBar vbar = - (ScrollBar) flow.getChildrenUnmodifiable().get(2); - if (vbar.getValue() != 0.0) { - table.scrollTo(0); - } + if (skin != null && !Objects.equals(lastDir.get(), currentDirectory)) { + VirtualFlow flow = (VirtualFlow) skin.getChildren().get(1); + ScrollBar vbar = (ScrollBar) flow.getChildrenUnmodifiable().get(2); + if (vbar.getValue() != 0.0) { + table.scrollTo(0); } } lastDir.setValue(currentDirectory); }); }; + updateHandler.run(); fileList.getShown().addListener((observable, oldValue, newValue) -> { updateHandler.run(); @@ -606,9 +612,7 @@ public final class BrowserFileListComp extends SimpleComp { .getCurrentParentDirectory()); return notDir || isParentLink; }, - itemProperty()) - .not() - .not()) + itemProperty())) .focusTraversable(false) .createRegion(); diff --git a/app/src/main/java/io/xpipe/app/browser/fs/OpenFileSystemCache.java b/app/src/main/java/io/xpipe/app/browser/fs/OpenFileSystemCache.java index 135e518f..a818ec01 100644 --- a/app/src/main/java/io/xpipe/app/browser/fs/OpenFileSystemCache.java +++ b/app/src/main/java/io/xpipe/app/browser/fs/OpenFileSystemCache.java @@ -5,10 +5,9 @@ import io.xpipe.core.process.CommandBuilder; import io.xpipe.core.process.OsType; import io.xpipe.core.process.ShellControl; import io.xpipe.core.process.ShellDialect; - import lombok.Getter; -import java.util.HashMap; +import java.util.LinkedHashMap; import java.util.Map; @Getter @@ -16,8 +15,8 @@ public class OpenFileSystemCache extends ShellControlCache { private final OpenFileSystemModel model; private final String username; - private final Map users = new HashMap<>(); - private final Map groups = new HashMap<>(); + private final Map users = new LinkedHashMap<>(); + private final Map groups = new LinkedHashMap<>(); public OpenFileSystemCache(OpenFileSystemModel model) throws Exception { super(model.getFileSystem().getShell().orElseThrow()); diff --git a/app/src/main/java/io/xpipe/app/browser/session/BrowserSessionMultiTab.java b/app/src/main/java/io/xpipe/app/browser/session/BrowserSessionMultiTab.java deleted file mode 100644 index 1c9be334..00000000 --- a/app/src/main/java/io/xpipe/app/browser/session/BrowserSessionMultiTab.java +++ /dev/null @@ -1,46 +0,0 @@ -package io.xpipe.app.browser.session; - -import io.xpipe.app.comp.base.MultiContentComp; -import io.xpipe.app.fxcomps.Comp; -import io.xpipe.app.fxcomps.util.BindingsHelper; -import io.xpipe.app.storage.DataStoreEntryRef; -import io.xpipe.core.store.DataStore; - -import javafx.beans.property.Property; -import javafx.beans.property.SimpleObjectProperty; -import javafx.beans.value.ObservableValue; -import javafx.collections.FXCollections; -import javafx.collections.ListChangeListener; -import javafx.collections.ObservableList; - -import lombok.Getter; - -@Getter -public class BrowserSessionMultiTab extends BrowserSessionTab { - - protected final Property> currentTab = new SimpleObjectProperty<>(); - private final ObservableList> allTabs = FXCollections.observableArrayList(); - - public BrowserSessionMultiTab(BrowserAbstractSessionModel browserModel, DataStoreEntryRef entry) { - super(browserModel, entry); - } - - public Comp comp() { - var map = FXCollections., ObservableValue>observableHashMap(); - allTabs.addListener((ListChangeListener>) c -> { - for (BrowserSessionTab a : c.getAddedSubList()) { - map.put(a.comp(), BindingsHelper.map(currentTab, browserSessionTab -> a.equals(browserSessionTab))); - } - }); - var mt = new MultiContentComp(map); - return mt; - } - - public boolean canImmediatelyClose() { - return true; - } - - public void init() {} - - public void close() {} -} diff --git a/app/src/main/java/io/xpipe/app/comp/base/MultiContentComp.java b/app/src/main/java/io/xpipe/app/comp/base/MultiContentComp.java index 2eca57d7..9dbfacb8 100644 --- a/app/src/main/java/io/xpipe/app/comp/base/MultiContentComp.java +++ b/app/src/main/java/io/xpipe/app/comp/base/MultiContentComp.java @@ -3,11 +3,8 @@ package io.xpipe.app.comp.base; import io.xpipe.app.fxcomps.Comp; import io.xpipe.app.fxcomps.SimpleComp; import io.xpipe.app.fxcomps.util.PlatformThread; - import javafx.beans.value.ObservableValue; import javafx.collections.FXCollections; -import javafx.collections.MapChangeListener; -import javafx.collections.ObservableMap; import javafx.scene.layout.Region; import javafx.scene.layout.StackPane; @@ -15,52 +12,28 @@ import java.util.Map; public class MultiContentComp extends SimpleComp { - private final ObservableMap, ObservableValue> content; + private final Map, ObservableValue> content; public MultiContentComp(Map, ObservableValue> content) { this.content = FXCollections.observableMap(content); } - public MultiContentComp(ObservableMap, ObservableValue> content) { - this.content = content; - } - @Override protected Region createSimple() { - ObservableMap, Region> m = FXCollections.observableHashMap(); - content.addListener((MapChangeListener, ? super ObservableValue>) change -> { - if (change.wasAdded()) { - var r = change.getKey().createRegion(); - change.getValueAdded().subscribe(val -> { - PlatformThread.runLaterIfNeeded(() -> { - r.setManaged(val); - r.setVisible(val); - }); - }); - m.put(change.getKey(), r); - } else { - m.remove(change.getKey()); - } - }); - var stack = new StackPane(); - m.addListener((MapChangeListener, Region>) change -> { - if (change.wasAdded()) { - stack.getChildren().add(change.getValueAdded()); - } else { - stack.getChildren().remove(change.getValueRemoved()); - } - }); - for (Map.Entry, ObservableValue> e : content.entrySet()) { var r = e.getKey().createRegion(); e.getValue().subscribe(val -> { PlatformThread.runLaterIfNeeded(() -> { r.setManaged(val); r.setVisible(val); + if (val && !stack.getChildren().contains(r)) { + stack.getChildren().add(r); + } else { + stack.getChildren().remove(r); + } }); }); - m.put(e.getKey(), r); } return stack; diff --git a/app/src/main/java/io/xpipe/app/fxcomps/impl/TooltipAugment.java b/app/src/main/java/io/xpipe/app/fxcomps/impl/TooltipAugment.java index 67d82080..cc1bbc47 100644 --- a/app/src/main/java/io/xpipe/app/fxcomps/impl/TooltipAugment.java +++ b/app/src/main/java/io/xpipe/app/fxcomps/impl/TooltipAugment.java @@ -4,13 +4,11 @@ import io.xpipe.app.core.AppI18n; import io.xpipe.app.fxcomps.CompStructure; import io.xpipe.app.fxcomps.augment.Augment; import io.xpipe.app.fxcomps.util.PlatformThread; - import javafx.beans.binding.Bindings; import javafx.beans.value.ObservableValue; import javafx.scene.control.Tooltip; import javafx.scene.input.KeyCombination; import javafx.stage.Window; -import javafx.util.Duration; public class TooltipAugment> implements Augment { @@ -46,7 +44,6 @@ public class TooltipAugment> implements Augment { tt.setWrapText(true); tt.setMaxWidth(400); tt.getStyleClass().add("fancy-tooltip"); - tt.setHideDelay(Duration.INDEFINITE); Tooltip.install(struc.get(), tt); } diff --git a/app/src/main/resources/io/xpipe/app/resources/style/browser.css b/app/src/main/resources/io/xpipe/app/resources/style/browser.css index 2d7e6ee7..66a88f64 100644 --- a/app/src/main/resources/io/xpipe/app/resources/style/browser.css +++ b/app/src/main/resources/io/xpipe/app/resources/style/browser.css @@ -289,11 +289,7 @@ -fx-font-size: 0.9em; -fx-font-weight: bolder; -fx-opacity: 0.9; - -fx-padding: 0 0 0 12; -} - -.browser .table-row-cell { - -fx-padding: 0 0 0 5; + -fx-padding: 0 0 0 7; } .browser .table-row-cell:empty { diff --git a/app/src/main/resources/io/xpipe/app/resources/style/scrollbar.css b/app/src/main/resources/io/xpipe/app/resources/style/scrollbar.css index d7ebaf0f..f557908a 100644 --- a/app/src/main/resources/io/xpipe/app/resources/style/scrollbar.css +++ b/app/src/main/resources/io/xpipe/app/resources/style/scrollbar.css @@ -1,6 +1,7 @@ .scroll-bar:vertical { -fx-min-width: 7px; -fx-pref-width: 7px; + -fx-max-width: 7px; -fx-padding: 1; -fx-background-color: transparent; } diff --git a/ext/base/src/main/java/io/xpipe/ext/base/browser/ChgrpAction.java b/ext/base/src/main/java/io/xpipe/ext/base/browser/ChgrpAction.java new file mode 100644 index 00000000..207f67f0 --- /dev/null +++ b/ext/base/src/main/java/io/xpipe/ext/base/browser/ChgrpAction.java @@ -0,0 +1,72 @@ +package io.xpipe.ext.base.browser; + +import io.xpipe.app.browser.action.BranchAction; +import io.xpipe.app.browser.action.LeafAction; +import io.xpipe.app.browser.file.BrowserEntry; +import io.xpipe.app.browser.fs.OpenFileSystemModel; +import io.xpipe.app.core.AppI18n; +import io.xpipe.core.process.CommandBuilder; +import io.xpipe.core.process.OsType; +import javafx.beans.property.SimpleStringProperty; +import javafx.beans.value.ObservableValue; +import javafx.scene.Node; +import org.kordamp.ikonli.javafx.FontIcon; + +import java.util.List; + +public class ChgrpAction implements BranchAction { + + @Override + public Node getIcon(OpenFileSystemModel model, List entries) { + return new FontIcon("mdi2a-account-group-outline"); + } + + @Override + public Category getCategory() { + return Category.MUTATION; + } + + @Override + public ObservableValue getName(OpenFileSystemModel model, List entries) { + return AppI18n.observable("chgrp"); + } + + @Override + public boolean isApplicable(OpenFileSystemModel model, List entries) { + return model.getFileSystem().getShell().orElseThrow().getOsType() != OsType.WINDOWS; + } + + @Override + public List getBranchingActions(OpenFileSystemModel model, List entries) { + return model.getCache().getGroups().entrySet().stream() + .filter(e -> !e.getValue().equals("nogroup") && (e.getKey().equals(0) || e.getKey() >= 1000)) + .map(e -> e.getValue()).map(s -> (LeafAction) new Chgrp(s)).toList(); + } + + private static class Chgrp implements LeafAction { + + private final String option; + + private Chgrp(String option) { + this.option = option; + } + + @Override + public ObservableValue getName(OpenFileSystemModel model, List entries) { + return new SimpleStringProperty(option); + } + + @Override + public void execute(OpenFileSystemModel model, List entries) throws Exception { + model.getFileSystem() + .getShell() + .orElseThrow() + .executeSimpleCommand(CommandBuilder.of() + .add("chgrp", option) + .addFiles(entries.stream() + .map(browserEntry -> + browserEntry.getRawFileEntry().getPath()) + .toList())); + } + } +} diff --git a/ext/base/src/main/java/io/xpipe/ext/base/browser/ChownAction.java b/ext/base/src/main/java/io/xpipe/ext/base/browser/ChownAction.java new file mode 100644 index 00000000..a327d5f4 --- /dev/null +++ b/ext/base/src/main/java/io/xpipe/ext/base/browser/ChownAction.java @@ -0,0 +1,72 @@ +package io.xpipe.ext.base.browser; + +import io.xpipe.app.browser.action.BranchAction; +import io.xpipe.app.browser.action.LeafAction; +import io.xpipe.app.browser.file.BrowserEntry; +import io.xpipe.app.browser.fs.OpenFileSystemModel; +import io.xpipe.app.core.AppI18n; +import io.xpipe.core.process.CommandBuilder; +import io.xpipe.core.process.OsType; +import javafx.beans.property.SimpleStringProperty; +import javafx.beans.value.ObservableValue; +import javafx.scene.Node; +import org.kordamp.ikonli.javafx.FontIcon; + +import java.util.List; + +public class ChownAction implements BranchAction { + + @Override + public Node getIcon(OpenFileSystemModel model, List entries) { + return new FontIcon("mdi2a-account-edit"); + } + + @Override + public Category getCategory() { + return Category.MUTATION; + } + + @Override + public ObservableValue getName(OpenFileSystemModel model, List entries) { + return AppI18n.observable("chown"); + } + + @Override + public boolean isApplicable(OpenFileSystemModel model, List entries) { + return model.getFileSystem().getShell().orElseThrow().getOsType() != OsType.WINDOWS; + } + + @Override + public List getBranchingActions(OpenFileSystemModel model, List entries) { + return model.getCache().getUsers().entrySet().stream() + .filter(e -> !e.getValue().equals("nobody") && (e.getKey().equals(0) || e.getKey() >= 1000)) + .map(e -> e.getValue()).map(s -> (LeafAction) new Chown(s)).toList(); + } + + private static class Chown implements LeafAction { + + private final String option; + + private Chown(String option) { + this.option = option; + } + + @Override + public ObservableValue getName(OpenFileSystemModel model, List entries) { + return new SimpleStringProperty(option); + } + + @Override + public void execute(OpenFileSystemModel model, List entries) throws Exception { + model.getFileSystem() + .getShell() + .orElseThrow() + .executeSimpleCommand(CommandBuilder.of() + .add("chown", option) + .addFiles(entries.stream() + .map(browserEntry -> + browserEntry.getRawFileEntry().getPath()) + .toList())); + } + } +} diff --git a/ext/base/src/main/java/module-info.java b/ext/base/src/main/java/module-info.java index 9a96cbf7..8e93f8cf 100644 --- a/ext/base/src/main/java/module-info.java +++ b/ext/base/src/main/java/module-info.java @@ -52,6 +52,8 @@ open module io.xpipe.ext.base { EditFileAction, RunAction, ChmodAction, + ChownAction, + ChgrpAction, CopyAction, CopyPathAction, PasteAction, diff --git a/lang/base/strings/fixed_en.properties b/lang/base/strings/fixed_en.properties new file mode 100644 index 00000000..ec2d6aa2 --- /dev/null +++ b/lang/base/strings/fixed_en.properties @@ -0,0 +1,3 @@ +chmod=Chmod +chgrp=Chgrp +chown=Chown \ No newline at end of file diff --git a/lang/base/strings/translations_da.properties b/lang/base/strings/translations_da.properties index 05bdd614..7a0f1373 100644 --- a/lang/base/strings/translations_da.properties +++ b/lang/base/strings/translations_da.properties @@ -87,7 +87,6 @@ back=Gå tilbage browseInWindowsExplorer=Gennemse i Windows explorer browseInDefaultFileManager=Gennemse i standard filhåndtering browseInFinder=Gennemse i finder -chmod=Chmod copy=Kopi paste=Indsæt copyLocation=Kopiér placering diff --git a/lang/base/strings/translations_de.properties b/lang/base/strings/translations_de.properties index 889e00cd..bd1b44fd 100644 --- a/lang/base/strings/translations_de.properties +++ b/lang/base/strings/translations_de.properties @@ -82,7 +82,6 @@ back=Zurückgehen browseInWindowsExplorer=Blättern im Windows-Explorer browseInDefaultFileManager=Blättern im Standard-Dateimanager browseInFinder=Im Finder blättern -chmod=Chmod #custom copy=Kopieren paste=Einfügen diff --git a/lang/base/strings/translations_en.properties b/lang/base/strings/translations_en.properties index 16315d28..232c267b 100644 --- a/lang/base/strings/translations_en.properties +++ b/lang/base/strings/translations_en.properties @@ -81,7 +81,6 @@ back=Go back browseInWindowsExplorer=Browse in Windows explorer browseInDefaultFileManager=Browse in default file manager browseInFinder=Browse in finder -chmod=Chmod copy=Copy paste=Paste copyLocation=Copy location diff --git a/lang/base/strings/translations_es.properties b/lang/base/strings/translations_es.properties index d3cdd6a2..5180b358 100644 --- a/lang/base/strings/translations_es.properties +++ b/lang/base/strings/translations_es.properties @@ -81,7 +81,6 @@ back=Volver atrás browseInWindowsExplorer=Navegar en el explorador de Windows browseInDefaultFileManager=Navegar en el gestor de archivos por defecto browseInFinder=Navegar en el buscador -chmod=Chmod copy=Copia paste=Pegar copyLocation=Ubicación de la copia diff --git a/lang/base/strings/translations_fr.properties b/lang/base/strings/translations_fr.properties index df537b87..92f555c9 100644 --- a/lang/base/strings/translations_fr.properties +++ b/lang/base/strings/translations_fr.properties @@ -81,7 +81,6 @@ back=Retourner browseInWindowsExplorer=Naviguer dans l'explorateur Windows browseInDefaultFileManager=Parcourir dans le gestionnaire de fichiers par défaut browseInFinder=Parcourir dans finder -chmod=Chmod copy=Copie paste=Coller copyLocation=Emplacement de la copie diff --git a/lang/base/strings/translations_it.properties b/lang/base/strings/translations_it.properties index 955cd4c5..916c110d 100644 --- a/lang/base/strings/translations_it.properties +++ b/lang/base/strings/translations_it.properties @@ -81,7 +81,6 @@ back=Torna indietro browseInWindowsExplorer=Sfogliare in Windows explorer browseInDefaultFileManager=Sfoglia nel file manager predefinito browseInFinder=Sfogliare in finder -chmod=Chmod copy=Copia paste=Incolla copyLocation=Posizione di copia diff --git a/lang/base/strings/translations_ja.properties b/lang/base/strings/translations_ja.properties index 1157b5a1..07c6947d 100644 --- a/lang/base/strings/translations_ja.properties +++ b/lang/base/strings/translations_ja.properties @@ -81,7 +81,6 @@ back=戻る browseInWindowsExplorer=Windowsエクスプローラでブラウズする browseInDefaultFileManager=デフォルトのファイルマネージャーでブラウズする browseInFinder=ファインダーでブラウズする -chmod=Chmod copy=コピー paste=貼り付け copyLocation=コピー場所 diff --git a/lang/base/strings/translations_nl.properties b/lang/base/strings/translations_nl.properties index 4fa31e6e..2ecb3324 100644 --- a/lang/base/strings/translations_nl.properties +++ b/lang/base/strings/translations_nl.properties @@ -81,7 +81,6 @@ back=Teruggaan browseInWindowsExplorer=Bladeren in Windows verkenner browseInDefaultFileManager=Bladeren in standaard bestandsbeheer browseInFinder=Bladeren in finder -chmod=Chmod copy=Kopiëren paste=Plakken copyLocation=Locatie kopiëren diff --git a/lang/base/strings/translations_pt.properties b/lang/base/strings/translations_pt.properties index 83c86efa..ec111778 100644 --- a/lang/base/strings/translations_pt.properties +++ b/lang/base/strings/translations_pt.properties @@ -81,7 +81,6 @@ back=Volta atrás browseInWindowsExplorer=Navega no Windows Explorer browseInDefaultFileManager=Navega no gestor de ficheiros predefinido browseInFinder=Navega no localizador -chmod=Chmod copy=Copia paste=Cola copyLocation=Copia a localização diff --git a/lang/base/strings/translations_ru.properties b/lang/base/strings/translations_ru.properties index 0c76ed77..7b8a0003 100644 --- a/lang/base/strings/translations_ru.properties +++ b/lang/base/strings/translations_ru.properties @@ -81,7 +81,6 @@ back=Возвращайся назад browseInWindowsExplorer=Обзор в проводнике Windows browseInDefaultFileManager=Обзор в файловом менеджере по умолчанию browseInFinder=Обзор в программе для поиска -chmod=Chmod copy=Скопируй paste=Paste copyLocation=Место копирования diff --git a/lang/base/strings/translations_tr.properties b/lang/base/strings/translations_tr.properties index ac72818c..9cffa7fb 100644 --- a/lang/base/strings/translations_tr.properties +++ b/lang/base/strings/translations_tr.properties @@ -81,7 +81,6 @@ back=Geri dön browseInWindowsExplorer=Windows gezgininde göz atın browseInDefaultFileManager=Varsayılan dosya yöneticisine göz atın browseInFinder=Bulucuya göz atın -chmod=Chmod copy=Anlaşıldı paste=Yapıştır copyLocation=Kopyalama konumu diff --git a/lang/base/strings/translations_zh.properties b/lang/base/strings/translations_zh.properties index 1d8254d8..3c2fa2b1 100644 --- a/lang/base/strings/translations_zh.properties +++ b/lang/base/strings/translations_zh.properties @@ -81,7 +81,6 @@ back=返回 browseInWindowsExplorer=在 Windows 资源管理器中浏览 browseInDefaultFileManager=在默认文件管理器中浏览 browseInFinder=在查找器中浏览 -chmod=Chmod copy=复制 paste=粘贴 copyLocation=复制位置