mirror of https://github.com/apache/cloudstack.git
Merge branch 'master' into ui-plugins
This commit is contained in:
commit
22636d520e
|
|
@ -24,6 +24,7 @@ import java.util.Set;
|
|||
|
||||
import com.cloud.dc.Vlan;
|
||||
import com.cloud.exception.InsufficientAddressCapacityException;
|
||||
import com.cloud.exception.InvalidParameterValueException;
|
||||
import com.cloud.hypervisor.Hypervisor.HypervisorType;
|
||||
import com.cloud.network.Network.Capability;
|
||||
import com.cloud.network.Network.Provider;
|
||||
|
|
@ -252,4 +253,6 @@ public interface NetworkModel {
|
|||
boolean isIP6AddressAvailableInNetwork(long networkId);
|
||||
|
||||
boolean isIP6AddressAvailableInVlan(long vlanId);
|
||||
|
||||
void checkIp6Parameters(String startIPv6, String endIPv6, String ip6Gateway, String ip6Cidr) throws InvalidParameterValueException;
|
||||
}
|
||||
|
|
@ -75,7 +75,7 @@ public class CreateVlanIpRangeCmd extends BaseCmd {
|
|||
description="optional parameter. Have to be specified for Direct Untagged vlan only.")
|
||||
private Long podId;
|
||||
|
||||
@Parameter(name=ApiConstants.START_IP, type=CommandType.STRING, required=true, description="the beginning IP address in the VLAN IP range")
|
||||
@Parameter(name=ApiConstants.START_IP, type=CommandType.STRING, description="the beginning IP address in the VLAN IP range")
|
||||
private String startIp;
|
||||
|
||||
@Parameter(name=ApiConstants.VLAN, type=CommandType.STRING, description="the ID or VID of the VLAN. If not specified," +
|
||||
|
|
@ -94,6 +94,19 @@ public class CreateVlanIpRangeCmd extends BaseCmd {
|
|||
description="the physical network id")
|
||||
private Long physicalNetworkId;
|
||||
|
||||
@Parameter(name=ApiConstants.START_IPV6, type=CommandType.STRING, description="the beginning IPv6 address in the IPv6 network range")
|
||||
private String startIpv6;
|
||||
|
||||
@Parameter(name=ApiConstants.END_IPV6, type=CommandType.STRING, description="the ending IPv6 address in the IPv6 network range")
|
||||
private String endIpv6;
|
||||
|
||||
@Parameter(name=ApiConstants.IP6_GATEWAY, type=CommandType.STRING, description="the gateway of the IPv6 network. Required " +
|
||||
"for Shared networks and Isolated networks when it belongs to VPC")
|
||||
private String ip6Gateway;
|
||||
|
||||
@Parameter(name=ApiConstants.IP6_CIDR, type=CommandType.STRING, description="the CIDR of IPv6 network, must be at least /64")
|
||||
private String ip6Cidr;
|
||||
|
||||
/////////////////////////////////////////////////////
|
||||
/////////////////// Accessors ///////////////////////
|
||||
/////////////////////////////////////////////////////
|
||||
|
|
@ -141,6 +154,35 @@ public class CreateVlanIpRangeCmd extends BaseCmd {
|
|||
public Long getProjectId() {
|
||||
return projectId;
|
||||
}
|
||||
|
||||
public String getStartIpv6() {
|
||||
if (startIpv6 == null) {
|
||||
return null;
|
||||
}
|
||||
return startIpv6.toLowerCase();
|
||||
}
|
||||
|
||||
public String getEndIpv6() {
|
||||
if (endIpv6 == null) {
|
||||
return null;
|
||||
}
|
||||
return endIpv6.toLowerCase();
|
||||
}
|
||||
|
||||
public String getIp6Gateway() {
|
||||
if (ip6Gateway == null) {
|
||||
return null;
|
||||
}
|
||||
return ip6Gateway.toLowerCase();
|
||||
}
|
||||
|
||||
public String getIp6Cidr() {
|
||||
if (ip6Cidr == null) {
|
||||
return null;
|
||||
}
|
||||
return ip6Cidr.toLowerCase();
|
||||
}
|
||||
|
||||
/////////////////////////////////////////////////////
|
||||
/////////////// API Implementation///////////////////
|
||||
/////////////////////////////////////////////////////
|
||||
|
|
@ -153,7 +195,6 @@ public class CreateVlanIpRangeCmd extends BaseCmd {
|
|||
return physicalNetworkId;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public String getCommandName() {
|
||||
return s_name;
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@ import com.amazon.ec2.DescribeVolumesResponse;
|
|||
import com.amazon.ec2.DetachVolumeResponse;
|
||||
import com.amazon.ec2.DisassociateAddressResponse;
|
||||
import com.amazon.ec2.GetPasswordDataResponse;
|
||||
import com.amazon.ec2.GroupItemType;
|
||||
import com.amazon.ec2.ImportKeyPairResponse;
|
||||
import com.amazon.ec2.LaunchPermissionItemType;
|
||||
import com.amazon.ec2.ModifyImageAttributeResponse;
|
||||
|
|
@ -1168,6 +1169,16 @@ public class EC2RestServlet extends HttpServlet {
|
|||
EC2request.setKeyName(keyName[0]);
|
||||
}
|
||||
|
||||
Enumeration<?> names = request.getParameterNames();
|
||||
while( names.hasMoreElements()) {
|
||||
String key = (String)names.nextElement();
|
||||
if ( key.startsWith("SecurityGroup")) {
|
||||
String[] value = request.getParameterValues(key);
|
||||
if (null != value && 0 < value.length)
|
||||
EC2request.addGroupName( value[0]);
|
||||
}
|
||||
}
|
||||
|
||||
// -> execute the request
|
||||
EC2Engine engine = ServiceProvider.getInstance().getEC2Engine();
|
||||
RunInstancesResponse EC2response = EC2SoapServiceImpl.toRunInstancesResponse( engine.runInstances( EC2request ), engine);
|
||||
|
|
@ -1678,13 +1689,16 @@ public class EC2RestServlet extends HttpServlet {
|
|||
throws ADBException, XMLStreamException, IOException {
|
||||
EC2DescribeKeyPairs ec2Request = new EC2DescribeKeyPairs();
|
||||
|
||||
|
||||
String[] keyNames = request.getParameterValues( "KeyName" );
|
||||
if (keyNames != null) {
|
||||
for (String keyName : keyNames) {
|
||||
ec2Request.addKeyName(keyName);
|
||||
Enumeration<?> names = request.getParameterNames();
|
||||
while( names.hasMoreElements()) {
|
||||
String key = (String)names.nextElement();
|
||||
if ( key.startsWith("KeyName")) {
|
||||
String[] value = request.getParameterValues( key);
|
||||
if (null != value && 0 < value.length)
|
||||
ec2Request.addKeyName( value[0]);
|
||||
}
|
||||
}
|
||||
|
||||
EC2Filter[] filterSet = extractFilters( request );
|
||||
if (null != filterSet){
|
||||
EC2KeyPairFilterSet vfs = new EC2KeyPairFilterSet();
|
||||
|
|
|
|||
|
|
@ -1354,15 +1354,15 @@ public class EC2SoapServiceImpl implements AmazonEC2SkeletonInterface {
|
|||
GroupSetType param4 = new GroupSetType();
|
||||
|
||||
|
||||
String[] groups = inst.getGroupSet();
|
||||
EC2SecurityGroup[] groups = inst.getGroupSet();
|
||||
if (null == groups || 0 == groups.length) {
|
||||
GroupItemType param5 = new GroupItemType();
|
||||
param5.setGroupId("");
|
||||
param4.addItem( param5 );
|
||||
} else {
|
||||
for (String group : groups) {
|
||||
for (EC2SecurityGroup group : groups) {
|
||||
GroupItemType param5 = new GroupItemType();
|
||||
param5.setGroupId(group);
|
||||
param5.setGroupId(group.getId());
|
||||
param4.addItem( param5 );
|
||||
}
|
||||
}
|
||||
|
|
@ -1681,16 +1681,16 @@ public class EC2SoapServiceImpl implements AmazonEC2SkeletonInterface {
|
|||
|
||||
param1.setOwnerId(ownerId);
|
||||
|
||||
String[] groups = inst.getGroupSet();
|
||||
EC2SecurityGroup[] groups = inst.getGroupSet();
|
||||
GroupSetType param2 = new GroupSetType();
|
||||
if (null == groups || 0 == groups.length) {
|
||||
GroupItemType param3 = new GroupItemType();
|
||||
param3.setGroupId("");
|
||||
param2.addItem( param3 );
|
||||
} else {
|
||||
for (String group : groups) {
|
||||
for (EC2SecurityGroup group : groups) {
|
||||
GroupItemType param3 = new GroupItemType();
|
||||
param3.setGroupId(group);
|
||||
param3.setGroupId(group.getId());
|
||||
param2.addItem( param3 );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -625,59 +625,6 @@ public class EC2Engine extends ManagerBase {
|
|||
return imageAtts;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* If given a specific list of snapshots of interest, then only values from those snapshots are returned.
|
||||
*
|
||||
* @param interestedShots - can be null, should be a subset of all snapshots
|
||||
*/
|
||||
private EC2DescribeSnapshotsResponse listSnapshots( String[] interestedShots, List<CloudStackKeyValue> resourceTagSet ) throws Exception {
|
||||
EC2DescribeSnapshotsResponse snapshots = new EC2DescribeSnapshotsResponse();
|
||||
|
||||
List<CloudStackSnapshot> cloudSnaps;
|
||||
if (interestedShots == null || interestedShots.length == 0) {
|
||||
cloudSnaps = getApi().listSnapshots(null, null, null, null, null, null, null, null, null, resourceTagSet);
|
||||
} else {
|
||||
cloudSnaps = new ArrayList<CloudStackSnapshot>();
|
||||
|
||||
for(String id : interestedShots) {
|
||||
List<CloudStackSnapshot> tmpList = getApi().listSnapshots(null, null, id, null, null, null, null,
|
||||
null, null, resourceTagSet);
|
||||
cloudSnaps.addAll(tmpList);
|
||||
}
|
||||
}
|
||||
|
||||
if (cloudSnaps == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
for(CloudStackSnapshot cloudSnapshot : cloudSnaps) {
|
||||
EC2Snapshot shot = new EC2Snapshot();
|
||||
shot.setId(cloudSnapshot.getId());
|
||||
shot.setName(cloudSnapshot.getName());
|
||||
shot.setVolumeId(cloudSnapshot.getVolumeId());
|
||||
shot.setType(cloudSnapshot.getSnapshotType());
|
||||
shot.setState(cloudSnapshot.getState());
|
||||
shot.setCreated(cloudSnapshot.getCreated());
|
||||
shot.setAccountName(cloudSnapshot.getAccountName());
|
||||
shot.setDomainId(cloudSnapshot.getDomainId());
|
||||
|
||||
List<CloudStackKeyValue> resourceTags = cloudSnapshot.getTags();
|
||||
for(CloudStackKeyValue resourceTag : resourceTags) {
|
||||
EC2TagKeyValue param = new EC2TagKeyValue();
|
||||
param.setKey(resourceTag.getKey());
|
||||
if (resourceTag.getValue() != null)
|
||||
param.setValue(resourceTag.getValue());
|
||||
shot.addResourceTag(param);
|
||||
}
|
||||
|
||||
snapshots.addSnapshot(shot);
|
||||
}
|
||||
return snapshots;
|
||||
}
|
||||
|
||||
|
||||
// handlers
|
||||
/**
|
||||
* return password data from the instance
|
||||
|
|
@ -1459,10 +1406,12 @@ public class EC2Engine extends ManagerBase {
|
|||
vm.setZoneName(resp.getZoneName());
|
||||
vm.setTemplateId(resp.getTemplateId().toString());
|
||||
if (resp.getSecurityGroupList() != null && resp.getSecurityGroupList().size() > 0) {
|
||||
// TODO, we have a list of security groups, just return the first one?
|
||||
List<CloudStackSecurityGroup> securityGroupList = resp.getSecurityGroupList();
|
||||
for (CloudStackSecurityGroup securityGroup : securityGroupList) {
|
||||
vm.addGroupName(securityGroup.getName());
|
||||
EC2SecurityGroup param = new EC2SecurityGroup();
|
||||
param.setId(securityGroup.getId());
|
||||
param.setName(securityGroup.getName());
|
||||
vm.addGroupName(param);
|
||||
}
|
||||
}
|
||||
vm.setState(resp.getState());
|
||||
|
|
@ -1883,10 +1832,12 @@ public class EC2Engine extends ManagerBase {
|
|||
}
|
||||
|
||||
if (cloudVm.getSecurityGroupList() != null && cloudVm.getSecurityGroupList().size() > 0) {
|
||||
// TODO, we have a list of security groups, just return the first one?
|
||||
List<CloudStackSecurityGroup> securityGroupList = cloudVm.getSecurityGroupList();
|
||||
for (CloudStackSecurityGroup securityGroup : securityGroupList) {
|
||||
ec2Vm.addGroupName(securityGroup.getName());
|
||||
EC2SecurityGroup param = new EC2SecurityGroup();
|
||||
param.setId(securityGroup.getId());
|
||||
param.setName(securityGroup.getName());
|
||||
ec2Vm.addGroupName(param);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -2088,6 +2039,53 @@ public class EC2Engine extends ManagerBase {
|
|||
}
|
||||
}
|
||||
|
||||
private EC2DescribeSnapshotsResponse listSnapshots( String[] snapshotIds, List<CloudStackKeyValue> resourceTagSet) throws Exception {
|
||||
try {
|
||||
EC2DescribeSnapshotsResponse snapshotSet = new EC2DescribeSnapshotsResponse();
|
||||
|
||||
List<CloudStackSnapshot> snapshots = getApi().listSnapshots(null, null, null, null, null, null, null, null, null, resourceTagSet);
|
||||
if ( snapshots != null && snapshots.size() > 0) {
|
||||
for ( CloudStackSnapshot snapshot : snapshots) {
|
||||
boolean matched = false;
|
||||
if ( snapshotIds.length > 0) {
|
||||
for ( String snapshotId : snapshotIds) {
|
||||
if (snapshot.getId().equalsIgnoreCase(snapshotId)) {
|
||||
matched = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else matched = true;
|
||||
|
||||
if (!matched) continue ;
|
||||
|
||||
EC2Snapshot ec2Snapshot = new EC2Snapshot();
|
||||
ec2Snapshot.setId(snapshot.getId());
|
||||
ec2Snapshot.setName(snapshot.getName());
|
||||
ec2Snapshot.setVolumeId(snapshot.getVolumeId());
|
||||
ec2Snapshot.setType(snapshot.getSnapshotType());
|
||||
ec2Snapshot.setState(snapshot.getState());
|
||||
ec2Snapshot.setCreated(snapshot.getCreated());
|
||||
ec2Snapshot.setAccountName(snapshot.getAccountName());
|
||||
ec2Snapshot.setDomainId(snapshot.getDomainId());
|
||||
|
||||
List<CloudStackKeyValue> resourceTags = snapshot.getTags();
|
||||
for( CloudStackKeyValue resourceTag : resourceTags) {
|
||||
EC2TagKeyValue param = new EC2TagKeyValue();
|
||||
param.setKey(resourceTag.getKey());
|
||||
if ( resourceTag.getValue() != null)
|
||||
param.setValue(resourceTag.getValue());
|
||||
ec2Snapshot.addResourceTag(param);
|
||||
}
|
||||
snapshotSet.addSnapshot(ec2Snapshot);
|
||||
}
|
||||
}
|
||||
return snapshotSet;
|
||||
} catch(Exception e) {
|
||||
logger.error( "List Snapshots - ", e);
|
||||
throw new EC2ServiceException(ServerError.InternalError, e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert ingress rule to EC2IpPermission records
|
||||
*
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ public class EC2Instance {
|
|||
private String rootDeviceType;
|
||||
private String rootDeviceId;
|
||||
private String keyPairName;
|
||||
private List<String> groupSet;
|
||||
private List<EC2SecurityGroup> groupSet;
|
||||
private List<EC2TagKeyValue> tagsSet;
|
||||
|
||||
public EC2Instance() {
|
||||
|
|
@ -62,7 +62,7 @@ public class EC2Instance {
|
|||
rootDeviceType = null;
|
||||
rootDeviceId = null;
|
||||
keyPairName = null;
|
||||
groupSet = new ArrayList<String>();
|
||||
groupSet = new ArrayList<EC2SecurityGroup>();
|
||||
tagsSet = new ArrayList<EC2TagKeyValue>();
|
||||
}
|
||||
|
||||
|
|
@ -202,12 +202,12 @@ public class EC2Instance {
|
|||
keyPairName = param;
|
||||
}
|
||||
|
||||
public void addGroupName( String param ) {
|
||||
public void addGroupName( EC2SecurityGroup param ) {
|
||||
groupSet.add( param );
|
||||
}
|
||||
|
||||
public String[] getGroupSet() {
|
||||
return groupSet.toArray(new String[0]);
|
||||
|
||||
public EC2SecurityGroup[] getGroupSet() {
|
||||
return groupSet.toArray(new EC2SecurityGroup[0]);
|
||||
}
|
||||
|
||||
public void addResourceTag( EC2TagKeyValue param ) {
|
||||
|
|
|
|||
|
|
@ -159,9 +159,10 @@ public class EC2InstanceFilterSet {
|
|||
}
|
||||
else if (filterName.equalsIgnoreCase( "group-id"))
|
||||
{
|
||||
String[] groupSet = vm.getGroupSet();
|
||||
for (String group : groupSet)
|
||||
if (containsString(group, valueSet)) return true;
|
||||
EC2SecurityGroup[] groupSet = vm.getGroupSet();
|
||||
for (EC2SecurityGroup group: groupSet) {
|
||||
if( containsString(group.getId(), valueSet)) return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
else if (filterName.equalsIgnoreCase("tag-key"))
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ CATALINA_TMPDIR="@MSENVIRON@/temp"
|
|||
|
||||
# Use JAVA_OPTS to set java.library.path for libtcnative.so
|
||||
#JAVA_OPTS="-Djava.library.path=/usr/lib64"
|
||||
JAVA_OPTS="-Djava.awt.headless=true -Dcom.sun.management.jmxremote.port=45219 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=@MSLOGDIR@ -XX:PermSize=128M"
|
||||
JAVA_OPTS="-Djava.awt.headless=true -Dcom.sun.management.jmxremote.port=45219 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=@MSLOGDIR@ -XX:PermSize=256M"
|
||||
|
||||
# What user should run tomcat
|
||||
TOMCAT_USER="@MSUSER@"
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ CATALINA_TMPDIR="@MSENVIRON@/temp"
|
|||
|
||||
# Use JAVA_OPTS to set java.library.path for libtcnative.so
|
||||
#JAVA_OPTS="-Djava.library.path=/usr/lib64"
|
||||
JAVA_OPTS="-Djava.awt.headless=true -Djavax.net.ssl.trustStore=/etc/cloud/management/cloudmanagementserver.keystore -Djavax.net.ssl.trustStorePassword=vmops.com -Dcom.sun.management.jmxremote.port=45219 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=@MSLOGDIR@ -XX:PermSize=128M"
|
||||
JAVA_OPTS="-Djava.awt.headless=true -Djavax.net.ssl.trustStore=/etc/cloud/management/cloudmanagementserver.keystore -Djavax.net.ssl.trustStorePassword=vmops.com -Dcom.sun.management.jmxremote.port=45219 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Xmx1024m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=@MSLOGDIR@ -XX:PermSize=256M"
|
||||
|
||||
# What user should run tomcat
|
||||
TOMCAT_USER="@MSUSER@"
|
||||
|
|
|
|||
|
|
@ -177,6 +177,12 @@
|
|||
<!-- Do dry run using -d or dash-dash-dry -->
|
||||
<!-- Enable verbosity by -v or dash-dash-verbose -->
|
||||
</arguments>
|
||||
<systemProperties>
|
||||
<systemProperty>
|
||||
<key>catalina.home</key>
|
||||
<value>${project.parent.basedir}/utils</value>
|
||||
</systemProperty>
|
||||
</systemProperties>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
@ -281,6 +287,12 @@
|
|||
<argument>--rootpassword=${db.root.password}</argument>
|
||||
<!-- enable verbosity by -v or dash-dash-verbose -->
|
||||
</arguments>
|
||||
<systemProperties>
|
||||
<systemProperty>
|
||||
<key>catalina.home</key>
|
||||
<value>${project.parent.basedir}/utils</value>
|
||||
</systemProperty>
|
||||
</systemProperties>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,17 @@
|
|||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
[main]
|
||||
host = https://www.transifex.com
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,17 @@
|
|||
#
|
||||
# AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#Licensed to the Apache Software Foundation (ASF) under one
|
||||
#or more contributor license agreements. See the NOTICE file
|
||||
#distributed with this work for additional information
|
||||
#regarding copyright ownership. The ASF licenses this file
|
||||
#to you under the Apache License, Version 2.0 (the
|
||||
#"License"); you may not use this file except in compliance
|
||||
#with the License. You may obtain a copy of the License at
|
||||
#http://www.apache.org/licenses/LICENSE-2.0
|
||||
#Unless required by applicable law or agreed to in writing,
|
||||
#software distributed under the License is distributed on an
|
||||
#"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
#KIND, either express or implied. See the License for the
|
||||
#specific language governing permissions and limitations
|
||||
#under the License.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 0\n"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue