-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for --sourceaddr bad behaviour #110
Changes from 12 commits
59aff45
69d3409
b8646f9
5378498
804acf9
bef81ce
0c2e9b4
2f57ac7
0709f13
c3b970a
09a5fc4
c1705d5
f01f486
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,6 +131,10 @@ msgid "" | |
"Local IP address that the test engine should try to send its requests from." | ||
msgstr "Lokal IP-adresse som test-motoren skal sende sin foresgpørgsler fra." | ||
|
||
#, perl-brace-format | ||
msgid "Address {address} cannot be used as source address for DNS queries.\n" | ||
msgstr "Address {address} cannot be used as source address for DNS queries.\n" | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm sorry I didn't spot this earlier, but I don't think this should be included. It only makes it difficult for the Danish translators to notice that there is something new for them to translate. |
||
#, perl-brace-format | ||
msgid "Loading policy from {path}." | ||
msgstr "Indlæser policy fra {path}." | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -167,6 +167,10 @@ msgstr "" | |
"installert på dette system?\n" | ||
"\n" | ||
|
||
#, perl-brace-format | ||
msgid "Address {address} cannot be used as source address for DNS queries.\n" | ||
msgstr "Address {address} cannot be used as source address for DNS queries.\n" | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should also be excluded for the same reason. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @matsduf As you asked for something different (but it was a long time ago), do you think that @mattias-p proposal is reasonable ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That is fine. I am not sure if it should be empty or non-existent, but at least the latter will mean that msgid will shown, and then when you translate you will be prompted. |
||
#, perl-brace-format | ||
msgid "Loading profile from {path}." | ||
msgstr "Laster profil fra {path}." | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't find a binary package for this on CentOS. Have you checked for alternatives?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mattias-p I only found Net::Interface that can handle with IPv4 and IPv6. IO::Interface for example does not work with IPv6. Any advices for an alternate library ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At least for CentOS 7 I find a package: https://centos.pkgs.org/7/openfusion-x86_64/perl-Net-Interface-1.012-2.of.el7.x86_64.rpm.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to https://rt.cpan.org/Public/Bug/Display.html?id=124582, me should add this somewhere in travis.yml
mkdir /usr/include/sys/; ln -s /usr/include/bits/socket.h /usr/include/sys/socket.h
to prevent the fail on Travis.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vlevigneron Thanks for the clarification regarding the choice of library. And no, I don't have any alternatives up my sleeve.