Move to python venv so that upto date chameleon avaiable
This commit is contained in:
125
Targets/Nfsshare/Nfsshare-Custom.pm
Normal file
125
Targets/Nfsshare/Nfsshare-Custom.pm
Normal file
@@ -0,0 +1,125 @@
|
||||
#
|
||||
# Routines to be edited by the developer to provide validation for parameters
|
||||
# and provison of the control data for table(s)
|
||||
#
|
||||
# Generated by SME2Gen version:0.7 Chameleon version:4.5.4 On Python:3.10.12 at 2024-05-06 08:40
|
||||
#
|
||||
|
||||
use esmith::util;
|
||||
use esmith::HostsDB;
|
||||
use esmith::AccountsDB;
|
||||
use esmith::NetworksDB;
|
||||
use esmith::HostsDB;
|
||||
use esmith::DomainsDB;
|
||||
|
||||
|
||||
#The most common ones
|
||||
our $cdb = esmith::ConfigDB->open() || die("Couldn't open config db");
|
||||
our $adb = esmith::AccountsDB->open() || die("Couldn't open Accounts db");
|
||||
our $ndb = esmith::NetworksDB->open() || die("Couldn't open Network db");
|
||||
our $hdb = esmith::HostsDB->open() || die("Couldn't open Hosts db");
|
||||
our $ddb = esmith::DomainsDB->open() || die("Couldn't open Domains db");
|
||||
|
||||
# Validation routines - parameters for each panel
|
||||
|
||||
sub validate_PARAMS {
|
||||
my $c = shift;
|
||||
my $prefix_data = shift; #Data hash as parameter
|
||||
my $ret = 'ok';
|
||||
return $ret;
|
||||
}
|
||||
|
||||
sub validate_TABLE {
|
||||
my $c = shift;
|
||||
my $prefix_data = shift; #Data hash as parameter
|
||||
my $ret = 'ok';
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
||||
# Get control data for tables(s)
|
||||
|
||||
sub get_ibays {
|
||||
my $c = shift;
|
||||
my @ret = {};
|
||||
my @ibays = $adb->ibays();
|
||||
foreach my $i (@ibays){
|
||||
# Taken pretty well verbatim from /usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/nfsshare.pm
|
||||
# although the href is more specific to the SM2 structure.
|
||||
my $ibayname = $i->key();
|
||||
my $ibaydesc = $i->prop('Name');
|
||||
my $ibaynfs = $i->prop('NfsStatus')||'disabled';
|
||||
my $modifiable = $i->prop('Modifiable') || 'yes';
|
||||
|
||||
$ibaynfs = $c->l('ENABLED') if ($ibaynfs eq 'enabled');
|
||||
$ibaynfs = $c->l('DISABLED') if ($ibaynfs eq 'disabled');
|
||||
|
||||
|
||||
#my $params = $self->build_ibay_cgi_params($ibayname, $i->props());
|
||||
#my $scriptname = "nfsshareu";
|
||||
#my $href = "$scriptname?$params&action=modify&wherenext=";
|
||||
|
||||
my $actionModify = ' ';
|
||||
if ($modifiable eq 'yes'){
|
||||
$actionModify .= "<a href='nfsshared?trt=PARAMS&Selected=$ibayname'><button class='sme-modify-button' title=".$c->l("MODIFY").">".$c->l("MODIFY")."</button></a>"." "
|
||||
}
|
||||
|
||||
my %hash = ('Name'=> $ibayname,
|
||||
'Description' => $ibaydesc,
|
||||
'Flag' => $ibaynfs,
|
||||
'Modify' => $actionModify
|
||||
);
|
||||
push(@ret,\%hash);
|
||||
}
|
||||
return \@ret
|
||||
}
|
||||
|
||||
|
||||
# Return hash with values from row in which link clicked on table
|
||||
|
||||
sub get_selected_PARAMS {
|
||||
my $c = shift;
|
||||
my $selected = shift; #Parameter is name of selected row.
|
||||
my $is_new_record = shift; #Indicates new record required (defaults)
|
||||
my %ret = {};
|
||||
return $ret;
|
||||
}
|
||||
|
||||
sub get_selected_TABLE {
|
||||
my $c = shift;
|
||||
my $selected = shift; #Parameter is name of selected row.
|
||||
my $is_new_record = shift; #Indicates new record required (defaults)
|
||||
my %ret = {};
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
||||
#after sucessful modify or create or whatever and submit then perfom (if the params validate)
|
||||
|
||||
sub perform_PARAMS {
|
||||
my $c = shift;
|
||||
my $prefix_data = shift; #Data hash as parameter
|
||||
my $ret = 'ok';
|
||||
return $ret;
|
||||
}
|
||||
|
||||
sub perform_TABLE {
|
||||
my $c = shift;
|
||||
my $prefix_data = shift; #Data hash as parameter
|
||||
my $ret = 'ok';
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
||||
sub create_link{
|
||||
# WIP
|
||||
my ($c,$route, $panel, $index) = shift;
|
||||
my $link = "$route?trt=$panel&Selected=$index";
|
||||
return $link;
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
|
||||
|
||||
|
96
Targets/Nfsshare/Nfsshare-Custom.pm.new
Normal file
96
Targets/Nfsshare/Nfsshare-Custom.pm.new
Normal file
@@ -0,0 +1,96 @@
|
||||
#
|
||||
# Routines to be edited by the developer to provide validation for parameters
|
||||
# and provison of the control data for table(s)
|
||||
#
|
||||
# Generated by SM2Gen version:0.8 Chameleon version:4.5.4 On Python:3.10.12 at 2024-09-03 13:54
|
||||
#
|
||||
|
||||
use esmith::util;
|
||||
use esmith::HostsDB;
|
||||
use esmith::AccountsDB;
|
||||
use esmith::NetworksDB;
|
||||
use esmith::HostsDB;
|
||||
use esmith::DomainsDB;
|
||||
|
||||
|
||||
#The most common ones
|
||||
our $cdb = esmith::ConfigDB->open() || die("Couldn't open config db");
|
||||
our $adb = esmith::AccountsDB->open() || die("Couldn't open Accounts db");
|
||||
our $ndb = esmith::NetworksDB->open() || die("Couldn't open Network db");
|
||||
our $hdb = esmith::HostsDB->open() || die("Couldn't open Hosts db");
|
||||
our $ddb = esmith::DomainsDB->open() || die("Couldn't open Domains db");
|
||||
|
||||
# Validation routines - parameters for each panel
|
||||
|
||||
sub validate_PARAMS {
|
||||
my $c = shift;
|
||||
my $prefix_data = shift; #Data hash as parameter
|
||||
my $ret = 'ok';
|
||||
return $ret;
|
||||
}
|
||||
|
||||
sub validate_TABLE {
|
||||
my $c = shift;
|
||||
my $prefix_data = shift; #Data hash as parameter
|
||||
my $ret = 'ok';
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
||||
# Get control data for tables(s)
|
||||
|
||||
sub get_ibays {
|
||||
my $c = shift;
|
||||
my @ret = {};
|
||||
return \@ret
|
||||
}
|
||||
|
||||
|
||||
# Return hash with values from row in which link clicked on table
|
||||
|
||||
sub get_selected_PARAMS {
|
||||
my $c = shift;
|
||||
my $selected = shift; #Parameter is name of selected row.
|
||||
my $is_new_record = shift; #Indicates new record required (defaults)
|
||||
my %ret = {};
|
||||
return $ret;
|
||||
}
|
||||
|
||||
sub get_selected_TABLE {
|
||||
my $c = shift;
|
||||
my $selected = shift; #Parameter is name of selected row.
|
||||
my $is_new_record = shift; #Indicates new record required (defaults)
|
||||
my %ret = {};
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
||||
#after sucessful modify or create or whatever and submit then perfom (if the params validate)
|
||||
|
||||
sub perform_PARAMS {
|
||||
my $c = shift;
|
||||
my $prefix_data = shift; #Data hash as parameter
|
||||
my $ret = 'ok';
|
||||
return $ret;
|
||||
}
|
||||
|
||||
sub perform_TABLE {
|
||||
my $c = shift;
|
||||
my $prefix_data = shift; #Data hash as parameter
|
||||
my $ret = 'ok';
|
||||
return $ret;
|
||||
}
|
||||
|
||||
|
||||
sub create_link{
|
||||
# WIP
|
||||
my ($c,$route, $panel, $index) = shift;
|
||||
my $link = "$route?trt=$panel&Selected=$index";
|
||||
return $link;
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
|
||||
|
||||
|
283
Targets/Nfsshare/Nfsshare.pm
Normal file
283
Targets/Nfsshare/Nfsshare.pm
Normal file
@@ -0,0 +1,283 @@
|
||||
package SrvMngr::Controller::Nfsshare;
|
||||
#
|
||||
# Generated by version:SM2Gen version:0.8 Chameleon version:4.5.4 On Python:3.10.12 at 2024-09-03 13:54
|
||||
#
|
||||
#----------------------------------------------------------------------
|
||||
# heading : Network
|
||||
# description : NFS data share
|
||||
# navigation : 2000 400
|
||||
#
|
||||
# name : nfsshare, method : get, url : /nfsshare, ctlact : Nfsshare#main
|
||||
# name : nfsshareu, method : post, url : /nfsshareu, ctlact : Nfsshare#do_update
|
||||
# name : nfsshared, method : get, url : /nfsshared, ctlact : Nfsshare#do_display
|
||||
#
|
||||
# routes : end
|
||||
#
|
||||
# Documentation: https://wiki.contribs.org/Nfsshare
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
#
|
||||
# Scheme of things:
|
||||
#
|
||||
# TBA!!
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use Mojo::Base 'Mojolicious::Controller';
|
||||
|
||||
use constant FALSE => 0;
|
||||
use constant TRUE => 1;
|
||||
|
||||
use Locale::gettext;
|
||||
use SrvMngr::I18N;
|
||||
use SrvMngr qw(theme_list init_session);
|
||||
|
||||
use Data::Dumper;
|
||||
|
||||
use esmith::util;
|
||||
use esmith::HostsDB;
|
||||
use esmith::AccountsDB;
|
||||
use esmith::NetworksDB;
|
||||
use esmith::HostsDB;
|
||||
use esmith::DomainsDB;
|
||||
|
||||
|
||||
#The most common ones
|
||||
our $cdb = esmith::ConfigDB->open() || die("Couldn't open config db");
|
||||
our $adb = esmith::AccountsDB->open() || die("Couldn't open Accounts db");
|
||||
our $ndb = esmith::NetworksDB->open() || die("Couldn't open Network db");
|
||||
our $hdb = esmith::HostsDB->open() || die("Couldn't open Hosts db");
|
||||
our $ddb = esmith::DomainsDB->open() || die("Couldn't open Domains db");
|
||||
|
||||
require '/usr/share/smanager/lib/SrvMngr/Controller/Nfsshare-Custom.pm'; #The code that is to be added by the developer
|
||||
|
||||
sub main {
|
||||
#
|
||||
# Initial entry - route is "/<whatever>"
|
||||
#
|
||||
#set initial panel
|
||||
#for initial panel:
|
||||
#Specifiy panel to enter
|
||||
#load up _data hash with DB fields
|
||||
#load up stash with pointer(s) to control fields hash(= get-))
|
||||
#and a pointer to the prefix_data hash
|
||||
#render initial panel
|
||||
|
||||
my $c = shift;
|
||||
$c->app->log->info( $c->log_req );
|
||||
|
||||
my %nfs_data = ();
|
||||
my $title = $c->l('nfs_NFS_data_share');
|
||||
my $modul = '';
|
||||
|
||||
$nfs_data{'trt'} = 'TABLE';
|
||||
|
||||
#Load any DB entries into the <prefix>_data area so as they are preset in the form
|
||||
# which DB - this only really works if the initial panel is a PARAMS type panel and not a TABLE
|
||||
my $db = $cdb; #pickup local or global db or Default to config
|
||||
|
||||
|
||||
# and table control fields
|
||||
$c->stash(ibays=>$c->get_ibays());
|
||||
|
||||
|
||||
$c->stash(
|
||||
title => $title,
|
||||
modul => $modul,
|
||||
nfs_data => \%nfs_data
|
||||
);
|
||||
$c->render( template => "nfsshare" );
|
||||
}
|
||||
|
||||
# Post request with params - submit from the form
|
||||
sub do_update {
|
||||
#
|
||||
# Return after submit pushed on panel (this is a post) - route is "/<whatever>u"
|
||||
# parameters in the params hash.
|
||||
#
|
||||
#load up all params into prefix_data hash:
|
||||
#By panel (series of if statements - only one executed):
|
||||
#call validate-PANEL() - return ret = ok or error message
|
||||
|
||||
#if validation not ok:
|
||||
#render back to current panel with error message in stash
|
||||
#otherwise:
|
||||
#By panel (series of if statements - only one executed):
|
||||
#do whatever is required: call perform-PANEL() - return "ok" or Error Message
|
||||
#call signal-event for any global actions specified (check it exists - error and continue?)
|
||||
#if action smeserver-<whatever>-update exists
|
||||
#signal_event smeserver-<whatever>-update
|
||||
#call signal-event for any specific actions for thids panel (check it exists first - error and continue)
|
||||
#set success in stash
|
||||
#if no "nextpanel" entry:
|
||||
#set firstpanel
|
||||
#else
|
||||
#set nextpanel
|
||||
#call render
|
||||
|
||||
my $c = shift;
|
||||
$c->app->log->info($c->log_req);
|
||||
|
||||
my %nfs_data = ();
|
||||
my $title = $c->l('nfs_NFS_data_share');
|
||||
|
||||
# Accessing all POST parameters
|
||||
my %params = $c->req->params->to_hash;
|
||||
|
||||
# Get number of POST parameters
|
||||
my $num_params = keys %params;
|
||||
|
||||
#Params are available in the hash "params" - copy to the prefix_data hash
|
||||
while (my ($key, $value) = each %{$c->req->params->to_hash}) {
|
||||
$nfs_data{$key} = $value;
|
||||
}
|
||||
|
||||
# the value of trt will tell you which panel has returned
|
||||
my $trt = $c->param('trt') || 'TABLE'; #hidden control on every form.
|
||||
my $ret = 'ok';
|
||||
#Validate the parameters in a custom sub one for each panel (although only one of these will be executed)
|
||||
|
||||
my $thispanel;
|
||||
|
||||
if ($trt eq 'PARAMS'){
|
||||
#Validate form parameters for panel PARAMS
|
||||
$ret = $c->validate_PARAMS(\%nfs_data);
|
||||
$thispanel = 'PARAMS';
|
||||
}
|
||||
|
||||
if ($trt eq 'TABLE'){
|
||||
#Validate form parameters for panel TABLE
|
||||
$ret = $c->validate_TABLE(\%nfs_data);
|
||||
$thispanel = 'TABLE';
|
||||
}
|
||||
|
||||
|
||||
if ($ret ne "ok") {
|
||||
# return to the panel with error message
|
||||
$c->stash(error => $c->l($ret));
|
||||
$c->render("nfsshare");
|
||||
} else {
|
||||
#Do whatever is needed, including writing values to the DB
|
||||
|
||||
if ($trt eq 'PARAMS'){
|
||||
#do whatever is required ...
|
||||
$ret = $c->perform_PARAMS(\%nfs_data);
|
||||
if ($ret ne "ok") {
|
||||
# return to the panel with error message
|
||||
$c->stash(error => $c->l($ret));
|
||||
$c->render("nfsshare");
|
||||
} else {
|
||||
$c->stash( success => $c->l('nfs_PARAMS_panel_action_was_successful')); #A bit bland - edit it in the lex file
|
||||
}
|
||||
}
|
||||
|
||||
if ($trt eq 'TABLE'){
|
||||
#do whatever is required ...
|
||||
$ret = $c->perform_TABLE(\%nfs_data);
|
||||
if ($ret ne "ok") {
|
||||
# return to the panel with error message
|
||||
$c->stash(error => $c->l($ret));
|
||||
$c->render("nfsshare");
|
||||
} else {
|
||||
$c->stash( success => $c->l('nfs_TABLE_panel_action_was_successful')); #A bit bland - edit it in the lex file
|
||||
}
|
||||
}
|
||||
|
||||
# and call any signal-events needed
|
||||
|
||||
|
||||
# Setup shared data and call panel
|
||||
$c->stash(
|
||||
title => $title,
|
||||
nfs_data => \%nfs_data
|
||||
);
|
||||
if ('none' eq 'none') {
|
||||
$nfs_data{'trt'} = 'TABLE';
|
||||
} else {
|
||||
$nfs_data{'trt'} = 'none';
|
||||
}
|
||||
$c->render("nfsshare");
|
||||
}
|
||||
}
|
||||
|
||||
sub do_display {
|
||||
#
|
||||
# Return after link clicked in table (this is a get) - route is "/<whatever>d"
|
||||
# Expects ?trt=PANEL&selected="TableRowName" plus any other required
|
||||
#
|
||||
# OR it maybe a post from the main panel to add a new record
|
||||
#
|
||||
#load up all supplied params into prefix_data hash
|
||||
#call get-selected-PANEL() - returns hash of all relevent parameters
|
||||
#load up returned hash into prefix_data
|
||||
#render - to called panel
|
||||
|
||||
my $c = shift;
|
||||
$c->app->log->info($c->log_req);
|
||||
|
||||
my %nfs_data = ();
|
||||
my $title = $c->l('nfs_NFS_data_share');
|
||||
|
||||
# Accessing all parameters
|
||||
my %params = $c->req->params->to_hash;
|
||||
|
||||
# Get number of parameters
|
||||
my $num_params = keys %params;
|
||||
|
||||
#Tag as Post or Get (ie. create new entry or edit existing one
|
||||
my $is_new_record = ($c->req->method() eq 'POST');
|
||||
|
||||
#Params are available in the hash "params" - copy to the prefix_data hash
|
||||
while (my ($key, $value) = each %{$c->req->params->to_hash}) {
|
||||
$nfs_data{$key} = $value;
|
||||
}
|
||||
|
||||
# the value of trt will tell you which panel has returned
|
||||
my $trt = $c->param('trt') || 'TABLE'; #Indicates where to go now
|
||||
|
||||
# Now add in the params from the selected row from the table
|
||||
|
||||
my %selectedrow;
|
||||
|
||||
if ($trt eq 'PARAMS'){
|
||||
#Validate form parameters for panel PARAMS
|
||||
%selectedrow = $c->get_selected_PARAMS($nfs_data{'Selected'},$is_new_record);
|
||||
}
|
||||
|
||||
if ($trt eq 'TABLE'){
|
||||
#Validate form parameters for panel TABLE
|
||||
%selectedrow = $c->get_selected_TABLE($nfs_data{'Selected'},$is_new_record);
|
||||
}
|
||||
|
||||
|
||||
#Copy in the selected row params to the prefix_data hash to pass to the panel
|
||||
while (my ($key, $value) = each %selectedrow){
|
||||
$nfs_data{$key} = $value;
|
||||
}
|
||||
# Where to go now
|
||||
$nfs_data{'trt'} = $trt;
|
||||
|
||||
# Data for panel
|
||||
$c->stash(
|
||||
title => $title,
|
||||
nfs_data => \%nfs_data
|
||||
);
|
||||
$c->render("nfsshare");
|
||||
}
|
||||
1;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
139
Targets/Nfsshare/_nfs_PARAMS.html.ep
Normal file
139
Targets/Nfsshare/_nfs_PARAMS.html.ep
Normal file
@@ -0,0 +1,139 @@
|
||||
%#
|
||||
%# Generated by SM2Gen version:0.8 Chameleon version:3.8.1 On Python:3.12.3 at 2024-09-13 18:38
|
||||
%#
|
||||
<div id="Nfsshare-PARAMS" class="partial Nfsshare-PARAMS">
|
||||
<script>
|
||||
window.onload = function() {
|
||||
SelectInput();
|
||||
};
|
||||
</script>
|
||||
<h2>
|
||||
%= l('nfs_Hello_PARAMS');
|
||||
</h2>
|
||||
% my $btn = l('nfs_APPLY');
|
||||
%= form_for "Nfsshared" => (method => 'POST') => begin
|
||||
|
||||
% param 'trt' => ${prefix}_data->{trt} unless param 'trt';
|
||||
%= hidden_field 'trt' => ${prefix}_data->{trt}
|
||||
%# Inputs etc in here.
|
||||
|
||||
<h2><%=l('nfs_Manage_NFS_Ibay_settings:')%></h2>
|
||||
|
||||
<p>
|
||||
%= l('nfs_These_parameters_will_be_effective')
|
||||
</p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Information_Bay_name')
|
||||
</span><span class=data>
|
||||
%= stash("IbayName")
|
||||
</span></p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Share_owner_Group')
|
||||
</span><span class=data>
|
||||
% my @ShareOwnerGrp_options = ['Write = admin, Read = group', 'Write = group, Read = everyone', 'Write = group, Read = group'];
|
||||
% param 'ShareOwnerGrp' => ${prefix}_data->{ShareOwnerGrp} unless param 'ShareOwnerGrp';
|
||||
%= select_field 'ShareOwnerGrp' => @ShareOwnerGrp_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Enable_the_NFS_Share')
|
||||
</span><span class=data>
|
||||
% my @EnableNFSshare_options = ['Disabled', 'Enabled'];
|
||||
% param 'EnableNFSshare' => ${prefix}_data->{EnableNFSshare} unless param 'EnableNFSshare';
|
||||
%= select_field 'EnableNFSshare' => @EnableNFSshare_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_EnableShare_on_local_network')
|
||||
</span><span class=data>
|
||||
% my @ShareOnLocalNetwork_options = ['Disabled', 'Enabled'];
|
||||
% param 'ShareOnLocalNetwork' => ${prefix}_data->{ShareOnLocalNetwork} unless param 'ShareOnLocalNetwork';
|
||||
%= select_field 'ShareOnLocalNetwork' => @ShareOnLocalNetwork_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p>
|
||||
%= l('nfs_For_writing_permissions,allowing_the_root')
|
||||
</p>
|
||||
|
||||
<span class=label>
|
||||
%=l('nfs_NFS_Client(s)_allowed')
|
||||
</span><span class=data>
|
||||
% param 'NFSClientsAllowed' => ${prefix}_data->{NFSClientsAllowed} unless param 'NFSClientsAllowed';
|
||||
%= text_area 'NFSClientsAllowed', cols=>40, rows=>5
|
||||
</span><br>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_File_system_permissions')
|
||||
</span><span class=data>
|
||||
% my @FileSystemPermissions_options = ['Read only', 'Read and Write'];
|
||||
% param 'FileSystemPermissions' => ${prefix}_data->{FileSystemPermissions} unless param 'FileSystemPermissions';
|
||||
%= select_field 'FileSystemPermissions' => @FileSystemPermissions_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Write_(a)synchronously')
|
||||
</span><span class=data>
|
||||
% my @WriteAsync_options = ['Synchronous', 'Asynchronous'];
|
||||
% param 'WriteAsync' => ${prefix}_data->{WriteAsync} unless param 'WriteAsync';
|
||||
%= select_field 'WriteAsync' => @WriteAsync_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Delays_the_disk_writing')
|
||||
</span><span class=data>
|
||||
% my @DelayWrite_options = ['Write delay', 'No write delay'];
|
||||
% param 'DelayWrite' => ${prefix}_data->{DelayWrite} unless param 'DelayWrite';
|
||||
%= select_field 'DelayWrite' => @DelayWrite_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Squash_the_power_of_users')
|
||||
</span><span class=data>
|
||||
% my @Squash_options = ['All users squash', 'No root squash', 'root squash'];
|
||||
% param 'Squash' => ${prefix}_data->{Squash} unless param 'Squash';
|
||||
%= select_field 'Squash' => @Squash_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Browse_the_parent_folders')
|
||||
</span><span class=data>
|
||||
% my @BrowseParents_options = ['Hide folder', 'Show folder'];
|
||||
% param 'BrowseParents' => ${prefix}_data->{BrowseParents} unless param 'BrowseParents';
|
||||
%= select_field 'BrowseParents' => @BrowseParents_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Requests_on_secure_ports')
|
||||
</span><span class=data>
|
||||
% my @SecurePorts_options = ['Secure', 'Insecure'];
|
||||
% param 'SecurePorts' => ${prefix}_data->{SecurePorts} unless param 'SecurePorts';
|
||||
%= select_field 'SecurePorts' => @SecurePorts_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p>
|
||||
%= l('nfs_Set_the_uid_and_gid')
|
||||
</p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Set_the_UID.')
|
||||
</span><span class=data>
|
||||
% param 'SetUID' => ${prefix}_data->{SetUID} unless param 'SetUID';
|
||||
%= text_field 'SetUID', size => '50', class => 'input' , pattern=>'.*' , placeholder=>'SetUID'
|
||||
<br></span></p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Set_the_GID.')
|
||||
</span><span class=data>
|
||||
% param 'SetGID' => ${prefix}_data->{SetGID} unless param 'SetGID';
|
||||
%= text_field 'SetGID', size => '50', class => 'input' , pattern=>'.*' , placeholder=>'SetGID'
|
||||
<br></span></p>
|
||||
|
||||
<span class='data'>
|
||||
%= submit_button l('nfs_Save'), class => 'action'
|
||||
</span>
|
||||
|
||||
%# Probably finally by a submit.
|
||||
%end
|
||||
</div>
|
47
Targets/Nfsshare/_nfs_TABLE.html.ep
Normal file
47
Targets/Nfsshare/_nfs_TABLE.html.ep
Normal file
@@ -0,0 +1,47 @@
|
||||
%#
|
||||
%# Generated by SM2Gen version:0.8 Chameleon version:3.8.1 On Python:3.12.3 at 2024-09-13 18:38
|
||||
%#
|
||||
<div id="Nfsshare-TABLE" class="partial Nfsshare-TABLE">
|
||||
<script>
|
||||
window.onload = function() {
|
||||
SelectInput();
|
||||
};
|
||||
</script>
|
||||
<h2>
|
||||
%= l('nfs_Hello_TABLE');
|
||||
</h2>
|
||||
% my $btn = l('nfs_APPLY');
|
||||
%= form_for "Nfsshared" => (method => 'POST') => begin
|
||||
|
||||
% param 'trt' => ${prefix}_data->{trt} unless param 'trt';
|
||||
%= hidden_field 'trt' => ${prefix}_data->{trt}
|
||||
%# Inputs etc in here.
|
||||
|
||||
<h2><%=l('nfs_Manage_NFS_Ibay_settings:')%></h2>
|
||||
|
||||
<br /><table class="sme-border TableSort sme-table">
|
||||
<thead>
|
||||
<tr table-head-row>
|
||||
<th class='sme-border table-head-col table-head-col-Name '><%=l('nfs_Name')%></th>
|
||||
<th class='sme-border table-head-col table-head-col-Description '><%=l('nfs_Description')%></th>
|
||||
<th class='sme-border table-head-col table-head-col-Nfs status '><%=l('Nfs_status')%></th>
|
||||
<th class='sme-border table-head-col table-head-col-Action '><%=l('nfs_Action')%></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
% my $control_data = $self->stash('ibays');
|
||||
% foreach my $row (@$control_data) {
|
||||
<tr class='table-row'>
|
||||
<td class='sme-border table-col table-col-Name'><%=$c->render_to_string(inline=>$row->{Name})%></td>
|
||||
<td class='sme-border table-col table-col-Description'><%=$c->render_to_string(inline=>$row->{Description})%></td>
|
||||
<td class='sme-border table-col table-col-flag'><%=$c->render_to_string(inline=>$row->{flag})%></td>
|
||||
<td class='sme-border table-col table-col-Modify'><%=$c->render_to_string(inline=>$row->{Modify})%></td>
|
||||
</tr>
|
||||
%}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
%# Probably finally by a submit.
|
||||
%end
|
||||
</div>
|
139
Targets/Nfsshare/nfs_PARAMS.html.ep
Normal file
139
Targets/Nfsshare/nfs_PARAMS.html.ep
Normal file
@@ -0,0 +1,139 @@
|
||||
%#
|
||||
%# Generated by SM2Gen version:0.8 Chameleon version:3.8.1 On Python:3.12.3 at 2024-09-14 05:33
|
||||
%#
|
||||
<div id="Nfsshare-PARAMS" class="partial Nfsshare-PARAMS">
|
||||
<script>
|
||||
window.onload = function() {
|
||||
SelectInput();
|
||||
};
|
||||
</script>
|
||||
<h2>
|
||||
%= l('nfs_Hello_PARAMS');
|
||||
</h2>
|
||||
% my $btn = l('nfs_APPLY');
|
||||
%= form_for "Nfsshared" => (method => 'POST') => begin
|
||||
|
||||
% param 'trt' => ${prefix}_data->{trt} unless param 'trt';
|
||||
%= hidden_field 'trt' => ${prefix}_data->{trt}
|
||||
%# Inputs etc in here.
|
||||
|
||||
<h2><%=l('nfs_Manage_NFS_Ibay_settings:')%></h2>
|
||||
|
||||
<p>
|
||||
%= l('nfs_These_parameters_will_be_effective')
|
||||
</p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Information_Bay_name')
|
||||
</span><span class=data>
|
||||
%= stash("IbayName")
|
||||
</span></p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Share_owner_Group')
|
||||
</span><span class=data>
|
||||
% my @ShareOwnerGrp_options = ['Write = admin, Read = group', 'Write = group, Read = everyone', 'Write = group, Read = group'];
|
||||
% param 'ShareOwnerGrp' => ${prefix}_data->{ShareOwnerGrp} unless param 'ShareOwnerGrp';
|
||||
%= select_field 'ShareOwnerGrp' => @ShareOwnerGrp_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Enable_the_NFS_Share')
|
||||
</span><span class=data>
|
||||
% my @EnableNFSshare_options = ['Disabled', 'Enabled'];
|
||||
% param 'EnableNFSshare' => ${prefix}_data->{EnableNFSshare} unless param 'EnableNFSshare';
|
||||
%= select_field 'EnableNFSshare' => @EnableNFSshare_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_EnableShare_on_local_network')
|
||||
</span><span class=data>
|
||||
% my @ShareOnLocalNetwork_options = ['Disabled', 'Enabled'];
|
||||
% param 'ShareOnLocalNetwork' => ${prefix}_data->{ShareOnLocalNetwork} unless param 'ShareOnLocalNetwork';
|
||||
%= select_field 'ShareOnLocalNetwork' => @ShareOnLocalNetwork_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p>
|
||||
%= l('nfs_For_writing_permissions,allowing_the_root')
|
||||
</p>
|
||||
|
||||
<span class=label>
|
||||
%=l('nfs_NFS_Client(s)_allowed')
|
||||
</span><span class=data>
|
||||
% param 'NFSClientsAllowed' => ${prefix}_data->{NFSClientsAllowed} unless param 'NFSClientsAllowed';
|
||||
%= text_area 'NFSClientsAllowed', cols=>40, rows=>5
|
||||
</span><br>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_File_system_permissions')
|
||||
</span><span class=data>
|
||||
% my @FileSystemPermissions_options = ['Read only', 'Read and Write'];
|
||||
% param 'FileSystemPermissions' => ${prefix}_data->{FileSystemPermissions} unless param 'FileSystemPermissions';
|
||||
%= select_field 'FileSystemPermissions' => @FileSystemPermissions_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Write_(a)synchronously')
|
||||
</span><span class=data>
|
||||
% my @WriteAsync_options = ['Synchronous', 'Asynchronous'];
|
||||
% param 'WriteAsync' => ${prefix}_data->{WriteAsync} unless param 'WriteAsync';
|
||||
%= select_field 'WriteAsync' => @WriteAsync_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Delays_the_disk_writing')
|
||||
</span><span class=data>
|
||||
% my @DelayWrite_options = ['Write delay', 'No write delay'];
|
||||
% param 'DelayWrite' => ${prefix}_data->{DelayWrite} unless param 'DelayWrite';
|
||||
%= select_field 'DelayWrite' => @DelayWrite_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Squash_the_power_of_users')
|
||||
</span><span class=data>
|
||||
% my @Squash_options = ['All users squash', 'No root squash', 'root squash'];
|
||||
% param 'Squash' => ${prefix}_data->{Squash} unless param 'Squash';
|
||||
%= select_field 'Squash' => @Squash_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Browse_the_parent_folders')
|
||||
</span><span class=data>
|
||||
% my @BrowseParents_options = ['Hide folder', 'Show folder'];
|
||||
% param 'BrowseParents' => ${prefix}_data->{BrowseParents} unless param 'BrowseParents';
|
||||
%= select_field 'BrowseParents' => @BrowseParents_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Requests_on_secure_ports')
|
||||
</span><span class=data>
|
||||
% my @SecurePorts_options = ['Secure', 'Insecure'];
|
||||
% param 'SecurePorts' => ${prefix}_data->{SecurePorts} unless param 'SecurePorts';
|
||||
%= select_field 'SecurePorts' => @SecurePorts_options, class => 'input'
|
||||
<br></span> </p>
|
||||
|
||||
<p>
|
||||
%= l('nfs_Set_the_uid_and_gid')
|
||||
</p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Set_the_UID.')
|
||||
</span><span class=data>
|
||||
% param 'SetUID' => ${prefix}_data->{SetUID} unless param 'SetUID';
|
||||
%= text_field 'SetUID', size => '50', class => 'input' , pattern=>'.*' , placeholder=>'SetUID'
|
||||
<br></span></p>
|
||||
|
||||
<p><span class=label>
|
||||
%=l('nfs_Set_the_GID.')
|
||||
</span><span class=data>
|
||||
% param 'SetGID' => ${prefix}_data->{SetGID} unless param 'SetGID';
|
||||
%= text_field 'SetGID', size => '50', class => 'input' , pattern=>'.*' , placeholder=>'SetGID'
|
||||
<br></span></p>
|
||||
|
||||
<span class='data'>
|
||||
%= submit_button l('nfs_Save'), class => 'action'
|
||||
</span>
|
||||
|
||||
%# Probably finally by a submit.
|
||||
%end
|
||||
</div>
|
47
Targets/Nfsshare/nfs_TABLE.html.ep
Normal file
47
Targets/Nfsshare/nfs_TABLE.html.ep
Normal file
@@ -0,0 +1,47 @@
|
||||
%#
|
||||
%# Generated by SM2Gen version:0.8 Chameleon version:3.8.1 On Python:3.12.3 at 2024-09-14 05:33
|
||||
%#
|
||||
<div id="Nfsshare-TABLE" class="partial Nfsshare-TABLE">
|
||||
<script>
|
||||
window.onload = function() {
|
||||
SelectInput();
|
||||
};
|
||||
</script>
|
||||
<h2>
|
||||
%= l('nfs_Hello_TABLE');
|
||||
</h2>
|
||||
% my $btn = l('nfs_APPLY');
|
||||
%= form_for "Nfsshared" => (method => 'POST') => begin
|
||||
|
||||
% param 'trt' => ${prefix}_data->{trt} unless param 'trt';
|
||||
%= hidden_field 'trt' => ${prefix}_data->{trt}
|
||||
%# Inputs etc in here.
|
||||
|
||||
<h2><%=l('nfs_Manage_NFS_Ibay_settings:')%></h2>
|
||||
|
||||
<br /><table class="sme-border TableSort sme-table">
|
||||
<thead>
|
||||
<tr table-head-row>
|
||||
<th class='sme-border table-head-col table-head-col-Name '><%=l('nfs_Name')%></th>
|
||||
<th class='sme-border table-head-col table-head-col-Description '><%=l('nfs_Description')%></th>
|
||||
<th class='sme-border table-head-col table-head-col-Nfs status '><%=l('Nfs_status')%></th>
|
||||
<th class='sme-border table-head-col table-head-col-Action '><%=l('nfs_Action')%></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
% my $control_data = $self->stash('ibays');
|
||||
% foreach my $row (@$control_data) {
|
||||
<tr class='table-row'>
|
||||
<td class='sme-border table-col table-col-Name'><%=$c->render_to_string(inline=>$row->{Name})%></td>
|
||||
<td class='sme-border table-col table-col-Description'><%=$c->render_to_string(inline=>$row->{Description})%></td>
|
||||
<td class='sme-border table-col table-col-flag'><%=$c->render_to_string(inline=>$row->{flag})%></td>
|
||||
<td class='sme-border table-col table-col-Modify'><%=$c->render_to_string(inline=>$row->{Modify})%></td>
|
||||
</tr>
|
||||
%}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
%# Probably finally by a submit.
|
||||
%end
|
||||
</div>
|
BIN
Targets/Nfsshare/nfsshare-lexfiles.zip
Normal file
BIN
Targets/Nfsshare/nfsshare-lexfiles.zip
Normal file
Binary file not shown.
54
Targets/Nfsshare/nfsshare.html.ep
Normal file
54
Targets/Nfsshare/nfsshare.html.ep
Normal file
@@ -0,0 +1,54 @@
|
||||
% layout 'default', title => "Sme server 2 - NFS data share", share_dir => './';
|
||||
%#
|
||||
%# Generated by SM2Gen version:0.8 Chameleon version:3.8.1 On Python:3.12.3 at 2024-09-14 05:33
|
||||
%#
|
||||
% content_for 'module' => begin
|
||||
<div id="module" class="module Nfsshare-panel">
|
||||
|
||||
% if ($config->{debug} == 1) {
|
||||
<p>
|
||||
%= dumper $c->current_route
|
||||
</p>
|
||||
% }
|
||||
|
||||
<h1><%=$title%></h1>
|
||||
|
||||
% if ( stash('modul') ) {
|
||||
%= $c->render_to_string(inline => stash('modul') );
|
||||
% }
|
||||
|
||||
%if (${prefix}_data->{first}) {
|
||||
<br><p>
|
||||
%=$c->render_to_string(inline =>$c->l(${prefix}_data->{first}))
|
||||
</p>
|
||||
|
||||
%} elsif (${prefix}_data->{success}) {
|
||||
<div class='sme-border'>
|
||||
<h2> Operation Status Report</h2><p>
|
||||
%= $c->l(${prefix}_data->{success});
|
||||
</p>
|
||||
</div>
|
||||
|
||||
%} elsif (${prefix}_data->{error}) {
|
||||
<div class='sme-error'>
|
||||
<h2> Operation Status Report - error</h2><p>
|
||||
%= $c->l(${prefix}_data->{error});
|
||||
</p>
|
||||
</div>
|
||||
%}
|
||||
|
||||
%#Routing to partials according to trt parameter.
|
||||
%#This ought to be cascading if/then/elsif, but is easier to just stack the if/then's rather like a case statement'
|
||||
|
||||
% if (${prefix}_data->{trt} eq "PARAMS") {
|
||||
%= include 'partials/_nfs_PARAMS'
|
||||
%}
|
||||
|
||||
% if (${prefix}_data->{trt} eq "TABLE") {
|
||||
%= include 'partials/_nfs_TABLE'
|
||||
%}
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
%end
|
30
Targets/Nfsshare/nfsshare_bg.lex
Normal file
30
Targets/Nfsshare/nfsshare_bg.lex
Normal file
@@ -0,0 +1,30 @@
|
||||
'nfs_NFS_data_share' => "NFS дял за данни",
|
||||
'nfs_NFS_Client(s)_allowed' => "Клиент(и) на NFS разрешени",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Управление на настройки за NFS Ibay:",
|
||||
'nfs_Squash_the_power_of_users' => "Разпределете силата на потребителите",
|
||||
'nfs_Set_the_UID.' => "Задайте UID.",
|
||||
'nfs_Enable_the_NFS_Share' => "Активирайте NFS споделянето",
|
||||
'nfs_Requests_on_secure_ports' => "Заявки на защитени портове",
|
||||
'nfs_Save' => "Запази",
|
||||
'nfs_Delays_the_disk_writing' => "Забавя записването на диска",
|
||||
'nfs_Set_the_GID.' => "Задайте GID.",
|
||||
'nfs_Name' => "Име",
|
||||
'nfs_These_parameters_will_be_effective' => "Ефектът на тези параметри ще бъде валиден само ако споделянето е активирано. Споделянето се намира в /home/e-smith/files/ibays//files",
|
||||
'nfs_Hello_TABLE' => "Здравей, ТАБЛИЦА",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "Действието на панела PARAMS беше успешно.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "Табличното действие на панела беше успешно.",
|
||||
'nfs_Action' => "Действие",
|
||||
'Nfs_status' => "Състояние",
|
||||
'nfs_Write_(a)synchronously' => "Пишете (а)синхронно",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "За разрешения за запис, разрешаването на root потребител и използването на незащитени портове, трябва да конфигурирате списък с по един IP на ред, който да бъде част от локалната мрежа(и).",
|
||||
'nfs_Browse_the_parent_folders' => "Преглед на родителските папки",
|
||||
'nfs_File_system_permissions' => "Разрешения на файловата система",
|
||||
'nfs_Hello_PARAMS' => "Здравейте PARAMS",
|
||||
'nfs_EnableShare_on_local_network' => "Активиране на споделяне в локалната мрежа",
|
||||
'nfs_Set_the_uid_and_gid' => "Задайте uid и gid, ако искате всички заявки да изглеждат като от един потребител или една група. В противен случай оставете празно.",
|
||||
'nfs_APPLY' => "Приложи",
|
||||
'nfs_Description' => "Описание",
|
||||
'nfs_Information_Bay_name' => "Име на Информационния Бей",
|
||||
'nfs_Share_owner_Group' => "```
|
||||
Сподели собственик Група
|
||||
```",
|
28
Targets/Nfsshare/nfsshare_de.lex
Normal file
28
Targets/Nfsshare/nfsshare_de.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Speichern",
|
||||
'nfs_Hello_TABLE' => "~~~Hallo TABELLE~~~",
|
||||
'nfs_Hello_PARAMS' => "Hallo PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Anfragen auf sicheren Ports",
|
||||
'nfs_File_system_permissions' => "Dateisystem-Berechtigungen",
|
||||
'nfs_NFS_Client(s)_allowed' => "~~~NFS-Clients erlaubt~~~",
|
||||
'nfs_NFS_data_share' => "NFS-Datenfreigabe",
|
||||
'nfs_APPLY' => "Anwenden",
|
||||
'nfs_Enable_the_NFS_Share' => "~~~NFS-Freigabe aktivieren~~~",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Für Schreibrechte, Zulassen des Root-Benutzers und Verwendung unsicherer Ports müssen Sie eine Liste mit einer IP pro Zeile konfigurieren, die Teil der lokalen Netzwerke ist.",
|
||||
'nfs_Set_the_uid_and_gid' => "~~~Legen Sie die uid und gid fest, wenn alle Anfragen von einem Benutzer oder einer Gruppe stammen sollen. Andernfalls leer lassen~~~",
|
||||
'nfs_Set_the_GID.' => "GID festlegen",
|
||||
'nfs_TABLE_panel_action_was_successful' => "TABELLE Panelaktion war erfolgreich",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "~~~PARAMETER-Panelaktion war erfolgreich~~~",
|
||||
'nfs_Information_Bay_name' => "~~~Informationsbucht-Name~~~",
|
||||
'nfs_Delays_the_disk_writing' => "~~~Verzögert das Schreiben auf die Festplatte~~~",
|
||||
'nfs_Share_owner_Group' => "~~~Besitzergruppen freigeben~~~",
|
||||
'nfs_Description' => "Beschreibung",
|
||||
'nfs_Write_(a)synchronously' => "Schreiben (a)synchron",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "~~~NFS Ibay-Einstellungen verwalten:~~~",
|
||||
'nfs_Name' => "Name",
|
||||
'nfs_Set_the_UID.' => "UID festlegen.",
|
||||
'nfs_Squash_the_power_of_users' => "Die Benutzerrechte einschränken",
|
||||
'nfs_EnableShare_on_local_network' => "~~~Freigabe im lokalen Netzwerk aktivieren~~~",
|
||||
'nfs_These_parameters_will_be_effective' => "Diese Parameter sind nur wirksam, wenn die Freigabe aktiviert ist. Die Freigabe befindet sich in /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Durchsuchen Sie die übergeordneten Ordner",
|
||||
'nfs_Action' => "Aktion",
|
28
Targets/Nfsshare/nfsshare_dk.lex
Normal file
28
Targets/Nfsshare/nfsshare_dk.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_APPLY' => "Anvend",
|
||||
'nfs_NFS_Client(s)_allowed' => "Tilladte NFS-klient(er)",
|
||||
'nfs_TABLE_panel_action_was_successful' => "Handlingspanelet for TABEL var vellykket",
|
||||
'nfs_Share_owner_Group' => "Del ejergruppe",
|
||||
'nfs_Information_Bay_name' => "Information Bay navn",
|
||||
'nfs_Write_(a)synchronously' => "Skriv (a)synkront",
|
||||
'nfs_Squash_the_power_of_users' => "Knus brugernes magt",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "For at skrive tilladelser, Tillade root-brugeren og bruge usikre porte, Du skal konfigurere en liste med én IP pr. linje, Som er en del af de lokale netværk.",
|
||||
'nfs_Hello_PARAMS' => "~~~Hej PARAMS~~~",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "PARAMS panelet var vellykket",
|
||||
'nfs_Enable_the_NFS_Share' => "Aktiver NFS-deling",
|
||||
'nfs_NFS_data_share' => "NFS-deling af data",
|
||||
'nfs_Set_the_UID.' => "Indstil UID.",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Administrer NFS Ibay indstillinger:",
|
||||
'nfs_Browse_the_parent_folders' => "Gennemse de overordnede mapper",
|
||||
'nfs_These_parameters_will_be_effective' => "Disse parametre vil kun træde i kraft, hvis delingen er aktiveret. Delingen er i /home/e-smith/files/ibays//files",
|
||||
'nfs_Hello_TABLE' => "~~~Hej TABEL~~~",
|
||||
'nfs_Description' => "Beskrivelse",
|
||||
'nfs_Set_the_uid_and_gid' => "Indstil uid og gid, hvis du ønsker, at alle forespørgsler skal se ud til at være fra en bruger eller en gruppe. Ellers lad det være tomt.",
|
||||
'nfs_EnableShare_on_local_network' => "Aktiver deling på lokalt netværk",
|
||||
'nfs_Set_the_GID.' => "Indstil GID.",
|
||||
'nfs_Save' => "Gem",
|
||||
'nfs_Requests_on_secure_ports' => "Anmodninger på sikre porte",
|
||||
'nfs_Action' => "Handling",
|
||||
'nfs_Delays_the_disk_writing' => "Forsinker disk skrivning",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_Name' => "Navn",
|
||||
'nfs_File_system_permissions' => "Filsystem tilladelser",
|
30
Targets/Nfsshare/nfsshare_el.lex
Normal file
30
Targets/Nfsshare/nfsshare_el.lex
Normal file
@@ -0,0 +1,30 @@
|
||||
'nfs_Save' => "Αποθήκευση",
|
||||
'nfs_Hello_TABLE' => "~~~Γειά σου ΠΙΝΑΚΑΣ~~~",
|
||||
'nfs_Hello_PARAMS' => "Γειά σας PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Αιτήματα σε ασφαλείς θύρες",
|
||||
'nfs_File_system_permissions' => "Άδειες συστήματος αρχείων",
|
||||
'nfs_NFS_Client(s)_allowed' => "Επιτρεπόμενοι NFS πελάτες",
|
||||
'nfs_NFS_data_share' => "Κοινή χρήση δεδομένων NFS",
|
||||
'nfs_APPLY' => "Εφαρμογή",
|
||||
'nfs_Enable_the_NFS_Share' => "Ενεργοποιήστε την κοινή χρήση NFS",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Για δικαιώματα εγγραφής, Επιτρέποντας τον χρήστη root και χρησιμοποιώντας μη ασφαλείς θύρες, Πρέπει να διαμορφώσετε μια λίστα με μία IP ανά γραμμή, Όντας μέρος των τοπικών δικτύων.",
|
||||
'nfs_Set_the_uid_and_gid' => "Ορίστε το uid και gid αν θέλετε όλα τα αιτήματα να φαίνονται από έναν χρήστη ή μία ομάδα, διαφορετικά αφήστε το κενό",
|
||||
'nfs_Set_the_GID.' => "Ορίστε το GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "Η ενέργεια του πίνακα ΤΑΒΛΑ ήταν επιτυχής",
|
||||
'Nfs_status' => "Κατάσταση",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "Η ενέργεια του πίνακα PARAMS ήταν επιτυχής",
|
||||
'nfs_Information_Bay_name' => "Όνομα Κόλπου Πληροφοριών",
|
||||
'nfs_Delays_the_disk_writing' => "Καθυστερεί την εγγραφή στο δίσκο",
|
||||
'nfs_Share_owner_Group' => "Κοινή χρήση ομάδας ιδιοκτήτη",
|
||||
'nfs_Description' => "Περιγραφή",
|
||||
'nfs_Write_(a)synchronously' => "Γράψτε (α)σύγχρονα",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Διαχείριση ρυθμίσεων NFS Ibay:",
|
||||
'nfs_Name' => "Όνομα",
|
||||
'nfs_Set_the_UID.' => "Ορίστε το UID.",
|
||||
'nfs_Squash_the_power_of_users' => "~~~
|
||||
Περιορίστε τα δικαιώματα των χρηστών
|
||||
~~~",
|
||||
'nfs_EnableShare_on_local_network' => "Ενεργοποίηση κοινής χρήσης στο τοπικό δίκτυο",
|
||||
'nfs_These_parameters_will_be_effective' => "~~~Αυτές οι παράμετροι θα είναι αποτελεσματικές μόνο αν είναι ενεργοποιημένη η κοινή χρήση. Η κοινή χρήση βρίσκεται στο /home/e-smith/files/ibays//files~~~",
|
||||
'nfs_Browse_the_parent_folders' => "Περιήγηση στους γονικούς φακέλους",
|
||||
'nfs_Action' => "Ενέργεια",
|
28
Targets/Nfsshare/nfsshare_en.lex
Normal file
28
Targets/Nfsshare/nfsshare_en.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Manage_NFS_Ibay_settings:' => 'Manage NFS Ibay settings:',
|
||||
'nfs_Set_the_uid_and_gid' => 'Set the uid and gid if you want all requests appear to be from one user or one group, Otherwise leave blank',
|
||||
'nfs_Set_the_GID.' => 'Set the GID. ',
|
||||
'nfs_File_system_permissions' => 'File system permissions',
|
||||
'nfs_Action' => 'Action',
|
||||
'nfs_Hello_PARAMS' => 'Hello PARAMS',
|
||||
'nfs_Save' => 'Save',
|
||||
'nfs_Squash_the_power_of_users' => 'Squash the power of users',
|
||||
'nfs_Set_the_UID.' => 'Set the UID. ',
|
||||
'nfs_PARAMS_panel_action_was_successful' => 'PARAMS panel action was successful',
|
||||
'nfs_TABLE_panel_action_was_successful' => 'TABLE panel action was successful',
|
||||
'nfs_APPLY' => 'Apply',
|
||||
'nfs_Enable_the_NFS_Share' => 'Enable the NFS Share',
|
||||
'nfs_Name' => 'Name',
|
||||
'nfs_EnableShare_on_local_network' => 'Enableshare on local network',
|
||||
'nfs_These_parameters_will_be_effective' => 'These parameters will be effective only if the share is enabled. The share is in /home/e-smith/files/ibays//files',
|
||||
'nfs_Share_owner_Group' => 'Share owner Group',
|
||||
'nfs_Browse_the_parent_folders' => 'Browse the parent folders',
|
||||
'nfs_NFS_Client(s)_allowed' => 'NFS Client(s) allowed',
|
||||
'Nfs_status' => 'Status',
|
||||
'nfs_Information_Bay_name' => 'Information Bay name',
|
||||
'nfs_Requests_on_secure_ports' => 'Requests on secure ports',
|
||||
'nfs_NFS_data_share' => 'NFS data share',
|
||||
'nfs_Delays_the_disk_writing' => 'Delays the disk writing',
|
||||
'nfs_Hello_TABLE' => 'Hello TABLE',
|
||||
'nfs_For_writing_permissions,allowing_the_root' => 'For writing permissions, Allowing the root user and using insecure ports, You must configure a list of one IP per line, Being part of the local network(s). ',
|
||||
'nfs_Description' => 'Description',
|
||||
'nfs_Write_(a)synchronously' => 'Write (a)synchronously',
|
94
Targets/Nfsshare/nfsshare_en.po
Normal file
94
Targets/Nfsshare/nfsshare_en.po
Normal file
@@ -0,0 +1,94 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "nfs_APPLY"
|
||||
msgstr "Apply',"
|
||||
|
||||
msgid "nfs_NFS_Client(s)_allowed"
|
||||
msgstr "NFS Client(s) allowed',"
|
||||
|
||||
msgid "nfs_TABLE_panel_action_was_successful"
|
||||
msgstr "TABLE panel action was successful',"
|
||||
|
||||
msgid "nfs_Share_owner_Group"
|
||||
msgstr "Share owner Group',"
|
||||
|
||||
msgid "nfs_Information_Bay_name"
|
||||
msgstr "Information Bay name',"
|
||||
|
||||
msgid "nfs_Write_(a)synchronously"
|
||||
msgstr "Write (a)synchronously',"
|
||||
|
||||
msgid "nfs_Squash_the_power_of_users"
|
||||
msgstr "Squash the power of users',"
|
||||
|
||||
msgid "nfs_For_writing_permissions,allowing_the_root"
|
||||
msgstr ""
|
||||
"For writing permissions, Allowing the root user and using insecure ports, "
|
||||
"You must configure a list of one IP per line, Being part of the local "
|
||||
"network(s). ',"
|
||||
|
||||
msgid "nfs_Hello_PARAMS"
|
||||
msgstr "Hello PARAMS',"
|
||||
|
||||
msgid "nfs_PARAMS_panel_action_was_successful"
|
||||
msgstr "PARAMS panel action was successful',"
|
||||
|
||||
msgid "nfs_Enable_the_NFS_Share"
|
||||
msgstr "Enable the NFS Share',"
|
||||
|
||||
msgid "nfs_NFS_data_share"
|
||||
msgstr "NFS data share',"
|
||||
|
||||
msgid "nfs_Set_the_UID."
|
||||
msgstr "Set the UID. ',"
|
||||
|
||||
msgid "nfs_Manage_NFS_Ibay_settings:"
|
||||
msgstr "Manage NFS Ibay settings:',"
|
||||
|
||||
msgid "nfs_Browse_the_parent_folders"
|
||||
msgstr "Browse the parent folders',"
|
||||
|
||||
msgid "nfs_These_parameters_will_be_effective"
|
||||
msgstr ""
|
||||
"These parameters will be effective only if the share is enabled. The share "
|
||||
"is in /home/e-smith/files/ibays//files',"
|
||||
|
||||
msgid "nfs_Hello_TABLE"
|
||||
msgstr "Hello TABLE',"
|
||||
|
||||
msgid "nfs_Description"
|
||||
msgstr "Description',"
|
||||
|
||||
msgid "nfs_Set_the_uid_and_gid"
|
||||
msgstr ""
|
||||
"Set the uid and gid if you want all requests appear to be from one user or "
|
||||
"one group, Otherwise leave blank',"
|
||||
|
||||
msgid "nfs_EnableShare_on_local_network"
|
||||
msgstr "Enableshare on local network',"
|
||||
|
||||
msgid "nfs_Set_the_GID."
|
||||
msgstr "Set the GID. ',"
|
||||
|
||||
msgid "nfs_Save"
|
||||
msgstr "Save',"
|
||||
|
||||
msgid "nfs_Requests_on_secure_ports"
|
||||
msgstr "Requests on secure ports',"
|
||||
|
||||
msgid "nfs_Action"
|
||||
msgstr "Action',"
|
||||
|
||||
msgid "nfs_Delays_the_disk_writing"
|
||||
msgstr "Delays the disk writing',"
|
||||
|
||||
msgid "Nfs_status"
|
||||
msgstr "Status',"
|
||||
|
||||
msgid "nfs_Name"
|
||||
msgstr "Name',"
|
||||
|
||||
msgid "nfs_File_system_permissions"
|
||||
msgstr "File system permissions',"
|
28
Targets/Nfsshare/nfsshare_es.lex
Normal file
28
Targets/Nfsshare/nfsshare_es.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Guardar",
|
||||
'nfs_Hello_TABLE' => "~~~Hola MESA~~~",
|
||||
'nfs_Hello_PARAMS' => "~~~Hola PARAMS~~~",
|
||||
'nfs_Requests_on_secure_ports' => "~~Solicitudes en puertos seguros~~",
|
||||
'nfs_File_system_permissions' => "Permisos del sistema de archivos",
|
||||
'nfs_NFS_Client(s)_allowed' => "Clientes NFS permitidos",
|
||||
'nfs_NFS_data_share' => "Compartición de datos NFS",
|
||||
'nfs_APPLY' => "Aplicar",
|
||||
'nfs_Enable_the_NFS_Share' => "~~~Habilitar el recurso compartido NFS~~~",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Para permisos de escritura, permitiendo al usuario root y usando puertos inseguros, debe configurar una lista de una IP por línea, siendo parte de la(s) red(es) local(es).",
|
||||
'nfs_Set_the_uid_and_gid' => "Establezca el uid y gid si desea que todas las solicitudes parezcan ser de un solo usuario o de un solo grupo, de lo contrario, deje en blanco",
|
||||
'nfs_Set_the_GID.' => "Establecer el GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "Acción de panel de TABLA fue exitosa",
|
||||
'Nfs_status' => "Estado",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "La acción del panel de PARAMS fue exitosa",
|
||||
'nfs_Information_Bay_name' => "Nombre de la Bahía de Información",
|
||||
'nfs_Delays_the_disk_writing' => "Retrasa la escritura en disco",
|
||||
'nfs_Share_owner_Group' => "Compartir grupo de propietarios",
|
||||
'nfs_Description' => "Descripción",
|
||||
'nfs_Write_(a)synchronously' => "Escribir (a)síncronamente",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Administrar configuraciones de NFS Ibay:",
|
||||
'nfs_Name' => "Nombre",
|
||||
'nfs_Set_the_UID.' => "Establecer el UID.",
|
||||
'nfs_Squash_the_power_of_users' => "Aplastar el poder de los usuarios",
|
||||
'nfs_EnableShare_on_local_network' => "Habilitar compartir en la red local",
|
||||
'nfs_These_parameters_will_be_effective' => "Estos parámetros serán efectivos solo si el recurso compartido está habilitado. El recurso compartido está en /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Explorar las carpetas principales",
|
||||
'nfs_Action' => "Acción",
|
95
Targets/Nfsshare/nfsshare_es.po
Normal file
95
Targets/Nfsshare/nfsshare_es.po
Normal file
@@ -0,0 +1,95 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
|
||||
msgid "nfs_Save"
|
||||
msgstr "\"Guardar\","
|
||||
|
||||
msgid "nfs_Hello_TABLE"
|
||||
msgstr "\"~~~Hola MESA~~~\","
|
||||
|
||||
msgid "nfs_Hello_PARAMS"
|
||||
msgstr "\"~~~Hola PARAMS~~~\","
|
||||
|
||||
msgid "nfs_Requests_on_secure_ports"
|
||||
msgstr "\"~~Solicitudes en puertos seguros~~\","
|
||||
|
||||
msgid "nfs_File_system_permissions"
|
||||
msgstr "\"Permisos del sistema de archivos\","
|
||||
|
||||
msgid "nfs_NFS_Client(s)_allowed"
|
||||
msgstr "\"Clientes NFS permitidos\","
|
||||
|
||||
msgid "nfs_NFS_data_share"
|
||||
msgstr "\"Compartición de datos NFS\","
|
||||
|
||||
msgid "nfs_APPLY"
|
||||
msgstr "\"Aplicar\","
|
||||
|
||||
msgid "nfs_Enable_the_NFS_Share"
|
||||
msgstr "\"~~~Habilitar el recurso compartido NFS~~~\","
|
||||
|
||||
msgid "nfs_For_writing_permissions,allowing_the_root"
|
||||
msgstr ""
|
||||
"\"Para permisos de escritura, permitiendo al usuario root y usando puertos "
|
||||
"inseguros, debe configurar una lista de una IP por línea, siendo parte de "
|
||||
"la(s) red(es) local(es).\","
|
||||
|
||||
msgid "nfs_Set_the_uid_and_gid"
|
||||
msgstr ""
|
||||
"\"Establezca el uid y gid si desea que todas las solicitudes parezcan ser de"
|
||||
" un solo usuario o de un solo grupo, de lo contrario, deje en blanco\","
|
||||
|
||||
msgid "nfs_Set_the_GID."
|
||||
msgstr "\"Establecer el GID.\","
|
||||
|
||||
msgid "nfs_TABLE_panel_action_was_successful"
|
||||
msgstr "\"Acción de panel de TABLA fue exitosa\","
|
||||
|
||||
msgid "Nfs_status"
|
||||
msgstr "\"Estado\","
|
||||
|
||||
msgid "nfs_PARAMS_panel_action_was_successful"
|
||||
msgstr "\"La acción del panel de PARAMS fue exitosa\","
|
||||
|
||||
msgid "nfs_Information_Bay_name"
|
||||
msgstr "\"Nombre de la Bahía de Información\","
|
||||
|
||||
msgid "nfs_Delays_the_disk_writing"
|
||||
msgstr "\"Retrasa la escritura en disco\","
|
||||
|
||||
msgid "nfs_Share_owner_Group"
|
||||
msgstr "\"Compartir grupo de propietarios\","
|
||||
|
||||
msgid "nfs_Description"
|
||||
msgstr "\"Descripción\","
|
||||
|
||||
msgid "nfs_Write_(a)synchronously"
|
||||
msgstr "\"Escribir (a)síncronamente\","
|
||||
|
||||
msgid "nfs_Manage_NFS_Ibay_settings:"
|
||||
msgstr "\"Administrar configuraciones de NFS Ibay:\","
|
||||
|
||||
msgid "nfs_Name"
|
||||
msgstr "\"Nombre\","
|
||||
|
||||
msgid "nfs_Set_the_UID."
|
||||
msgstr "\"Establecer el UID.\","
|
||||
|
||||
msgid "nfs_Squash_the_power_of_users"
|
||||
msgstr "\"Aplastar el poder de los usuarios\","
|
||||
|
||||
msgid "nfs_EnableShare_on_local_network"
|
||||
msgstr "\"Habilitar compartir en la red local\","
|
||||
|
||||
msgid "nfs_These_parameters_will_be_effective"
|
||||
msgstr ""
|
||||
"\"Estos parámetros serán efectivos solo si el recurso compartido está "
|
||||
"habilitado. El recurso compartido está en "
|
||||
"/home/e-smith/files/ibays//files\","
|
||||
|
||||
msgid "nfs_Browse_the_parent_folders"
|
||||
msgstr "\"Explorar las carpetas principales\","
|
||||
|
||||
msgid "nfs_Action"
|
||||
msgstr "\"Acción\","
|
28
Targets/Nfsshare/nfsshare_et.lex
Normal file
28
Targets/Nfsshare/nfsshare_et.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Salvesta",
|
||||
'nfs_Hello_TABLE' => "~~~Tere, TABEL~~~",
|
||||
'nfs_Hello_PARAMS' => "Tere PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Päringud turvatud portidele",
|
||||
'nfs_File_system_permissions' => "Failisüsteemi õigused",
|
||||
'nfs_NFS_Client(s)_allowed' => "NFS Kliendid lubatud",
|
||||
'nfs_NFS_data_share' => "NFS andmejagamine",
|
||||
'nfs_APPLY' => "~~~Rakenda~~~",
|
||||
'nfs_Enable_the_NFS_Share' => "~~Luba NFS-jagamine~~",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Kirjutamisõiguste jaoks, root-kasutaja lubamine ja ebaturvaliste portide kasutamine, peate seadistama nimekirja, kus iga IP on eraldi real, olles osa kohalikust võrgust/võrkudest.",
|
||||
'nfs_Set_the_uid_and_gid' => "Määrake uid ja gid, kui soovite, et kõik päringud näiksid pärinevat ühelt kasutajalt või ühest grupist. Vastasel juhul jätke tühjaks.",
|
||||
'nfs_Set_the_GID.' => "Määra GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "TABELI paneeli toiming õnnestus",
|
||||
'Nfs_status' => "Olek",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "PARAMS paneeli tegevus oli edukas",
|
||||
'nfs_Information_Bay_name' => "Informatsiooni jaotuse nimi",
|
||||
'nfs_Delays_the_disk_writing' => "Viivitab ketta kirjutamisega",
|
||||
'nfs_Share_owner_Group' => "Jaga omaniku rühma",
|
||||
'nfs_Description' => "Kirjeldus",
|
||||
'nfs_Write_(a)synchronously' => "Kirjuta (a)sünkroonselt",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Halda NFS Ibay seadeid:",
|
||||
'nfs_Name' => "Nimi",
|
||||
'nfs_Set_the_UID.' => "Määra UID.",
|
||||
'nfs_Squash_the_power_of_users' => "Kasutajate volituste eemaldamine",
|
||||
'nfs_EnableShare_on_local_network' => "Jaga kohaliku võrgus",
|
||||
'nfs_These_parameters_will_be_effective' => "Need parameetrid rakenduvad ainult siis, kui jagamine on lubatud. Jagamine asub /home/e-smith/files/ibays//files.",
|
||||
'nfs_Browse_the_parent_folders' => "Sirvi ülemkaustu",
|
||||
'nfs_Action' => "Toiming",
|
28
Targets/Nfsshare/nfsshare_fr.lex
Normal file
28
Targets/Nfsshare/nfsshare_fr.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Sauvegarder",
|
||||
'nfs_Hello_TABLE' => "Bonjour TABLE",
|
||||
'nfs_Hello_PARAMS' => "Bonjour PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Requêtes sur ports sécurisés",
|
||||
'nfs_File_system_permissions' => "Autorisations du système de fichiers",
|
||||
'nfs_NFS_Client(s)_allowed' => "Clients NFS autorisés",
|
||||
'nfs_NFS_data_share' => "Partage de données NFS",
|
||||
'nfs_APPLY' => "Appliquer",
|
||||
'nfs_Enable_the_NFS_Share' => "~~~Activer le partage NFS~~~",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Pour les autorisations d\'écriture, permettre à l\'utilisateur root et utiliser des ports non sécurisés, vous devez configurer une liste d\'une IP par ligne, faisant partie du ou des réseaux locaux.",
|
||||
'nfs_Set_the_uid_and_gid' => "Définissez l\'uid et le gid si vous souhaitez que toutes les requêtes semblent provenir d\'un seul utilisateur ou d\'un seul groupe. Sinon, laissez vide.",
|
||||
'nfs_Set_the_GID.' => "Définir le GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "Action du panneau TABLE réussie",
|
||||
'Nfs_status' => "Statut",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "Le panneau PARAMS a été mis à jour avec succès",
|
||||
'nfs_Information_Bay_name' => "Nom de la baie d\'information",
|
||||
'nfs_Delays_the_disk_writing' => "~~~Retarde l\'écriture du disque~~~",
|
||||
'nfs_Share_owner_Group' => "Partager le groupe propriétaire",
|
||||
'nfs_Description' => "Description",
|
||||
'nfs_Write_(a)synchronously' => "~~~Écrire (a)synchrone~~~",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "~~~Gérer les paramètres NFS Ibay:~~~",
|
||||
'nfs_Name' => "Nom",
|
||||
'nfs_Set_the_UID.' => "Définir l\'UID.",
|
||||
'nfs_Squash_the_power_of_users' => "Réduire les privilèges des utilisateurs",
|
||||
'nfs_EnableShare_on_local_network' => "Activer le partage sur le réseau local",
|
||||
'nfs_These_parameters_will_be_effective' => "Ces paramètres seront effectifs uniquement si le partage est activé. Le partage se trouve dans /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Parcourir les dossiers parents",
|
||||
'nfs_Action' => "Action",
|
28
Targets/Nfsshare/nfsshare_hu.lex
Normal file
28
Targets/Nfsshare/nfsshare_hu.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Mentés",
|
||||
'nfs_Hello_TABLE' => "~~~Helló TÁBLA~~~",
|
||||
'nfs_Hello_PARAMS' => "~~~Helló PARAMS~~~",
|
||||
'nfs_Requests_on_secure_ports' => "Lekérdezések biztonságos portokon",
|
||||
'nfs_File_system_permissions' => "Fájlrendszer jogosultságok",
|
||||
'nfs_NFS_Client(s)_allowed' => "Engedélyezett NFS kliens(ek)",
|
||||
'nfs_NFS_data_share' => "NFS adatmegosztás",
|
||||
'nfs_APPLY' => "Alkalmazás",
|
||||
'nfs_Enable_the_NFS_Share' => "NFS-megosztás engedélyezése",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Írási engedélyekhez, a root felhasználó engedélyezése és nem biztonságos portok használata esetén konfigurálnia kell egy listát, amelyben egy IP cím egy sorban szerepel, és amely a helyi hálózat(ok) része.",
|
||||
'nfs_Set_the_uid_and_gid' => "Állítsa be a uid és gid értékeket, ha azt szeretné, hogy minden kérés egy felhasználótól vagy egy csoporttól származzon. Ellenkező esetben hagyja üresen.",
|
||||
'nfs_Set_the_GID.' => "Állítsa be a GID-t.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "A TÁBLA panel művelet sikeres volt",
|
||||
'Nfs_status' => "Állapot",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "~~~PARAMS panel akció sikeres volt~~~",
|
||||
'nfs_Information_Bay_name' => "Információs öböl neve",
|
||||
'nfs_Delays_the_disk_writing' => "Késlelteti a lemezírást",
|
||||
'nfs_Share_owner_Group' => "Oszd meg a tulajdonosi csoportot",
|
||||
'nfs_Description' => "Leírás",
|
||||
'nfs_Write_(a)synchronously' => "Írás (a)szinkronban",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "~~NFS Ibay beállítások kezelése~~",
|
||||
'nfs_Name' => "Név",
|
||||
'nfs_Set_the_UID.' => "Állítsa be az UID-t.",
|
||||
'nfs_Squash_the_power_of_users' => "Felhasználók hatalmának visszavonása",
|
||||
'nfs_EnableShare_on_local_network' => "Megosztás engedélyezése helyi hálózaton",
|
||||
'nfs_These_parameters_will_be_effective' => "Ezek a beállítások csak akkor lépnek érvénybe, ha a megosztás engedélyezve van. A megosztás a /home/e-smith/files/ibays//files mappában található.",
|
||||
'nfs_Browse_the_parent_folders' => "Tallózás a szülőmappák között",
|
||||
'nfs_Action' => "Művelet",
|
28
Targets/Nfsshare/nfsshare_id.lex
Normal file
28
Targets/Nfsshare/nfsshare_id.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Simpan",
|
||||
'nfs_Hello_TABLE' => "Halo TABEL",
|
||||
'nfs_Hello_PARAMS' => "Halo PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Permintaan pada port aman",
|
||||
'nfs_File_system_permissions' => "Izin sistem berkas",
|
||||
'nfs_NFS_Client(s)_allowed' => "Klien NFS diizinkan",
|
||||
'nfs_NFS_data_share' => "Berbagi data NFS",
|
||||
'nfs_APPLY' => "Terapkan",
|
||||
'nfs_Enable_the_NFS_Share' => "Aktifkan NFS Share",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Untuk izin menulis, Izinkan pengguna root dan gunakan port yang tidak aman, Anda harus mengonfigurasi daftar satu IP per baris, Menjadi bagian dari jaringan lokal.",
|
||||
'nfs_Set_the_uid_and_gid' => "Tetapkan uid dan gid jika Anda ingin semua permintaan terlihat dari satu pengguna atau satu grup, Jika tidak biarkan kosong",
|
||||
'nfs_Set_the_GID.' => "Tetapkan GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "~~PANEL tabel berhasil dilakukan~~~",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "Panel PARAMS berhasil dijalankan",
|
||||
'nfs_Information_Bay_name' => "Nama Pusat Informasi",
|
||||
'nfs_Delays_the_disk_writing' => "Menunda penulisan disk",
|
||||
'nfs_Share_owner_Group' => "Berbagi Grup Pemilik",
|
||||
'nfs_Description' => "Deskripsi",
|
||||
'nfs_Write_(a)synchronously' => "Tulis (a)sinkronisasi",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Kelola pengaturan NFS Ibay:",
|
||||
'nfs_Name' => "Nama",
|
||||
'nfs_Set_the_UID.' => "Tetapkan UID.",
|
||||
'nfs_Squash_the_power_of_users' => "~~~Kurangi hak akses pengguna~~~",
|
||||
'nfs_EnableShare_on_local_network' => "Mengaktifkan berbagi di jaringan lokal",
|
||||
'nfs_These_parameters_will_be_effective' => "Parameter ini akan efektif hanya jika share diaktifkan. Share berada di /home/e-smith/files/ibays/files",
|
||||
'nfs_Browse_the_parent_folders' => "Menjelajahi folder induk",
|
||||
'nfs_Action' => "Aksi",
|
28
Targets/Nfsshare/nfsshare_il.lex
Normal file
28
Targets/Nfsshare/nfsshare_il.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_APPLY' => "החל",
|
||||
'nfs_NFS_Client(s)_allowed' => "לקוחות NFS מורשים",
|
||||
'nfs_TABLE_panel_action_was_successful' => "הפעולה של לוח TABLE הצליחה",
|
||||
'nfs_Share_owner_Group' => "שתף קבוצת בעלי מניות",
|
||||
'nfs_Information_Bay_name' => "שם מפרץ המידע",
|
||||
'nfs_Write_(a)synchronously' => "~~~כתוב (באופן) סינכרוני/אסינכרוני~~~",
|
||||
'nfs_Squash_the_power_of_users' => "~~~להמעיט את כוח המשתמשים~~~",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "כדי לקבל הרשאות כתיבה, לאפשר את משתמש השורש ולהשתמש ביציאות לא מאובטחות, יש להגדיר רשימה של כתובת IP אחת בכל שורה, כחלק מהרשת המקומית.",
|
||||
'nfs_Hello_PARAMS' => "שלום PARAMS",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "פאנל הדֶפָאוֹת ביצע את הפעולה בהצלחה",
|
||||
'nfs_Enable_the_NFS_Share' => "אפשר שיתוף NFS",
|
||||
'nfs_NFS_data_share' => "שיתוף נתונים NFS",
|
||||
'nfs_Set_the_UID.' => "הגדר את ה-UID.",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "נהל הגדרות NFS Ibay:",
|
||||
'nfs_Browse_the_parent_folders' => "עיין בתיקיות האב",
|
||||
'nfs_These_parameters_will_be_effective' => "פרמטרים אלו יהיו בתוקף רק אם השיתוף מופעל. השיתוף נמצא ב-/home/e-smith/files/ibays/files",
|
||||
'nfs_Hello_TABLE' => "~~~שלום TABLE~~~",
|
||||
'nfs_Description' => "תיאור",
|
||||
'nfs_Set_the_uid_and_gid' => "~~~הגדר את ה-uid וה-gid אם ברצונך שכל הבקשות ייראו כאילו הן מגיעות ממשתמש אחד או מקבוצה אחת, אחרת השאר ריק~~~",
|
||||
'nfs_EnableShare_on_local_network' => "אפשר שיתוף ברשת המקומית",
|
||||
'nfs_Set_the_GID.' => "קבע את ה-GID.",
|
||||
'nfs_Save' => "שמור",
|
||||
'nfs_Requests_on_secure_ports' => "בקשות על יציאות מאובטחות",
|
||||
'nfs_Action' => "פעולה",
|
||||
'nfs_Delays_the_disk_writing' => "מעכב את כתיבת הדיסק",
|
||||
'Nfs_status' => "סטטוס",
|
||||
'nfs_Name' => "~~שם~~",
|
||||
'nfs_File_system_permissions' => "הרשאות מערכת קבצים",
|
28
Targets/Nfsshare/nfsshare_it.lex
Normal file
28
Targets/Nfsshare/nfsshare_it.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Salva",
|
||||
'nfs_Hello_TABLE' => "Ciao TABELLA",
|
||||
'nfs_Hello_PARAMS' => "Ciao PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Richieste su porte sicure",
|
||||
'nfs_File_system_permissions' => "Autorizzazioni del file system",
|
||||
'nfs_NFS_Client(s)_allowed' => "~~Client NFS autorizzati~~",
|
||||
'nfs_NFS_data_share' => "Condivisione dati NFS",
|
||||
'nfs_APPLY' => "Applicare",
|
||||
'nfs_Enable_the_NFS_Share' => "Abilita la condivisione NFS",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Per i permessi di scrittura, consentire all\'utente root e utilizzare porte insicure, è necessario configurare un elenco di un IP per riga, facente parte della rete locale.",
|
||||
'nfs_Set_the_uid_and_gid' => "Imposta l\'uid e il gid se desideri che tutte le richieste appaiano provenienti da un unico utente o da un unico gruppo, altrimenti lascia vuoto",
|
||||
'nfs_Set_the_GID.' => "Imposta il GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "L\'azione del pannello TABELLA è stata completata con successo",
|
||||
'Nfs_status' => "Stato",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "~~~L\'azione del pannello PARAMS è stata completata con successo~~~",
|
||||
'nfs_Information_Bay_name' => "Nome della Baia Informazioni",
|
||||
'nfs_Delays_the_disk_writing' => "Ritarda la scrittura su disco",
|
||||
'nfs_Share_owner_Group' => "Condividi gruppo proprietario",
|
||||
'nfs_Description' => "Descrizione",
|
||||
'nfs_Write_(a)synchronously' => "Scrivi (a)sicronamente",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Gestisci impostazioni NFS Ibay:",
|
||||
'nfs_Name' => "Nome",
|
||||
'nfs_Set_the_UID.' => "Imposta l\'UID.",
|
||||
'nfs_Squash_the_power_of_users' => "Sopprimi i privilegi degli utenti",
|
||||
'nfs_EnableShare_on_local_network' => "Abilita condivisione sulla rete locale",
|
||||
'nfs_These_parameters_will_be_effective' => "Questi parametri saranno efficaci solo se la condivisione è abilitata. La condivisione si trova in /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Sfoglia le cartelle principali",
|
||||
'nfs_Action' => "Azione",
|
28
Targets/Nfsshare/nfsshare_jp.lex
Normal file
28
Targets/Nfsshare/nfsshare_jp.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_APPLY' => "適用",
|
||||
'nfs_NFS_Client(s)_allowed' => "NFS クライアント(許可)",
|
||||
'nfs_TABLE_panel_action_was_successful' => "テーブルパネルの操作が成功しました",
|
||||
'nfs_Share_owner_Group' => "オーナーグループを共有",
|
||||
'nfs_Information_Bay_name' => "情報ベイ名称",
|
||||
'nfs_Write_(a)synchronously' => "非同期的に書き込み",
|
||||
'nfs_Squash_the_power_of_users' => "ユーザーの権限を制限する",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "ローカルネットワークの一部として、書き込み権限、ルートユーザーの許可、不安全なポートの使用には、1行に1つのIPアドレスのリストを設定する必要があります。",
|
||||
'nfs_Hello_PARAMS' => "こんにちは PARAMS",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "~~~PARAMSパネルのアクションが成功しました~~~",
|
||||
'nfs_Enable_the_NFS_Share' => "NFS 共有を有効にする",
|
||||
'nfs_NFS_data_share' => "NFSデータ共有",
|
||||
'nfs_Set_the_UID.' => "UIDを設定する。",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "NFS Ibayの設定を管理する:",
|
||||
'nfs_Browse_the_parent_folders' => "親フォルダーを参照",
|
||||
'nfs_These_parameters_will_be_effective' => "共有が有効の場合のみ、これらのパラメーターが適用されます。共有は/home/e-smith/files/ibays/files にあります。",
|
||||
'nfs_Hello_TABLE' => "~~~こんにちは、テーブル~~~",
|
||||
'nfs_Description' => "説明",
|
||||
'nfs_Set_the_uid_and_gid' => "すべてのリクエストが1人のユーザーまたは1つのグループからのものとして表示されるようにする場合は、uidとgidを設定してください。それ以外の場合は空白のままにしてください。",
|
||||
'nfs_EnableShare_on_local_network' => "ローカルネットワークで共有を有効にする",
|
||||
'nfs_Set_the_GID.' => "GIDを設定する。",
|
||||
'nfs_Save' => "保存",
|
||||
'nfs_Requests_on_secure_ports' => "セキュアポートへのリクエスト",
|
||||
'nfs_Action' => "アクション",
|
||||
'nfs_Delays_the_disk_writing' => "ディスク書き込みの遅延",
|
||||
'Nfs_status' => "ステータス",
|
||||
'nfs_Name' => "名前",
|
||||
'nfs_File_system_permissions' => "ファイルシステムの権限",
|
28
Targets/Nfsshare/nfsshare_nl.lex
Normal file
28
Targets/Nfsshare/nfsshare_nl.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Opslaan",
|
||||
'nfs_Hello_TABLE' => "Hallo TABEL",
|
||||
'nfs_Hello_PARAMS' => "Hallo PARAMETERS",
|
||||
'nfs_Requests_on_secure_ports' => "Verzoeken op beveiligde poorten",
|
||||
'nfs_File_system_permissions' => "Bestandssysteemrechten",
|
||||
'nfs_NFS_Client(s)_allowed' => "NFS-client(s) toegestaan",
|
||||
'nfs_NFS_data_share' => "NFS-gegevensdeling",
|
||||
'nfs_APPLY' => "Uitvoeren",
|
||||
'nfs_Enable_the_NFS_Share' => "NFS-deel inschakelen",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Voor schrijfrechten, Sta de rootgebruiker toe en gebruik onveilige poorten, U moet een lijst configureren met één IP per regel, Als onderdeel van het lokale netwerk(en).",
|
||||
'nfs_Set_the_uid_and_gid' => "Stel de uid en gid in als je wilt dat alle verzoeken van één gebruiker of één groep afkomstig lijken te zijn. Laat anders leeg.",
|
||||
'nfs_Set_the_GID.' => "Stel de GID in.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "TABLE paneelactie was succesvol",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "PARAMS-paneelactie is geslaagd",
|
||||
'nfs_Information_Bay_name' => "Informatiebaynaam",
|
||||
'nfs_Delays_the_disk_writing' => "Vertraagt het schrijven naar de schijf",
|
||||
'nfs_Share_owner_Group' => "Eigenaar groep delen",
|
||||
'nfs_Description' => "Beschrijving",
|
||||
'nfs_Write_(a)synchronously' => "Schrijven (a)synchroon",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "~~~Beheer NFS Ibay-instellingen:~~~",
|
||||
'nfs_Name' => "Naam",
|
||||
'nfs_Set_the_UID.' => "Stel de UID in.",
|
||||
'nfs_Squash_the_power_of_users' => "```Verwijder de macht van gebruikers```",
|
||||
'nfs_EnableShare_on_local_network' => "###Delen inschakelen op lokaal netwerk###",
|
||||
'nfs_These_parameters_will_be_effective' => "Deze parameters zijn alleen van kracht als de share is ingeschakeld. De share bevindt zich in /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Blader door de bovenliggende mappen",
|
||||
'nfs_Action' => "Actie",
|
32
Targets/Nfsshare/nfsshare_no.lex
Normal file
32
Targets/Nfsshare/nfsshare_no.lex
Normal file
@@ -0,0 +1,32 @@
|
||||
'nfs_APPLY' => "Bruk",
|
||||
'nfs_NFS_Client(s)_allowed' => "Tillatte NFS-klienter",
|
||||
'nfs_TABLE_panel_action_was_successful' => "TABELL-handling var vellykket",
|
||||
'nfs_Share_owner_Group' => "Dele eiergruppe",
|
||||
'nfs_Information_Bay_name' => "Informasjon Bay-navn",
|
||||
'nfs_Write_(a)synchronously' => "~~~Skriv (a)synkront~~~",
|
||||
'nfs_Squash_the_power_of_users' => "~~~Undertrykk kraften til brukerne~~~",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "For skrive-tillatelser, Tillate root-brukeren og bruke usikre porter, Du må konfigurere en liste med én IP per linje, Som er en del av det lokale nettverket.",
|
||||
'nfs_Hello_PARAMS' => "~~~Hallo PARAMS~~~",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "~~PARAMS-panelet aksjonen var vellykket~~",
|
||||
'nfs_Enable_the_NFS_Share' => "Aktiver NFS-deling",
|
||||
'nfs_NFS_data_share' => "NFS-datadeling",
|
||||
'nfs_Set_the_UID.' => "Sett UID.",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Administrer NFS Ibay-innstillinger:",
|
||||
'nfs_Browse_the_parent_folders' => "~~~Bla gjennom overordnede mapper~~~",
|
||||
'nfs_These_parameters_will_be_effective' => "Disse parametrene vil bare være effektive hvis delingen er aktivert. Delingen er i /home/e-smith/files/ibays/files",
|
||||
'nfs_Hello_TABLE' => "~~~
|
||||
Hallo TABELL
|
||||
~~~",
|
||||
'nfs_Description' => "Beskrivelse",
|
||||
'nfs_Set_the_uid_and_gid' => "Sett uid og gid hvis du vil at alle forespørsler skal fremstå som fra én bruker eller én gruppe. Ellers la være tomt.",
|
||||
'nfs_EnableShare_on_local_network' => "Aktiver deling på lokalt nettverk",
|
||||
'nfs_Set_the_GID.' => "~~~
|
||||
Angi GID.
|
||||
~~~",
|
||||
'nfs_Save' => "Lagre",
|
||||
'nfs_Requests_on_secure_ports' => "Forespørsler på sikre porter",
|
||||
'nfs_Action' => "~~Handling~~",
|
||||
'nfs_Delays_the_disk_writing' => "Forsinker diskskrivingen",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_Name' => "Navn",
|
||||
'nfs_File_system_permissions' => "Filsystemtillatelser",
|
28
Targets/Nfsshare/nfsshare_pl.lex
Normal file
28
Targets/Nfsshare/nfsshare_pl.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Zapisz",
|
||||
'nfs_Hello_TABLE' => "Witaj TABELA",
|
||||
'nfs_Hello_PARAMS' => "Witaj PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Żądania na zabezpieczonych portach",
|
||||
'nfs_File_system_permissions' => "Uprawnienia systemu plików",
|
||||
'nfs_NFS_Client(s)_allowed' => "Klient(y) NFS dozwolone",
|
||||
'nfs_NFS_data_share' => "Udział danych NFS",
|
||||
'nfs_APPLY' => "Zastosuj",
|
||||
'nfs_Enable_the_NFS_Share' => "Włącz udostępnianie NFS",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Dla uprawnień do zapisu, Zezwolenia dla użytkownika root i używania niebezpiecznych portów, Musisz skonfigurować listę jednego IP na linię, Będąc częścią sieci lokalnej.",
|
||||
'nfs_Set_the_uid_and_gid' => "Ustaw uid i gid, jeśli chcesz, aby wszystkie żądania pochodziły od jednego użytkownika lub jednej grupy. W przeciwnym razie pozostaw puste.",
|
||||
'nfs_Set_the_GID.' => "Ustaw GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "Działanie panelu TABELA zakończone sukcesem",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "Akcja panelu PARAMS zakończyła się pomyślnie",
|
||||
'nfs_Information_Bay_name' => "Nazwa zatoki informacyjnej",
|
||||
'nfs_Delays_the_disk_writing' => "Opóźnia zapisywanie na dysku",
|
||||
'nfs_Share_owner_Group' => "Udostępnij grupę właściciela",
|
||||
'nfs_Description' => "Opis",
|
||||
'nfs_Write_(a)synchronously' => "Pisz (a)synchronicznie",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "~~~Zarządzaj ustawieniami NFS Ibay:~~~",
|
||||
'nfs_Name' => "Nazwa",
|
||||
'nfs_Set_the_UID.' => "Ustaw UID.",
|
||||
'nfs_Squash_the_power_of_users' => "Zlikwiduj uprawnienia użytkowników",
|
||||
'nfs_EnableShare_on_local_network' => "Udostępnianie w sieci lokalnej",
|
||||
'nfs_These_parameters_will_be_effective' => "Te parametry będą skuteczne tylko wtedy, gdy udostępnianie jest włączone. Udostępnianie znajduje się w /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Przeglądaj foldery nadrzędne",
|
||||
'nfs_Action' => "Akcja",
|
28
Targets/Nfsshare/nfsshare_pt-br.lex
Normal file
28
Targets/Nfsshare/nfsshare_pt-br.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Salvar",
|
||||
'nfs_Hello_TABLE' => "Olá TABELA",
|
||||
'nfs_Hello_PARAMS' => "Olá PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Solicitações em portas seguras",
|
||||
'nfs_File_system_permissions' => "~~~Permissões do sistema de arquivos~~~",
|
||||
'nfs_NFS_Client(s)_allowed' => "Clientes NFS permitidos",
|
||||
'nfs_NFS_data_share' => "Compartilhamento de dados NFS",
|
||||
'nfs_APPLY' => "Aplicar",
|
||||
'nfs_Enable_the_NFS_Share' => "Habilitar o Compartilhamento NFS",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Para permissões de escrita, permitir o usuário root e usar portas inseguras, você deve configurar uma lista de um IP por linha, sendo parte da(s) rede(s) local(is).",
|
||||
'nfs_Set_the_uid_and_gid' => "Defina o uid e gid se você quiser que todas as solicitações pareçam ser de um usuário ou grupo específicos. Caso contrário, deixe em branco.",
|
||||
'nfs_Set_the_GID.' => "Definir o GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "Ação da tabela no painel foi bem-sucedida",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "Ação no painel de PARÂMETROS foi bem-sucedida",
|
||||
'nfs_Information_Bay_name' => "Nome da Baía de Informações",
|
||||
'nfs_Delays_the_disk_writing' => "Atrasar a gravação do disco",
|
||||
'nfs_Share_owner_Group' => "Compartilhar grupo do proprietário",
|
||||
'nfs_Description' => "Descrição",
|
||||
'nfs_Write_(a)synchronously' => "Escrever (a)sicronamente",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Configurar definições do NFS Ibay:",
|
||||
'nfs_Name' => "Nome",
|
||||
'nfs_Set_the_UID.' => "Definir o UID.",
|
||||
'nfs_Squash_the_power_of_users' => "Esmagar o poder dos usuários",
|
||||
'nfs_EnableShare_on_local_network' => "Habilitar compartilhamento na rede local",
|
||||
'nfs_These_parameters_will_be_effective' => "Esses parâmetros serão efetivos somente se o compartilhamento estiver habilitado. O compartilhamento está em /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Navegar pelas pastas-mãe",
|
||||
'nfs_Action' => "Ação",
|
28
Targets/Nfsshare/nfsshare_pt.lex
Normal file
28
Targets/Nfsshare/nfsshare_pt.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Salvar",
|
||||
'nfs_Hello_TABLE' => "Olá TABELA",
|
||||
'nfs_Hello_PARAMS' => "Olá PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Solicitações em portas seguras",
|
||||
'nfs_File_system_permissions' => "Permissões do sistema de arquivos",
|
||||
'nfs_NFS_Client(s)_allowed' => "Clientes NFS permitidos",
|
||||
'nfs_NFS_data_share' => "Compartilhamento de dados NFS",
|
||||
'nfs_APPLY' => "Aplicar",
|
||||
'nfs_Enable_the_NFS_Share' => "Habilitar o Compartilhamento NFS",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Para permissões de escrita, permitir o usuário root e usar portas inseguras, você deve configurar uma lista com um IP por linha, sendo parte da(s) rede(s) local(is).",
|
||||
'nfs_Set_the_uid_and_gid' => "Defina o uid e gid se você quiser que todas as solicitações pareçam ser de um único usuário ou de um único grupo. Caso contrário, deixe em branco.",
|
||||
'nfs_Set_the_GID.' => "Definir o GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "A ação no painel TABLE foi bem-sucedida",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "Ação do painel PARAMS foi bem-sucedida",
|
||||
'nfs_Information_Bay_name' => "Nome da Baía de Informações",
|
||||
'nfs_Delays_the_disk_writing' => "~~~Atrasar a gravação do disco~~~",
|
||||
'nfs_Share_owner_Group' => "Compartilhar Grupo de Proprietários",
|
||||
'nfs_Description' => "Descrição",
|
||||
'nfs_Write_(a)synchronously' => "Escrever (a)síncronamente",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Configurar definições do NFS Ibay:",
|
||||
'nfs_Name' => "Nome",
|
||||
'nfs_Set_the_UID.' => "Definir o UID.",
|
||||
'nfs_Squash_the_power_of_users' => "Esmagar o poder dos usuários",
|
||||
'nfs_EnableShare_on_local_network' => "Habilitar compartilhamento na rede local",
|
||||
'nfs_These_parameters_will_be_effective' => "Estes parâmetros serão eficazes apenas se o compartilhamento estiver ativado. O compartilhamento está em /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Procurar nas pastas principais",
|
||||
'nfs_Action' => "Ação",
|
30
Targets/Nfsshare/nfsshare_ro.lex
Normal file
30
Targets/Nfsshare/nfsshare_ro.lex
Normal file
@@ -0,0 +1,30 @@
|
||||
'nfs_Save' => "Salvează",
|
||||
'nfs_Hello_TABLE' => "Bună MASĂ",
|
||||
'nfs_Hello_PARAMS' => "~~~Salutări PARAMS~~~",
|
||||
'nfs_Requests_on_secure_ports' => "Solicitări pe porturi sigure",
|
||||
'nfs_File_system_permissions' => "Permisiuni sistem de fișiere",
|
||||
'nfs_NFS_Client(s)_allowed' => "~~~Clienți NFS permiși~~~",
|
||||
'nfs_NFS_data_share' => "Partajare date NFS",
|
||||
'nfs_APPLY' => "Aplicare",
|
||||
'nfs_Enable_the_NFS_Share' => "Activați NFS Share-ul",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Pentru permisiuni de scriere, permiterea utilizatorului root și utilizarea porturilor nesigure, trebuie să configurați o listă cu câte un IP pe linie, fiind parte din rețelele locale.",
|
||||
'nfs_Set_the_uid_and_gid' => "Setați uid și gid dacă doriți ca toate cererile să pară că provin de la un singur utilizator sau grup. Altfel, lăsați necompletat.",
|
||||
'nfs_Set_the_GID.' => "Setați GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "~~~Acțiunea panoului TABLE a fost reușită~~~",
|
||||
'Nfs_status' => "Stare",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "Acțiunea panoului PARAMS a fost finalizată cu succes",
|
||||
'nfs_Information_Bay_name' => "Nume Golf Informativ",
|
||||
'nfs_Delays_the_disk_writing' => "Întârzie scrierea pe disc",
|
||||
'nfs_Share_owner_Group' => "Partajează grupul proprietarului",
|
||||
'nfs_Description' => "Descriere",
|
||||
'nfs_Write_(a)synchronously' => "Scrie (a)sincronizat",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Gestionați setările NFS Ibay:",
|
||||
'nfs_Name' => "Nume",
|
||||
'nfs_Set_the_UID.' => "Setează UID-ul.",
|
||||
'nfs_Squash_the_power_of_users' => "~~~Limitarea puterii utilizatorilor~~~",
|
||||
'nfs_EnableShare_on_local_network' => "Permite partajarea în rețeaua locală",
|
||||
'nfs_These_parameters_will_be_effective' => "~~~
|
||||
Acești parametri vor fi eficienți doar dacă partajarea este activată. Partajarea se află în /home/e-smith/files/ibays//files
|
||||
~~~",
|
||||
'nfs_Browse_the_parent_folders' => "Răsfoiți dosarele părinte",
|
||||
'nfs_Action' => "Acțiune",
|
28
Targets/Nfsshare/nfsshare_ru.lex
Normal file
28
Targets/Nfsshare/nfsshare_ru.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Сохранить",
|
||||
'nfs_Hello_TABLE' => "~~~Привет ТАБЛИЦА~~~",
|
||||
'nfs_Hello_PARAMS' => "~~~Привет PARAMS~~~",
|
||||
'nfs_Requests_on_secure_ports' => "Запросы на защищенные порты",
|
||||
'nfs_File_system_permissions' => "Разрешения файловой системы",
|
||||
'nfs_NFS_Client(s)_allowed' => "Разрешенные клиенты NFS",
|
||||
'nfs_NFS_data_share' => "Общий доступ к данным NFS",
|
||||
'nfs_APPLY' => "Применить",
|
||||
'nfs_Enable_the_NFS_Share' => "~~~Включить NFS совместный доступ~~~",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Для разрешений на запись, разрешение root-пользователя и использование небезопасных портов, вы должны настроить список с одним IP в каждой строке, который является частью локальной сети(ей).",
|
||||
'nfs_Set_the_uid_and_gid' => "Установите uid и gid, если вы хотите, чтобы все запросы выглядели как от одного пользователя или одной группы. В противном случае оставьте пустым.",
|
||||
'nfs_Set_the_GID.' => "Установить GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "Действие панели TABLE выполнено успешно",
|
||||
'Nfs_status' => "Статус",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "Панель PARAMS успешно выполнена",
|
||||
'nfs_Information_Bay_name' => "Название Информационного Блока",
|
||||
'nfs_Delays_the_disk_writing' => "~~~Задерживает запись на диск~~~",
|
||||
'nfs_Share_owner_Group' => "Поделиться группой владельца",
|
||||
'nfs_Description' => "Описание",
|
||||
'nfs_Write_(a)synchronously' => "Написать (а)синхронно",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Управление настройками NFS Ibay:",
|
||||
'nfs_Name' => "Имя",
|
||||
'nfs_Set_the_UID.' => "Установить UID.",
|
||||
'nfs_Squash_the_power_of_users' => "~~~Ограничить права пользователей~~~",
|
||||
'nfs_EnableShare_on_local_network' => "Включить общий доступ в локальной сети",
|
||||
'nfs_These_parameters_will_be_effective' => "Эти параметры будут действовать только в случае включения общего доступа. Общий ресурс находится в /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Просмотреть родительские папки",
|
||||
'nfs_Action' => "Действие",
|
28
Targets/Nfsshare/nfsshare_sl.lex
Normal file
28
Targets/Nfsshare/nfsshare_sl.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Shrani",
|
||||
'nfs_Hello_TABLE' => "~~~Pozdravljena TABELA~~~",
|
||||
'nfs_Hello_PARAMS' => "~~~Pozdravljeni PARAMS~~~",
|
||||
'nfs_Requests_on_secure_ports' => "Zahteve na varnih vratih",
|
||||
'nfs_File_system_permissions' => "Dovoljenja datotečnega sistema",
|
||||
'nfs_NFS_Client(s)_allowed' => "Dovoljeni NFS odjemalci",
|
||||
'nfs_NFS_data_share' => "Skupna raba podatkov NFS",
|
||||
'nfs_APPLY' => "Uporabi",
|
||||
'nfs_Enable_the_NFS_Share' => "Omogoči NFS skupno rabo",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Za pisna dovoljenja, omogočanje uporabniku root in uporabo negotovih vrat, morate konfigurirati seznam z enim IP-jem na vrstico, ki je del lokalne mreže.",
|
||||
'nfs_Set_the_uid_and_gid' => "Nastavite uid in gid, če želite, da bodo vse zahteve videti, kot da prihajajo od enega uporabnika ali ene skupine. Sicer pustite prazno.",
|
||||
'nfs_Set_the_GID.' => "Nastavi GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "Tabela plošča dejanje je bilo uspešno",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "~~~Dejanje panela PARAMS je bilo uspešno~~~",
|
||||
'nfs_Information_Bay_name' => "Ime informacijskega zaliva",
|
||||
'nfs_Delays_the_disk_writing' => "~~~Odloži pisanje na disk~~~",
|
||||
'nfs_Share_owner_Group' => "Delitev lastniške skupine",
|
||||
'nfs_Description' => "Opis",
|
||||
'nfs_Write_(a)synchronously' => "Napiši (a)sinkrono",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Upravljanje nastavitev NFS Ibay:",
|
||||
'nfs_Name' => "Ime",
|
||||
'nfs_Set_the_UID.' => "Nastavi UID.",
|
||||
'nfs_Squash_the_power_of_users' => "Stisni moč uporabnikov",
|
||||
'nfs_EnableShare_on_local_network' => "Omogoči deljenje v lokalnem omrežju",
|
||||
'nfs_These_parameters_will_be_effective' => "Ti parametri bodo učinkoviti samo, če je delitev omogočena. Delitev je v /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Brskanje po nadrejenih mapah",
|
||||
'nfs_Action' => "Dejanje",
|
30
Targets/Nfsshare/nfsshare_sv.lex
Normal file
30
Targets/Nfsshare/nfsshare_sv.lex
Normal file
@@ -0,0 +1,30 @@
|
||||
'nfs_Save' => "Spara",
|
||||
'nfs_Hello_TABLE' => "Hej TABELL",
|
||||
'nfs_Hello_PARAMS' => "Hej PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "Begäranden på säkra portar",
|
||||
'nfs_File_system_permissions' => "Filsystembehörigheter",
|
||||
'nfs_NFS_Client(s)_allowed' => "Tillåtna NFS-klient(er)",
|
||||
'nfs_NFS_data_share' => "Dela NFS-data",
|
||||
'nfs_APPLY' => "Tillämpa",
|
||||
'nfs_Enable_the_NFS_Share' => "Aktivera NFS-delning",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "~~~
|
||||
För skrivbehörigheter, tillåta root-användaren och använda osäkra portar, måste du konfigurera en lista med en IP per rad, som är en del av det lokala nätverket/näten.
|
||||
~~~",
|
||||
'nfs_Set_the_uid_and_gid' => "Ställ in uid och gid om du vill att alla förfrågningar ska verka komma från en användare eller en grupp, annars lämna tomt",
|
||||
'nfs_Set_the_GID.' => "Ställ in GID.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "~~~Åtgärden med panelen TABLE lyckades~~~",
|
||||
'Nfs_status' => "Status",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "~~~PARAM-panelåtgärden lyckades~~~",
|
||||
'nfs_Information_Bay_name' => "Informationsbuktens namn",
|
||||
'nfs_Delays_the_disk_writing' => "Fördröjer diskinspelningen",
|
||||
'nfs_Share_owner_Group' => "Dela ägargrupp",
|
||||
'nfs_Description' => "Beskrivning",
|
||||
'nfs_Write_(a)synchronously' => "Skriv (a)synkront",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "Hantera NFS Ibay-inställningar:",
|
||||
'nfs_Name' => "Namn",
|
||||
'nfs_Set_the_UID.' => "Ställ in UID.",
|
||||
'nfs_Squash_the_power_of_users' => "~~Undertryck användarnas makt~~",
|
||||
'nfs_EnableShare_on_local_network' => "Aktivera delning i lokalt nätverk",
|
||||
'nfs_These_parameters_will_be_effective' => "Dessa parametrar kommer endast att vara effektiva om delningen är aktiverad. Delningen finns i /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "Bläddra bland föräldermapparna",
|
||||
'nfs_Action' => "~~Åtgärd~~",
|
28
Targets/Nfsshare/nfsshare_th.lex
Normal file
28
Targets/Nfsshare/nfsshare_th.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "บันทึก",
|
||||
'nfs_Hello_TABLE' => "สวัสดี ตาราง",
|
||||
'nfs_Hello_PARAMS' => "~~~สวัสดี PARAMS~~~",
|
||||
'nfs_Requests_on_secure_ports' => "คำขอบนพอร์ตที่ปลอดภัย",
|
||||
'nfs_File_system_permissions' => "การอนุญาตระบบไฟล์",
|
||||
'nfs_NFS_Client(s)_allowed' => "ลูกค้า NFS ที่อนุญาต",
|
||||
'nfs_NFS_data_share' => "การแชร์ข้อมูล NFS",
|
||||
'nfs_APPLY' => "นำไปใช้",
|
||||
'nfs_Enable_the_NFS_Share' => "เปิดใช้งานการแชร์ NFS",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "สำหรับสิทธิ์ในการเขียน อนุญาตให้ผู้ใช้ root และใช้พอร์ตที่ไม่ปลอดภัย คุณต้องกำหนดรายชื่อ IP หนึ่งรายการต่อบรรทัด ซึ่งเป็นส่วนหนึ่งของเครือข่ายท้องถิ่น",
|
||||
'nfs_Set_the_uid_and_gid' => "ตั้งค่า UID และ GID หากคุณต้องการให้คำร้องทั้งหมดแสดงถึงผู้ใช้หนึ่งคนหรือกลุ่มเดียว มิฉะนั้นให้เว้นว่างไว้",
|
||||
'nfs_Set_the_GID.' => "ตั้งค่า GID",
|
||||
'nfs_TABLE_panel_action_was_successful' => "การดำเนินการในแผงตารางสำเร็จเรียบร้อยแล้ว",
|
||||
'Nfs_status' => "สถานะ",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "การดำเนินการพาแนล PARAMS สำเร็จเรียบร้อย",
|
||||
'nfs_Information_Bay_name' => "ชื่อคลังข้อมูล",
|
||||
'nfs_Delays_the_disk_writing' => "ชะลอการเขียนข้อมูลลงดิสก์",
|
||||
'nfs_Share_owner_Group' => "แชร์เจ้าของกลุ่ม",
|
||||
'nfs_Description' => "คำอธิบาย",
|
||||
'nfs_Write_(a)synchronously' => "เขียน (ก)ตามลำดับ/ไม่ตามลำดับ",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "จัดการการตั้งค่า NFS Ibay:",
|
||||
'nfs_Name' => "ชื่อ",
|
||||
'nfs_Set_the_UID.' => "ตั้งค่า UID",
|
||||
'nfs_Squash_the_power_of_users' => "บดขยี้พลังของผู้ใช้",
|
||||
'nfs_EnableShare_on_local_network' => "เปิดการแชร์บนเครือข่ายภายใน",
|
||||
'nfs_These_parameters_will_be_effective' => "~~~พารามิเตอร์เหล่านี้จะมีผลเมื่อเปิดใช้งานการแชร์เท่านั้น การแชร์อยู่ที่ /home/e-smith/files/ibays//files~~~",
|
||||
'nfs_Browse_the_parent_folders' => "เรียกดูโฟลเดอร์หลัก",
|
||||
'nfs_Action' => "ดำเนินการ",
|
28
Targets/Nfsshare/nfsshare_tr.lex
Normal file
28
Targets/Nfsshare/nfsshare_tr.lex
Normal file
@@ -0,0 +1,28 @@
|
||||
'nfs_Save' => "Kaydet",
|
||||
'nfs_Hello_TABLE' => "Merhaba TABLO",
|
||||
'nfs_Hello_PARAMS' => "~~~Merhaba PARAMS~~~",
|
||||
'nfs_Requests_on_secure_ports' => "Güvenli portlar üzerindeki istekler",
|
||||
'nfs_File_system_permissions' => "~~~Dosya sistemi izinleri~~~",
|
||||
'nfs_NFS_Client(s)_allowed' => "İzin verilen NFS İstemcileri",
|
||||
'nfs_NFS_data_share' => "NFS veri paylaşımı",
|
||||
'nfs_APPLY' => "Uygula",
|
||||
'nfs_Enable_the_NFS_Share' => "NFS Paylaşımını Etkinleştir",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "Yazma izinleri için, kök kullanıcıyı izin vererek ve güvensiz portları kullanarak, yerel ağ(lar)ın bir parçası olarak, satır başına bir IP olacak şekilde bir liste yapılandırmalısınız.",
|
||||
'nfs_Set_the_uid_and_gid' => "Tüm isteklerin tek bir kullanıcıdan veya gruptan gelmiş gibi görünmesini istiyorsanız uid ve gid ayarlarını yapın, aksi takdirde boş bırakın",
|
||||
'nfs_Set_the_GID.' => "GID Ayarla.",
|
||||
'nfs_TABLE_panel_action_was_successful' => "~~~TABLO paneli işlemi başarılı oldu~~~",
|
||||
'Nfs_status' => "Durum",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "~~~PARAMS panel eylemi başarılı oldu~~~",
|
||||
'nfs_Information_Bay_name' => "Bilgi Koyu adı",
|
||||
'nfs_Delays_the_disk_writing' => "Disk yazımını geciktirir",
|
||||
'nfs_Share_owner_Group' => "Sahip Grubunu Paylaş",
|
||||
'nfs_Description' => "Açıklama",
|
||||
'nfs_Write_(a)synchronously' => "Eşzamanlı (a)synchronously yaz",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "NFS Ibay ayarlarını yönet:",
|
||||
'nfs_Name' => "İsim",
|
||||
'nfs_Set_the_UID.' => "Kullanıcı Kimliğini Ayarla.",
|
||||
'nfs_Squash_the_power_of_users' => "Kullanıcıların gücünü azalt",
|
||||
'nfs_EnableShare_on_local_network' => "Yerel Ağda Paylaşımı Etkinleştir",
|
||||
'nfs_These_parameters_will_be_effective' => "Paylaşılan alan etkinleştirildiğinde bu parametreler geçerli olacaktır. Paylaşım /home/e-smith/files/ibays//files dizinindedir.",
|
||||
'nfs_Browse_the_parent_folders' => "Üst klasörlere göz at",
|
||||
'nfs_Action' => "Eylem",
|
30
Targets/Nfsshare/nfsshare_zh-cn.lex
Normal file
30
Targets/Nfsshare/nfsshare_zh-cn.lex
Normal file
@@ -0,0 +1,30 @@
|
||||
'nfs_Save' => "保存",
|
||||
'nfs_Hello_TABLE' => "你好,表格",
|
||||
'nfs_Hello_PARAMS' => "你好 PARAMS",
|
||||
'nfs_Requests_on_secure_ports' => "安全端口上的请求",
|
||||
'nfs_File_system_permissions' => "~~~文件系统权限~~~",
|
||||
'nfs_NFS_Client(s)_allowed' => "允许的NFS客户端",
|
||||
'nfs_NFS_data_share' => "NFS 数据共享",
|
||||
'nfs_APPLY' => "应用",
|
||||
'nfs_Enable_the_NFS_Share' => "启用 NFS 共享",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "为写入权限、允许root用户和使用不安全端口,必须配置每行一个IP地址列表,作为本地网络的一部分。",
|
||||
'nfs_Set_the_uid_and_gid' => "设置 uid 和 gid 如果你希望所有请求都显示为来自一个用户或一个组,否则保持为空",
|
||||
'nfs_Set_the_GID.' => "设置GID。",
|
||||
'nfs_TABLE_panel_action_was_successful' => "~~~表面板操作成功~~~",
|
||||
'Nfs_status' => "状态",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "~~~
|
||||
PARAMS 面板操作成功
|
||||
~~~",
|
||||
'nfs_Information_Bay_name' => "信息湾名称",
|
||||
'nfs_Delays_the_disk_writing' => "延迟磁盘写入",
|
||||
'nfs_Share_owner_Group' => "共享所有者组",
|
||||
'nfs_Description' => "描述",
|
||||
'nfs_Write_(a)synchronously' => "异步/同步写入",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "管理 NFS Ibay 设置:",
|
||||
'nfs_Name' => "名称",
|
||||
'nfs_Set_the_UID.' => "设置用户ID。",
|
||||
'nfs_Squash_the_power_of_users' => "压制用户的权力",
|
||||
'nfs_EnableShare_on_local_network' => "启用本地网络共享",
|
||||
'nfs_These_parameters_will_be_effective' => "这些参数仅在共享启用时生效。共享位于 /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "浏览父文件夹",
|
||||
'nfs_Action' => "操作",
|
30
Targets/Nfsshare/nfsshare_zh-tw.lex
Normal file
30
Targets/Nfsshare/nfsshare_zh-tw.lex
Normal file
@@ -0,0 +1,30 @@
|
||||
'nfs_Save' => "儲存",
|
||||
'nfs_Hello_TABLE' => "您好,TABLE",
|
||||
'nfs_Hello_PARAMS' => "~~~你好 PARAMS~~~",
|
||||
'nfs_Requests_on_secure_ports' => "請求在安全端口",
|
||||
'nfs_File_system_permissions' => "~~~檔案系統權限~~~",
|
||||
'nfs_NFS_Client(s)_allowed' => "NFS 客戶端允許",
|
||||
'nfs_NFS_data_share' => "NFS 資料共享",
|
||||
'nfs_APPLY' => "套用",
|
||||
'nfs_Enable_the_NFS_Share' => "~~~啟用 NFS 共享~~~",
|
||||
'nfs_For_writing_permissions,allowing_the_root' => "允許寫入權限、允許 root 用戶和使用不安全端口,您必須配置一個每行一個 IP 地址的列表,屬於本地網路的一部分。",
|
||||
'nfs_Set_the_uid_and_gid' => "將 UID 和 GID 設置為所需用戶或群組,否則請留空",
|
||||
'nfs_Set_the_GID.' => "設置 GID。",
|
||||
'nfs_TABLE_panel_action_was_successful' => "~~~
|
||||
表格面板操作成功
|
||||
~~~",
|
||||
'Nfs_status' => "~~~狀態~~~",
|
||||
'nfs_PARAMS_panel_action_was_successful' => "參數面板操作成功",
|
||||
'nfs_Information_Bay_name' => "資訊灣名稱",
|
||||
'nfs_Delays_the_disk_writing' => "延遲磁碟寫入",
|
||||
'nfs_Share_owner_Group' => "共享擁有者群組",
|
||||
'nfs_Description' => "描述",
|
||||
'nfs_Write_(a)synchronously' => "非同步寫入",
|
||||
'nfs_Manage_NFS_Ibay_settings:' => "管理 NFS Ibay 設定:",
|
||||
'nfs_Name' => "姓名",
|
||||
'nfs_Set_the_UID.' => "設定UID。",
|
||||
'nfs_Squash_the_power_of_users' => "壓制用戶權限",
|
||||
'nfs_EnableShare_on_local_network' => "啟用本地網路共享",
|
||||
'nfs_These_parameters_will_be_effective' => "這些參數只有在共享啟用時才會生效。共享位置在 /home/e-smith/files/ibays//files",
|
||||
'nfs_Browse_the_parent_folders' => "~~~瀏覽上層資料夾~~~",
|
||||
'nfs_Action' => "行動",
|
Reference in New Issue
Block a user