This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAvs5WraF7is05NzW33XCopfQinE0uAbvXO6fq7Qe1ocNCHP+XiQ66zu1KJi7NJkz+BetESz9qGoP6AP5kAx7huqEEd85zIOMlQtv4joVDbhIKvWRh8nlN/bZWlwsjKGLl8+on/q3n/exg7Q9ZyXIGSCMjdVy4zlMKfCsLn0Oq97Ce/flCxLTOCM0LTIfrs4XggK0hVNhM1fwMAyqkylD57w4kyOXsdBCm97jKd6oOHPTzzjz2NeAIKKVxPNsOmYE0+GNlrG1UuepagpbP+pNAJsTWFtFkrua5SnpsPdlIk6nl50ivVicXE2R5itNL5reCQB2Znp261WH8H3CN+rFM7Q== [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-03-23 13:01:45.784 ColloquyDaemon[79432:303] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Connection could not be registered. Another process likely has registered with the same name.' | |
*** First throw call stack: | |
( | |
0 CoreFoundation 0x00007fff8ff6d41c __exceptionPreprocess + 172 | |
1 libobjc.A.dylib 0x00007fff891cfe75 objc_exception_throw + 43 | |
2 ColloquyDaemon 0x000000010000bc15 -[CQDaemonClientConnectionController init] + 773 | |
3 ColloquyDaemon 0x000000010000b8d2 __55+[CQDaemonClientConnectionController defaultController]_block_invoke + 50 | |
4 libdispatch.dylib 0x00007fff8919b2ad _dispatch_client_callout + 8 | |
5 libdispatch.dylib 0x00007fff8919b21c dispatch_once_f + 79 | |
6 ColloquyDaemon 0x000000010000b87d +[CQDaemonClientConnectionController defaultController] + 141 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
# app/views/spree/shared/_lang_choice.html.erb | |
# Deface + I18n.with_locale do not play well together, implementing it manually | |
saved_locale = I18n.locale | |
I18n.locale = I18n.locale == :fr ? :en : :fr | |
%> | |
<li class="lang-swich"><%= lang_switch_url %></li> | |
<% I18n.locale = saved_locale %> |
NewerOlder